//Create variables
@base-color : #8eb35a;
.border-radius(@radius) {
    border-radius: @radius;
    -webkit-border-radius: @radius;
    -moz-border-radius: @radius;
    -o-border-radius: @radius;
}
.transform(@translate) {
    transform: @translate;
    -webkit-transform: @translate;
    -moz-transform: @translate;
    -o-transform: @translate;
}
.transition(@transition) {
    transition: @transition;
    -webkit-transition: @transition;
    -moz-transition: @transition;
    -o-transition: @transition;
}

.clearfix { clear: both; }
.base-color { color: @base-color;}
.mage-error { color: red; }
#maincontent { min-height: 500px; }
*{
    outline: none;
}
section{
    &:after,
        &:before{
        content:"";
        display: table;
        clear: both;
    }
}
//Popup Newsletter
.modal-popup {
    position: fixed;
    z-index: 900 !important;
    opacity: 0;
    &._show {
        opacity: 1;
    }
    .modal-inner-wrap {
        box-sizing: border-box;
        height: auto;
        left: 0;
        margin: 10rem auto;
        //position: absolute;
        max-width: 950px;
        right: 0;
        .transform(translateY(-200%));
        transition-duration: .2s;
        -webkit-transition-property: -webkit-transform, visibility;
        transition-property: transform, visibility;
        transition-timing-function: ease;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-flex-direction: column;
        -ms-flex-direction: column;
        flex-direction: column;
        width:auto;
        background-color: #fff;
        box-shadow: 0 0 12px 2px rgba(0,0,0,0.35);
        opacity: 1;
        pointer-events: auto;
        z-index: 999;
        max-height: 600px;
        overflow: auto;
        min-width: 300px;
    }
    &._show {
        visibility: visible;
        bottom: 0;
        right: 0;
        top: 0;
        left: 0;
        z-index: 99999 !important;
        .modal-inner-wrap {
            -webkit-transform: translateY(0);
            transform: translateY(0);
            -moz-transform: translateY(0);
            -o-transform: translateY(0);
            -ms-transform: translateY(0);
        }
    }
    .modal-header {
        padding: 20px;
        flex-shrink: 0;
        flex-grow: 0;
        display: block;
        border: none;
    }
    .action-close {
        padding: 1ssrem;
        color: #736963;
        position: absolute;
        right: 10px;
        top: 0;
        z-index: 1;
        background-color: transparent;
        border: none;
        border-radius: 0;
        box-shadow: none;
        margin: 0;
        border-color: #adadad;	
        &:before {
            content: "\f00d";
            transition: color .1s linear;
            font-size: 16px;
            -webkit-font-smoothing: antialiased;
            font-family: FontAwesome;
            line-height: 40px;
            font-style: normal;
            font-weight: normal;
            speak: none;
        }
        & > span {
            clip: rect(0, 0, 0, 0);
            overflow: hidden;
            position: absolute;
            display: none;
            visibility: hidden;
        }
    }
    .modal-content {
        padding: 15px 3rem;
        border: none;
        box-shadow: none;
        .border-radius(0);
    }
    .modal-footer {
        text-align: left;
        margin-top: auto;
        padding: 20px 3rem;
        flex-grow: 0;
        flex-shrink: 0;
        border: none;
        .action-secondary {

            border: 1px solid #ddd;
            border-radius: 20px;
            font-weight: 700;
            margin-right: 10px;
            padding: 6px 20px;
            text-transform: uppercase;
            &:hover {
                background: @base-color;
                color: #fff;
                border: 1px solid @base-color;
            }
        }
        .action-primary  {
            background: @base-color;
            border: 1px solid @base-color;
            border-radius: 20px;
            font-weight: 700;
            padding: 6px 20px;
            color: #fff;
            text-transform: uppercase;
            &:hover {
                background: transparent;
                color: #000;
                border: 1px solid #ddd;
            }
        }
    }
}
.modals-overlay {
    background: rgba(0, 0, 0, 0.35) none repeat scroll 0 0;
    bottom: 0;
    left: 0;
    position: fixed;
    right: 0;
    top: 0;
    z-index: 1000 !important;
}
//GENERAL
html { overflow-x: hidden; }
body {
    color: #696969;
    line-height: 1.8;
    font-size: 15px;
    font-weight: 400;
    background-color: #fff;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
    &.boxed {
        > .page-wrapper {
            background: #fff none repeat scroll 0 0;
            margin: 0 auto;
            overflow-x: hidden;
            position: relative;
            width:1200px;
        }
        &.width1024 {
            > .page-wrapper { width:1024px; }
        }
        &.width1366 {
            > .page-wrapper { width:1366px; }
        }
        &.fullwidth {
            > .page-wrapper { width:100%; }
        }
        .container {
            width:100%; 
            padding: 0 30px;
        }
        @media (min-width: 768px) and (max-width: 991px) {
            > .page-wrapper { width: 750px; }
            .container{width:100%;}
        }
        @media (min-width: 992px) and (max-width: 1199px) {
            > .page-wrapper { width: 970px; }
            .container{width:100%;}
        }
        @media (max-width: 767px) {
            > .page-wrapper {
                width: 100%;
            }
        }
    }
    &.wide{
        .container{
            width: 1200px;
            @media (min-width: 768px) and (max-width: 991px) { width:750px; }
            @media (min-width: 992px) and (max-width: 1199px) { width:970px; }
            @media (max-width: 767px) { width: 100%; }
        }

        &.fullwidth {
            .container {
                &:not(.no-full) {
                    width: 100%;
                    padding-left: 20px;
                    padding-right: 20px;
                    @media (min-width: 992px) {
                        padding-left: 40px;
                        padding-right: 40px;
                    }
                }
                &.page-main {
                    > .row {
                        margin: 0 -20px !important;
                        > .column.main, > .sidebar {
                            padding: 0 20px !important;
                        }
                    }
                }
            }
            &.page-layout-1column {
                .container.page-main {
                    > .row {
                        margin: 0 !important;
                        width: 100%;
                        > .column.main, > .sidebar {
                            padding: 0 !important;
                        }
                    }
                }
            }
        }
        &.width1366 {
            .container{
                width: 1366px;
                @media (min-width: 1200px) and (max-width: 1400px) { width:1170px; }
                @media (min-width: 992px) and (max-width: 1199px) { width:970px; }
                @media (min-width: 768px) and (max-width: 991px) { width:750px; }
                @media (max-width: 767px) { width: 100%; }
            }
        }
        &.width1024 {
            .container{
                width: 1024px;
                @media (min-width: 768px) and (max-width: 991px) { width:750px; }
                @media (min-width: 992px) and (max-width: 1199px) { width:970px; }
                @media (max-width: 767px) { width: 100%; }
            }
        }
    }
}
.cms-index-index {
    #maincontent {
        width: 100%;
        padding: 0;
        > .row {
            margin: 0;
            > .column.main {
                margin: 0;
                padding: 0;
            }
        }
    }
    .footer {
        margin: 0 !important;
    }
}
.cms-index-index #maincontent > .row,
.cms-index-index #maincontent > .row > .column.main {
    margin: 0;
    padding: 0;
}
//Custom Class
.no-padding{padding: 0;}
.no-display{display: none;}
.parallax{
    background-attachment: fixed !important;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}
a{
    cursor: pointer;
    .transition(all 0.4s ease 0s);
}
.margin-left15{
    margin-left: 15px;
}
.margin-top30{
    margin-top: 30px;
}

.margin-bottom20{
    margin-bottom: 20px;
}
.padding-top10{
    padding-top: 10px;
}
.margin-bottom35{
    margin-bottom: 35px;
}
.label{
    color: #696969;
    font-size: 14px;
    padding: 0;
    display: block;
    margin-bottom: 5px;
    text-align: left;
}
p.required{color: red;}
//OVERWRITE BOOTSTRAP
//Custom Grid 5 Column
@media (min-width: 1200px) {
    .col-lg-custom-5{ width: 20%; float: left; padding: 0 15px; }
    .col-lg-custom-7{
        width: 14.28%;
        float: left;
        padding: 0 15px;
    }
    .col-lg-custom-8{
        width: 12.5%;
        float: left;
        padding: 0 15px;
    }
}
@media (min-width: 992px) {
    .col-md-custom-5 { width: 20%; float: left; padding: 0 15px; }
    .col-md-custom-7{
        width: 14.28%;
        float: left;
        padding: 0 15px;
    }
    .col-md-custom-8{
        width: 12.5%;
        float: left;
        padding: 0 15px;
    }
}

//Custom Class Bootstrap
.visible-xlg {
    display: none;
    @media (min-width: 1600px) { display: block; }
}
.col-mobile-12 {
    @media (max-width: 480px) {
        width: 100%;
        float: none;
    }
}
.visible-mobile {
    display: none;
    @media (max-width: 480px) { display: block; }
}
//Reset Css
::-moz-selection {
    background-color: @base-color;
    color: #fff;
}
::selection {
    background-color: @base-color;
    color: #fff;
}
input[type="number"]{
    -moz-appearance: textfield;
}
input[type="number"]::-webkit-inner-spin-button{
    -webkit-appearance: none; 
}

ul,
ol {
    list-style: none;
    padding: 0;
    margin: 0;
}

a:focus, a:active,
select:focus,
select:active,
input:focus,
input:active,
textarea:focus,
textarea:active,
button:focus,
button:active {
    outline: none !important;
}
//Typography
h1, .h1 { font-size: 40px; }
h2, .h2 { font-size: 34px; }
h3, .h3 { font-size: 24px; }
h4, .h4 { font-size: 18px; }
h5, .h5 { font-size: 16px; }
h6, .h6 { font-size: 14px; }

a {
    color: #333333;
    transition: all 0.4s;
    &:hover, &:focus {
        color: @base-color;
        text-decoration: none;
    }
}

.btn{
    .border-radius(23.5px);
    font-size: 14px;
    text-transform: uppercase;
    font-weight: 700;
    padding: 12px 23px 12px;
    line-height: 1;
    word-spacing: 4px;
    //letter-spacing: 0.1em;
    .transition(all 0.4s ease 0s);
    &:hover,
        &:active,
        &:focus,
        &.active{
        box-shadow: none;
    }
}

.btn-default{
    background-color: #fff;
    color: @base-color;
    border: 1px solid @base-color;
    &:hover,
        &:active,
        &:focus{
        background-color: @base-color;
        color:#fff;
        border-color: @base-color;
    }
}
.btn-primary{
    background-color:@base-color;
    color:#fff;
    border: 1px solid @base-color;

    &:hover,
        &:active,
        &:focus{
        background-color: #696969;
        border-color: #696969;
    }

}
.btn-primary.disabled, 
.btn-primary[disabled], 
fieldset[disabled] .btn-primary, 
.btn-primary.disabled:hover, 
.btn-primary[disabled]:hover, 
fieldset[disabled] .btn-primary:hover, 
.btn-primary.disabled:focus, 
.btn-primary[disabled]:focus, 
fieldset[disabled] .btn-primary:focus, 
.btn-primary.disabled:active, 
.btn-primary[disabled]:active, 
fieldset[disabled] .btn-primary:active, 
.btn-primary.disabled.active, 
.btn-primary.active[disabled], 
fieldset[disabled] .btn-primary.active,
.btn.disabled, .btn[disabled], fieldset[disabled] .btn{
    opacity: 1;
    background-color: @base-color;
    color: #fff;
    border-color: @base-color;
}
.btn-secondary{
    background-color: #696969;
    color:#fff;
    border: 1px solid #696969;
    &:hover,
        &:focus,
        &:active{
        background-color: @base-color;
        border-color: @base-color;
        color: #fff;
    }
}
.btn-full{width: 100%;}
.btn-lg{
    font-size: 16px;
    padding: 14px 38px 15px;
    letter-spacing: 0.08em;
}
.btn-sm{
    padding: 9px 20px;
}
// FORM
.form-control{
    font-size: 14px;
    color: #333;
    line-height: 1;
    font-weight: 400;
    .border-radius(2px);
    padding: 10px 20px;
    border: 1px solid #f4f1e3;
    margin-bottom: 10px;
    width: 100%;
    box-shadow: none;
    &:focus{
        border-color: @base-color;
        box-shadow: none;
    }
}
input {
    &[type="text"], &[type="email"], &[type="number"],  &[type="password"], &.form-control {
        font-size: 14px;
        color: #333;
        background-color: #fff;
        line-height: 1;
        font-weight: 400;
        .border-radius(2px);
        padding: 10px 20px;
        border: 1px solid #f4f1e3;
        height: 40px;
        margin-bottom: 10px;
        width: 100%;
    }
    &:focus{
        border-color: @base-color;
    }
}

input::-webkit-input-placeholder{
    color: #ababab;
}
input::-moz-placeholder{
    color: #ababab;
}
input:-ms-input-placeholder{
    color: #ababab;
}
input:-moz-placeholder{
    color: #ababab;
}
input{
    &.form-control{
        &.input-lg{
            height: 47px;	
            line-height: 48px;
            padding: 0 20px;
        }
        &.input-sm{
            height: 34px;
            line-height: 34px;
            padding: 0 20px;
        }
    }
    &.mage-error{
        border-color: red;  
        &:focus{
            box-shadow: 0 1px 1px rgba(0, 0, 0, 0.075) inset, 0 0 8px rgba(241, 0, 34, 0.6);        
        }
    }
}
select,
select.form-control{
    font-size: 14px;
    color: #ababab;
    background-color: #fff;
    line-height: 1;
    font-weight: 400;
    padding: 6px 20px;
    border: 1px solid #f4f1e3;
    height: 40px;
    .border-radius(2px);
    width: 100%;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background: url(../images/icon-dropdown.png)  calc(~'100% - 20px') center no-repeat scroll;  
    background-color: #fff;
    margin-bottom: 10px;
    option{
        padding: 5px 10px;
        min-height: 28px;
    }
}
select::-ms-expand{
    display: none;
}
select.multiselect,
select.multiple{
    background-image: none;
    background-color: #fff;
    min-height: 100px;
}
textarea{
    border: 1px solid #f4f1e3;
    min-height: 100px;
    width: 100%;
    padding: 12px 23px;
    line-height: 1.2;
    &.mage-error{
        border-color: red;
    }
}
.fieldset > .field.required > .label::after, 
.fieldset > .fields > .field.required > .label::after, 
.fieldset > .field._required > .label::after, 
.fieldset > .fields > .field._required > .label::after{
    content: "*";
    font-style: 13px;
    margin: 0 0 0 3px;
    font-weight: 400;
    color: inherit;
}
.field{
    &.choice{
        display: inline-flex;
        display: -webkit-inline-flex;
        width: 100%;
        margin-bottom: 10px;
        input{
            margin: 0;
            margin-right: 20px;
            label{
                font-weight: 700;
                color: #333;
            }
        }
    }
}
.margin-bottom10{
    margin-bottom: 10px;
}
.loading-mask{
    position: fixed;
    bottom: 0;
    left: 0;
    margin: auto;
    right: 0;
    top: 0;
    z-index: 100;
    background: rgba(255,255,255,0.5);
    .loader{
        & > img{
            bottom: 0;
            left: 0;
            margin: auto;
            position: fixed;
            right: 0;
            top: 0;
            z-index: 100;
        }
        p{display: none;}
    }
}

// style message
.message{
    border-style: solid;
    border-radius: 4px;
    border-width: 1px;
    font-size: 14px;
    font-weight: 400;
    margin-bottom: 20px;
    min-height:24px;
    padding: 15px;
    line-height: 1;
    letter-spacing: 0.05em;
    &:before{
        font-family: 'FontAwesome';
        display: inline-block;
        font-size: 24px;
        margin-right: 15px;
        vertical-align: middle;
        line-height: 10px;
        float: left;
    }
    &.success{
        border-color: #d6e9c6;
        background-color: #dff0d8;
        color: #3c763d;
        &:before{
            content:"\f00c";
        }
    }
    &.notice{
        background-color: #fcf8e3;
        border-color: #faebcc;
        color: #8a6d3b;
        &:before{
            content:'\f12a';			
        }
    }
    &.error,
    &.warning{
        background-color: #f2dede;
        border-color: #ebccd1;
        color: #a94442;
        &:before{
            content:'\f12a';
        }
    }
    &.empty{
        background-color: #fcf8e3;
        color:#8a6d3b;
        border-color: #faebcc;
        &:before{
            content:'\f12a';
        }
    }
}

//PRODUCT PRICE
.price-box{
    font-size: 14px;
    line-height: 1;
    font-style: italic;
    .price-wrapper{
        color: #696969;
        font-weight: 700;
    }
    .old-price{
        margin-right: 15px;
        display: inline-block;
        .price-wrapper{
            font-weight: 400;
            text-decoration: line-through;
        }
    }
}
.price-box .price-as-configured .old-price{
    margin-right: 0;
    margin-left: 10px;
}
.price-label{display: none}
.product-price-container{
    .price-box{
        .price-label{display: none;}        
    }
}
.products-grid{
    .price-final_price{
        .price-label{
            display: none;
        }
    }
    text-align: center;
}
.swatch-attribute-label{
    text-transform: uppercase;
    min-width: 50px;
    display: inline-block;
}
// RATINGS
.rating-summary{
    position: relative;
    line-height: 1;
    .label{
        display: none;
    }
    p{
        font-size: 14px;
        font-style: italic;
        color: #ababab;
    }
    .rating-result{
        display: inline-block;
        height: 19px;
        position: relative;
        width: 80px;
        line-height: 0;
        overflow: hidden;
        text-indent: -999em;
        font-size:0;
        line-height: 1;
        &:after{
            position: absolute;
            width: 100%;
            left: 0;
            top: 6px;
            content:"\f4b2""\f4b2""\f4b2""\f4b2""\f4b2";

            font-family:"Ionicons";
            z-index: 1;
            letter-spacing: 5px;
            color: #ababab;
            font-size: 13px;
        }
        & > span{
            position: relative;
            float: left;
            height: 19px;
            overflow: hidden;
            &:after{
                position: absolute;
                width: 100%;
                left: 0;
                top: 6px;
                font-size: 13px;
                letter-spacing: 5px;
                color:#f5cc26 ;
                font-family: "Ionicons";
                content: "\f4b3""\f4b3""\f4b3""\f4b3""\f4b3";
                z-index: 9;
            }
        }

    }
}
.product-reviews-summary{    
    &.short{
        .reviews-actions{
            display: none;
        }
    }
}

// OWL SLIDER
.owl-carousel{
   
        .owl-item{
            img{
                max-width: 100%;
                width: auto;
                transform-style: inherit !important;
            }
        }
        
            .owl-nav{
                [class*="owl-"]{
                    width: 50px;
                    height: 50px;
                    margin: 0;
                    padding: 0;
                    line-height: 50px;
                    font-size: 48px;
                    color: #392a25;
                    background: transparent;
                    position: absolute;
                    top: 50%;
                    .transition(all 0.4s ease 0s);  
                    opacity: 0;
                    visibility: hidden;
                    transform-origin: 0 0 0;
                    text-align: center;
                    cursor: pointer;
                    
                    &.disabled{
                        opacity: 0.3 !important;
                        cursor: auto;
                        pointer-events: none;
                    }
                    &:hover{
                        color: @base-color;

                    }
                }
                .owl-prev{
                    left: 0;
                    .transform(translate(50%, -50%));

                }
                .owl-next{
                    right: 0;
                    .transform(translate(-50%, -50%));
                }
                &.disabled{display: none;}
            }
            .owl-dots{
                margin-top: 28px;
                text-align: center;                
                .owl-dot{
                    display: inline-block;
                    span{
                        width: 8px;
                        height: 8px;
                        border-radius: 50%;
                        background-color: #ababab;
                        margin-left: 7.5px;
                        margin-right: 7.5px;
                        border: 1px solid transparent;
                        .transition(all 0.35s ease 0s);
                        display: inline-block;
                    }
                    &.active,
                    &:hover{
                        span{
                            border-color: @base-color;
                            .transform(scale(1.5));
                            background-color: #fff;
                        }
                    }
                }
                &.disabled{margin: 0;display: none;}
            }
        
        &:hover{
                .owl-nav{
                    [class*="owl-"]{
                        opacity: 1;
                        visibility: visible;
                        .transform(translate(0, -50%));
                    }

                }
            
        }
  
}
.slider_mgs_carousel{
    width: 100%;
    display: inline-block;
    &.owl-carousel{
        .owl-item{
            img{
                width: 100%;
            }
        }
        
            .owl-nav{
                [class*="owl-"]{
                    position: absolute;
                    top: 50%;
                    .transform(translateY(-50%));
                    width: 100px;
                    height: 100px;
                    border-radius: 50%;
                    background-color: transparent;
                    border: none;
                    color: #fff;
                    font-size: 18px;
                    font-style: italic;
                    text-align: center;
                    line-height: 100px;
                    margin: 0;
                    color: #333;
                    letter-spacing: 0.2em;
                    .transition(all 0.4s ease 0s);
                    &:hover{
                        background-color: #333;
                        color: #fff;
                    }
                    &:before{
                        display: none;
                    }
                }
                .owl-prev{
                    left: 50px;
                    right: auto;

                }
                .owl-next{
                    right: 50px;
                    left: auto;
                }
            }
            .owl-dots{
                position: absolute;
                bottom: 20px;
                left: 0;
                right: 0;
                .owl-dot{
                    span{
                        background-color: #696969;

                    }
                    &.active,
                    &:hover{
                        span{
                            background-color: @base-color;
                        }
                    }
                }
            }
        
    }
}

///HEADER AND FOOTER
.dropdown-menu{
    border: none;
    border-radius: 0;
    padding: 0;
    margin: 0;
    min-width: 165px;
}
//MEGAMENU
.navigation{
    width: 100%;
    .nav-main{
        width: 100%;
        display: inline-block;
        text-align: center;
        & > li{
            float: none;
            display: inline-block;
            position: relative;
            padding: 0;
            margin: 0;
            a{
                font-size: 14px;
                text-transform: uppercase;
                font-weight: 700;
                color: #333;
                padding: 41px 27px 43px;		
                background: none;
                span.icon-next{
                    margin-left: 5px;
                }
            }
            & + li{
                margin: 0;
            }
        }
        li.active{
            a,
            a:hover{
                color: @base-color;
                background: none;

            }
        }
        li{
            a:hover{
                color: @base-color;
            }
        }
        li.dropdown{
            .dropdown-menu{
                position: absolute;
                top: 100%;
                border: none;
                border-radius: 0;
                border-top: 2px solid @base-color;
                box-shadow: 0 6px 6px rgba(0,0,0,0.175);
                padding: 0;
                margin: 0;
                min-width:260px;
                visibility: hidden;
                .transform(translateY(20px));
                .transition(all 0.4s ease 0s);
                display: block;
                opacity: 0;
                li{
                    ul{
                        li{
                            margin: 0;
                            padding: 0;
                            width: 100%;
                            position: relative;
                            display: block;
                            min-width:100%;
                            a{
                                padding: 12px 15px;
                                font-size: 15px;
                                color: #696969;
                                border-bottom: 1px solid #f4f4f4;
                                font-weight: 400;
                                text-transform: none;
                                display: inline-block;
                                width: 100%;
                                position: relative;
                                text-transform: capitalize;
                                position: relative;
                                .transition(all 0.4s ease 0s);

                                &:hover{
                                    color: @base-color;
                                }
                            }
                            &:last-child{
                                a{
                                    border-bottom: none;
                                }
                            }
                            .dropdown-menu{
                                position: absolute;
                                left:100%;
                                top: 15px;									
                            }
                            &:hover{
                                & > .dropdown-menu{
                                    opacity: 1;
                                    visibility: visible;
                                    .transform(translateY(0));
                                }
                            }

                        }
                    }
                }
            }
            &:hover{
                & > .dropdown-menu{
                    opacity: 1;
                    visibility: visible;
                    .transform(translateY(0));
                }
            }
        }
        li.mega-menu-fullwidth{
            position: static;
            .dropdown-menu{
                width: 100%;
                .mega-menu-content{
                    max-width: 1200px;
                    margin: 0 auto;
                    padding: 10px 0 25px;
                    .sub-menu{
                        li.level1{
                            & > a{
                                text-transform: uppercase;
                                color: #333;
                                padding: 10px 0;
                                font-weight: 700;
                                &:before{display: none;}
                            }
                        }
                        .sub-menu{
                            li{
                                a{
                                    border: none;
                                    padding: 10px 0;
                                    position: relative;

                                }
                            }
                        }

                    }
                    li{
                        a{
                            border: none;
                            padding: 10px 0;
                            position: relative;

                        }
                    }
                }
            }
        }
    }
}
//MINICART
.block-cart-header{
    position: relative;
    .showcart{
        .box-shopbag{
            .title-cart{display: none;}
            .icon-cart{
                display: inline-block;
                position: relative;
                [class*="ion"]{
                    font-size: 30px;
                    color: #333;
                }
                .count{
                    font-size: 12px;
                    font-weight: 700;
                    text-align: center;
                    color: #fff;
                    background-color: @base-color;
                    position: absolute;
                    top: -5px;
                    right:-11px;
                    line-height: 1;
                    border-radius: 50%;
                    padding: 2.5px 5.5px 3.5px;
                    .counter-number.firstload{display: none;}
                    &.empty{
                        .counter-number.loaded{
                            display: none;
                        }
                        .counter-number.firstload{display: block;}
                    }
                }
            }
        }
    }
    .dropdown-menu{
        min-width: 320px;
        border-radius: 0;
        border: none;
        padding: 20px;
        margin: 0;
        border-top: 1px solid @base-color;
        right: 0;
        left: auto;
        .block-content{
            button.close{display: none;}
            .subtitle.empty{
                font-size: 11px;
                color: #333;
                text-align: center;
                text-transform: uppercase;
                width: 100%;
                display: block;
                margin: auto;
            }
        }
    }
    .minicart-items-wrapper{
        max-height: 488px;
        overflow: auto;
        .minicart-items{
            height: auto !important;

            .product-item{
                padding-top: 15px;
                padding-bottom: 15px;
                border-bottom: 1px solid #f4f1e2;
                position: relative;
                display: inline-block;
                width: 100%;
                .product-left{
                    display: inline-block;
                    float: left;
                    max-width: 80px;
                    margin-right: 15px;
                    .product-image-photo{
                        border: 1px solid #f4f1e2;
                        .transition(all 0.4s ease 0s);
                    }
                    .product-image-wrapper{
                        padding-bottom: 0 !important;
                    }
                }
                .product-item-details{
                    display: inline-block;
                    float: left;
                    width: calc(~'100% - 100px');
                    .product-item-name{
                        a{
                            font-size: 15px;
                            font-weight: 600;;
                            color: #333;
                            margin-bottom: 10px;
                            line-height: 1;
                            &:hover{
                                color: @base-color;
                            }
                        }

                    }
                    .product.options{
                        .toggle{
                            &:after{
                                content: "\f0dd";
                                display: inline-block;
                                font-family: 'FontAwesome';
                                font-size: inherit;
                                margin-left: 10px;
                            }
                            &.active{
                                &:after{
                                    content:"\f0de";
                                }
                            }
                        }
                        .content{
                            .list{
                                display: inline-block;
                                width: 100%;
                                .label{
                                    text-align: left;
                                    width: 60px;
                                    display: inline-block;
                                    &:after{
                                        content:":";
                                        display: inline-block;
                                    }

                                }
                                .values{
                                    width: calc(~'100% - 70px');
                                    display: inline-block;

                                }
                            }
                        }
                    }
                    .product-item-pricing{
                        font-size: 14px;
                        color: #696969;
                        font-weight: 700;
                        .price-container{
                            display: inline-block;
                            margin-bottom: 10px;
                            float: left;
                            line-height: 1;
                            .price{
                                font-style: italic;

                            }
                        }
                        .details-qty{
                            display: inline-flex;
                            display: -webkit-inline-flex;
                            text-align: center;
                            width: 100%;
                            .item-qty{
                                margin-bottom: 0;
                                box-shadow: none;
                                max-width: 50px;
                                padding: 0;
                                line-height: 40px;
                                margin-right: 10px;
                                text-align: center;
                            }
                        }
                    }
                }
                .actions{
                    position: absolute;
                    top: 40%;
                    right: 20px;
                    font-size: 20px;
                    color: #333;
                    .transform(translateY(-50%));
                    margin-top: 5px;
                    &:hover{
                        color: @base-color;
                    }
                }
                &:hover{
                    .product-left{
                        .product-image-photo{
                            border-color: @base-color;
                        }
                    }
                }
            }
        }
    }
    .subtotal{
        padding-top: 10px;
        padding-bottom: 20px;
        border-bottom: 1px solid #f3f2f1;
        display: inline-block;
        margin-bottom: 20px;
        width: 100%;
        .label{
            color: #696969;
            font-size: 16px;
            text-transform: uppercase;
            padding: 0;
            margin: 0;
            text-align: left;
            display: block;
            float: left;
        }
        .amount{
            &.price-container{
                display: inline-block;
                text-align: right;
                float: right;
                line-height: 1;
                .price{
                    font-size: 16px;
                    font-weight: 700;
                }
            }
        }
    }
    .actions{
        display: inline-block;
        margin-left: 5px;
        #top-cart-btn-checkout{
            margin-right: 10px;
        }
    }
    .loading-mask{
        .loader{
            img{
                width: 20px;
            }
        }
    }
}
.nav-toggle{
    cursor: pointer;
    [class*="ion"]{
        font-size: 30px;
        color: #333;
    }
    &:hover{
        [class*="ion"]{
            color: @base-color;
        }
    }

}
.block-search{
    .minisearch{
        position: relative;
        margin: 0;
        padding: 0;
        border-bottom: 1px solid #d8d5d5;		
        .search-select,
        input.input-text,
        button{
            display: inline-block;
        }
        .search-select{
            min-width: 150px;
            text-align: left;
            color: #696969;
            position: relative;
            & > a{
                padding: 12.5px 10px;
                display: inline-block;
                width: 100%;
                position: relative;
                line-height: 1;
                &:after{
                    content:"";
                    height: 15px;
                    width: 1px;
                    background-color: #f4f4f4;
                    vertical-align: middle;
                    display: inline-block;
                    position: absolute;
                    top: 50%;
                    right: 0;
                    .transform(translateY(-50%));
                }
            }
            #select-cat-dropdown{
                position: absolute;
                top: 100%;
                width: 100%;
                border: 1px solid #dadada;
                background-color: #fff;
                margin-top: 1px;
                padding: 5px 10px;
                font-size: 13px;
                text-transform: capitalize;
                max-height: 350px;
                overflow: auto;
                z-index: 99;
                span{
                    cursor: pointer;
                    display: block;
                    padding: 5px 0;
                    width: 100%;
                    &:hover{
                        color: @base-color;
                    }
                }
            }
            &.no-display{
                display: none;
            }
        }
        .input-text.form-control{
            border: none;
            box-shadow: none;
            padding-left: 10px;
            padding-right: 10px;
            margin: 0;
        }
        .btn-primary{
            background: none;
            border: none;
            color: #333;
            font-size: 18px;
            width: 30px;
            height: 40px;
            line-height: 40px;
            padding: 0;
            margin: 0;
            &:hover{
                color: @base-color;
            }
        }
        .search-autocomplete{
            top: 100%;
            left: 0;
            width: 100% !important;
            // box-shadow: 3px 0 9px rgba(0,0,0,0.175);
            background-color: #fff;
            padding: 5px 15px;
            min-height: 50px;
            margin-top: -14px;
            li{
                cursor: pointer;
            }
            .amount{
                margin-left: 10px;
                font-style: italic;
                color: @base-color;
            }
        }
    }
    .btn-open-search{
        display: none;
        font-size: 18px;
        width: 30px;
        height: 40px;
        line-height: 40px;
        padding: 0;
        color: #333;
        margin: 0;
        background: none;
        border: none;
        &:hover{
            color: @base-color;
        }
    }
}
//HEADER V1
.header{
    .header-center{
        position: static;
    }
    .middle-header-container{
        position: relative;		
    }
    .ui-widget-content.dropdown-menu{
        z-index: 1002;
    }
    .language,
    .currency{
        display: inline-block;
        float: left;
        .toggle{
            display: inline-block;
            color: #ababab;
            font-size: 11px;
            text-transform: uppercase;
            padding: 10px 15px;
            cursor: pointer;
            img{margin-right: 5px;}
            [class*="ion-"]{
                margin-left: 5px;
            }
            &:hover{
                color: @base-color;
            }
            &.active{
                color: @base-color;
            }

        }
        .dropdown-menu{
            border-top: 1px solid @base-color;
            padding: 10px 15px;
            ul{
                li{
                    padding: 5px 0;
                    display: inline-block;
                    float: left;
                    width: 100%;
                    a{
                        color: #696969;
                        display: block;
                        width: 100%;
                        &:hover{
                            color: @base-color;
                        }
                    }
                    &.active{
                        a{
                            color: @base-color;
                        }
                    }
                }
            }
            a{
                img{margin-right: 10px;}
            }
        }
    }
    .block-phone{
        max-width: 155px;
        margin-top: 8px;
        .phone-left,
        .icon-phone{
            display: inline-block;			
        }
        .phone-left{
            text-align: right;
            margin-right: 15px;
            p{
                &:first-child{
                    font-size: 12px;
                    text-transform: uppercase;
                    color: #696969;
                    word-spacing: 0.2em;
                    margin-bottom: 0;
                }
                &.h4{
                    font-size: 16px;
                    color: @base-color;
                    font-weight: 700;
                    font-style: italic;
                    margin-top: 2px;
                }
            }

        }
        .icon-phone{
            font-size: 35px;
            color: #696969;
            line-height: 1.3;
            float: right;
            margin-right: 13px;

        }
    }
}
.top-bar-abs{
    position: fixed;
    top: 0;
    right: 0;
    width: 400px;
    height: 100%;
    z-index: 1001;
    display: block;
    background: #fff;
    padding: 40px 40px;
    opacity: 0;
    visibility: hidden;
    overflow-y: auto;
    overflow-x: hidden;
    .transform(translateX(100%));
    .transition(all 0.4s ease 0s);
    .nav-toggle-close{
        font-size: 30px;
        text-align: center;
        margin: 0 auto 0;
        display: inline-block;
        width: 100%;
        cursor: pointer;
        color: #333;
        &:hover{color: @base-color;}
    }
    button.nav-toggle-close{display: none;}
    .welcome{
        font-style: italic;
        text-align: center;
        background: url(../images/bg-wellcome.png) no-repeat scroll center center;
        display: inline-block;
        width: 100%;
        text-align: center;
        margin: 0 auto 30px;
        padding: 30px 0 30px;
        span{
            max-width: 25px;
            margin: 0 auto;
        }
    }
    .language-current,{
        display: inline-block;
        width: 100%;
        margin-bottom: 30px;
        text-align: center;
        .language,
        .currency{
            float: none;
        }
    }
    .top-links{
        text-align: left;
        li{
            width: 100%;
            a{
                display: inline-block;
                width: 100%;
                padding: 7px 10px;
                font-size: 14px;
                color: #ababab;
                font-weight: 700;
                text-transform: uppercase;
                &:hover{
                    color: @base-color;
                }
            }
            &.compare{
                .counter{display: none;}
            }
        }
    }
    .block-search{
        margin-top: 30px;
        text-align: center;
        .minisearch{
            width: 100%;
            border-bottom: 1px solid #eee;
            text-align: center;
            margin: 0 auto;
            .search-select{
                width: 100%;
                border-bottom: 1px solid #eee;
            }
            .form-group{
                width: 100%;
            }
            input.form-control{
                height: 40px;
                border: none;
                box-shadow: none;
                border-radius: 0;
                width: calc(~'100% - 30px');
                float: left;
                font-size: 24px;
                color: #ababab;
                font-style: italic;
            }
            .btn-primary{
                font-size: 30px;
                background: none;
                width: 30px;
                height: 40px;
                line-height: 40px;
                padding: 0;
                margin: 0;		
                border: none;

            }
            .search-autocomplete{
                margin-bottom: 10px;
                box-shadow: 0 6px 12px 0 rgba(0,0,0,0.175);
            }
        }
    }
    &.show{
        .transform(translateX(0));
        opacity: 1;
        visibility: visible;
    }
}
.header1,.header5,.header6{
    .navigation{
        .nav-main{
            & > li{
                a{
                    padding-top: 40px;
                    padding-bottom: 35px;
                }
            }
        }
    }
    .middle-header-container{
        width: 100%;	
        max-height: 100px;		
        background-color: #fff;
        .container-fluid{
            padding-left: 115px;
            padding-right: 115px;
        }

    }
    .logo{
        padding-top: 20px;
        padding-bottom: 20px;
        text-align: left;
        display: block;
    }
    .box-topbar{		
        float: right;
        .block-cart-header,
        .nav-toggle{
            display: inline-block;
            float: right;
            line-height: 1;
            margin-left: 40px;
        }
        .block-cart-header{
            .showcart{
                padding-top: 35px;
                padding-bottom: 35px;
                display: block;
            }

        }
        .nav-toggle{
            padding-top: 35px;
            padding-bottom: 35px;
        }
    }	
    .currency{
        .dropdown-menu{
            right: 0;
            left: auto;
        }
    }
    &.header-sticky-menu{
        .logo{
            img{
                max-height: 50px;
                width: auto;
            }
        }
        .middle-header-container{
            position: fixed;
            top: 0;
            left: 0;
            z-index: 999;
            box-shadow: 0 0 6px rgba(0,0,0,0.175);
            .logo{
                padding: 0;
            }
            .navigation{
                .nav-main{
                    & > li{
                        & > a{
                            padding: 18px 27px 17px;
                        }
                    }
                }
            }
            .box-topbar{
                .block-cart-header .showcart,
                .nav-toggle{
                    padding-top: 15px;
                    padding-bottom: 14px;
                }
            }
        }
    }
    //
    .top-header-links,
    .box-social-header{
        span.h4{
            font-size: 18px;
            font-weight: 700;
            letter-spacing: 0.05em;
            margin-top: 0;
            margin-bottom: 15px;
            margin-left: -40px;
            border-left: 2px solid @base-color;
            padding-left: 42px;
            color: #333;
            line-height: 1;
            display: block;
        }
    }
    .top-header-links{
        padding-bottom: 20px;
    }
    .box-social-header{
        margin: 0 -40px;
        border-top: 1px solid #f4f4f4;
        padding: 30px 0;
        margin-bottom: 30px;
        span.h4{
            padding:0 42px 0 40px;
            margin: 0;
            margin-bottom: 30px;
        }
        .block-social-header{
            padding: 0 40px; 
            ul{
                li{
                    display: inline-block;
                    margin-left: 5px;
                    margin-right: 5px;
                    a{
                        width: 40px;
                        height: 40px;
                        line-height: 40px;
                        font-size: 16px;
                        display: inline-block;
                        padding-left: 3px;
                        border: 1px solid #f4f4f4;
                        border-radius: 50%;
                        text-align: center;
                        color: #696969;
                        &:hover{
                            color: #fff;
                            background-color: @base-color;
                            border-color: @base-color;
                        }
                        .transition(all 0.4s ease 0s);
                    }
                    &:hover{
                        a{
                            background-color: @base-color;
                            color: #fff;
                        }
                    }
                }
            }
        }

    }
}
//HEADER-V2
.header{
    .logo-sticky{display: none;}
    &.header-sticky-menu{
        .hidden-logo{display: none;}
        .logo-sticky{display: block;padding: 0;
                     img{
                         max-height: 49px;
                         width: auto !important;
                     }
        }
    }
}
.header:not(.header1){
    .navigation{
        .nav-main{
            & > li{
                & > a{
                    padding: 16px 26px 16px;
                    letter-spacing: 0.04em;
                }
            }
            li.mega-menu-fullwidth{
                .dropdown-menu{
                    .mega-menu-content{
                        padding: 20px 30px 30px;
                    }
                }
            }
        }
    }
    &.header-sticky-menu{
        .logo{
            position: fixed;
            top: 0;
            z-index: 1000;
            img{
                max-height: 50px;
                width: auto !important;
            }
        }        
    }
}
.header2{
    .middle-header-container{
        padding-top: 50px;
        padding-bottom: 34px;
        border-bottom: 1px solid #f4f4f4;
        text-align: center;
        .logo{
            display: inline-block;
            float: none;
            width: 100%;
        }
    }
    .nav-header-container{
        position: relative;
        text-align: center;
        .navigation,
        .block-search,
        .block-cart-header,
        .account-dropdown,
        .language{
            display: inline-block;
            float: none;
            width: auto;
        }
        .nav-header-content{
            position: relative;
            max-height: 60px;
        }
    }	
    .block-cart-header{		
        position: relative;
        .showcart{
            .box-shopbag{
                .icon-cart{
                    margin-left: 15px;
                    margin-right: 15px;
                    margin-top: 16px;
                    margin-bottom: 16px;
                    [class*="ion"]{
                        font-size: 18px;
                        line-height: 1;
                    }
                }
            }
        }
        .dropdown-menu{
            right: 0;
            left: auto;
        }

    }

    .language,
    .block-cart-header,
    .account-dropdown,
    .currency{
        &:before{
            content:"";
            display:block;
            width: 1px;
            height: 22px;
            background-color: #eeeff0;
            vertical-align: middle;
            position: absolute;
            left: 0;
            top: 50%;
            .transform(translateY(-50%));
        }
    }
    .currency{
        float: none;		
    }
    &.header-sticky-menu{
        position: fixed;
        top: 0;
        left: 0;
        z-index: 1000;
        width: 100%;
        background-color: #fff;
        box-shadow: 6px 0 12px rgba(0,0,0,0.175);
        .middle-header-container{
            position: fixed;
            top: 0;
            padding: 0;
            width: auto;
            border: none;
            .logo{
                position: absolute;
                left: 0 !important;
            }
        }
        .nav-header-container{
            .language,
            .currency,
            .account-dropdown{display: none;}
        }
    }
    .navigation{
        .nav-main{
            & > li{
                & > a{
                    color: #696969;
                    &:hover{
                        color: @base-color;
                    }
                }
            }
        }
    }
}
.header2,
.header3,
.header4{
    .block-search{
        position: relative;		
        .btn-open-search{
            display: inline-block;
            height: 58px;
            line-height: 54px;
            z-index: 10;
            text-align: left;
        }
        .dropdown-menu{
            margin: 0;
            right: 0;
            left: auto;
            width: 360px;			
            border-top: 1px solid @base-color;
        }
        .minisearch{
            display: inline-block;
            width: 100%;
            z-index: 9;
            background-color: #fff;								
            .transition(all 0.4s ease 0s);
            padding: 15px;
            width: 360px;
            .form-search{
                border: 1px solid #d5d5d5;
            }
            .search-select{
                width: 100%;
                border-bottom: 1px solid #f4f4f4;
                & > a{
                    &:after{display: none;}
                }
            }
            .input-text{width: 100%;}
            .btn-primary{
                position: absolute;
                right: 20px;
                bottom: 15px;
            }
        }

    }
}
.header2,
.header4{
    .account-dropdown{
        position: relative;
        .top-links-trigger{
            font-size: 18px;
            color: #696969;
            margin-left: 15px;
            margin-right: 15px;
            margin-top: 12px;
            margin-bottom: 16px;
            display: block;
            &:hover{
                color: @base-color;
            }
        }
        .dropdown-menu{
            border-top: 1px solid @base-color;
            padding: 10px 15px;
            right: 0;
            left: auto;
            li{
                a{
                    padding: 5px 0;
                    display: inline-block;
                    width: 100%;
                }
            }
        }
    }
    .language,
    .currency{
        position: relative;
        .toggle{
            padding-top: 18px;
            padding-bottom: 19px;
            .text{display: none;}
            img{
                margin-top: -6px;
                margin-right: 0;
            }

        }
        .dropdown-menu{
            right: 0;
            left: auto;
        }

    }
}
//HEADER V3
.header3{
    .top-bar{
        background-color: #444;
        color: #ababab;
        max-height: 40px;
        font-size: 14px;

        line-height: 1;
        .container-fluid{
            padding-left: 100px;
            padding-right: 100px;
        }
        .language,
        .currency,
        .top-links{
            display: inline-block;
            float: right;
        }
        .language,
        .currency{
            .toggle{
                font-size: 14px;
                line-height:1;
                padding: 12px 7px 14px;
                text-transform: none;				
                [class*="ion-"]{
                    margin-left: 0;
                    margin-right: 5px;
                }
            }
            .dropdown-menu{
                ul{
                    li{
                        padding: 5px 0;
                    }
                }
            }
        }
        .currency{
            .toggle{
                font-weight: bold;
                &:before{
                    content:"";
                    display: inline-block;
                    margin-right: 12px;
                    width: 3px;
                    height: 3px;
                    background-color: #ccc;
                    border-radius: 50%;
                    margin-bottom: 2px;
                }
            }
        }

        .top-links{
            position: relative;
            margin-left: 7px;
            &:before{
                content:"";
                display: inline-block;
                width: 1px;
                height: 20px;
                background-color: #696969;
                position: absolute;
                left: 0;
                top: 50%;
                .transform(translateY(-50%));
            }
            li{
                display: inline-block;
                float: right;
                &.compare,
                &.wishlist{
                    display: none;
                }
                a{
                    color: #ababab;
                    padding: 12px 7px 14px;
                    line-height: 1;
                    display: inline-block;					
                    &:after{
                        content:"";
                        display: inline-block;
                        margin-left: 12px;
                        width: 3px;
                        height: 3px;
                        background-color: #ccc;
                        border-radius: 50%;
                    }
                    &:hover{
                        color: @base-color;
                    }
                    &.my-account{
                        padding-right: 0;
                        &:after{display: none;}
                    }
                }
                &:last-child{
                    a{
                        padding-left:15px;

                    }
                }
            }			
        }

    }
    .middle-header-container{
        padding: 48px 0 34px;
        border-bottom: 1px solid #f4f4f4;
    }

    .nav-header-container{
        text-align: center;
        .navigation,
        .block-search{
            display: inline-block;
            width: auto;
        }

    }
    &.header-sticky-menu{
        .nav-header-container{
            position: fixed;
            top: 0;
            left: 0;
            z-index: 1000;
            width: 100%;
            background-color: #fff;
            box-shadow: 6px 0 12px rgba(0,0,0,0.175);
            .block-search{
                display: none;
            }
        }
        .middle-header-container{
            .block-cart-header{
                position: fixed;
                z-index: 1001;
                top: 0;

            }
        }
    }
    .box-shopbag{
        max-height: 60px;            
    }

}
.header3,
.header4{
    .block-cart-header{
        float: right;
        .showcart{
            .box-shopbag{
                .icon-cart{
                    margin-right: 20px;
                    [class*="ion"]{
                        font-size: 35px;
                        color: #696969;
                    }
                    .count{
                        top: 13px;
                        right: -10px;
                    }
                }
                .title-cart{
                    display: inline-block;
                    span{
                        display: block;
                        line-height: 1.6;
                    }
                    .text{
                        font-size: 12px;
                        text-transform: uppercase;
                        color: #696969;
                        line-height: 1;
                    }
                    .price{
                        font-size: 16px;
                        color: #696969;
                        font-weight: 700;
                        font-style: italic;
                    }
                }

            }

        }
    }
    .nav-header-container{
        position: relative;
        .row{
            & > .col-md-12{
                position: static;
            }
        }
    }
}
.top-links{
    li{
        &.compare,
        &.wishlist{
            .counter{
                font-size: 12px;

                &:after{
                    content:" )";
                    display: inline-block;
                }
                &:before{
                    content: "( ";
                    display: inline-block;
                }
            }
        }
    }
}
//HEADER V4
.header4{
    z-index: 2;
    .account-dropdown{
        .top-links-trigger{
            padding-top: 1px;
            margin-bottom: 14px;
        }
    }
    .currency{
        .toggle{
            img{
                margin-top: -7px;
            }
        }
    }
    .middle-header-container{
        padding: 45px 0 40px;
    }
    .nav-header-container{

        .nav-header-content{
            background-color: #333;
            text-align: center;
            max-height: 60px;
            position: relative;
        }
    }
    .navigation{
        width: auto;
        display: inline-block;
        float: none;
        .nav-main{
            & > li {
                & > a{
                    color: #fff;
                    &:hover{
                        color: @base-color;
                    }
                }
            }
        }
    }
    .block-search,
    .account-dropdown,
    .language,
    .currency{
        display: inline-block;
        float: none;
        width: auto;
    }
    .language{
        .toggle{
            padding-bottom: 17px;
        }
    }
    .currency{
        .toggle{
            padding-bottom: 16px;
        }
    }
    .block-search{
        .btn-open-search{
            color: #fff;
            height: 55px;
            line-height: 52px;
            &:hover{
                color: @base-color;
            }
        }
        .dropdown-menu{
            border-top: 1px solid @base-color;
        }
        .minisearch{
            top: 100%;
            padding: 15px;
            box-shadow: 0 0 6px rgba(0,0,0,0.4);
            width: 360px;
            right: 0;
        }
    }
    .account-dropdown{
        .top-links-trigger{color: #fff;}
    }
    .currency{
        .toggle{
            span{font-size: 14px;}
        }
    }
    .block-phone{
        padding-top: 11px;
        margin-left: 20px;
    }
    .block-cart-header{		
        float: none;
        text-align: center;
        padding-left: 23px;
        .showcart{
            .box-shopbag{
                padding-top: 25px;
                .icon-cart{
                    line-height: 1;
                    margin-top: 0;
                    margin-right: 12px;
                    .count{
                        top: -2px;
                        right: -11px;
                    }
                }
            }
        }
    }
    &.header-sticky-menu{
        .middle-header-container{
            height: 0;
            padding: 0;
        }
        .nav-header-container{
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            box-shadow: 0 0 10px rgba(0,0,0,0.175);
            z-index: 1001;
            background-color: #fff;
            .nav-header-content{
                background-color: #fff;
            }
        }
        .block-search,
        .account-dropdown,
        .language,
        .currency,
        .block-phone{
            display: none;
        }
        .navigation{
            .nav-main{
                & > li{
                    & > a{
                        color: #333;
                        &:hover{
                            color: @base-color;
                        }
                    }
                }
            }
        }
        .block-cart-header{
            position: fixed;
            top: 0;
            z-index: 1002;
            .showcart{
                .box-shopbag{
                    padding-top: 0;
                    .icon-cart{
                        [class*="ion-"]{
                            line-height: 54px;
                        }
                        .count{
                            top: 10px;
                        }
                    }
                }
            }
        }
    }

}
body.show-popup{
    position: relative;
    &:after{
        content:"";
        position: absolute;
        width: 100%;
        height: 100%;
        left: 0;
        right: 0;
        bottom: 0;
        top: 0;
        background-color: rgba(0,0,0,0.3);
        z-index: 999;
    }

}
.header5{
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    .top-bar-abs{
        .language-current{
            .account-dropdown{
                display: inline-block;
                position: relative;
                .top-links-trigger{
                    display: inline-block;
                    padding: 10px 15px;
                    color: #696969;
                    &:hover{
                        color: @base-color;
                    }
                }
                .dropdown-menu{
                    border-top: 1px solid @base-color;
                    padding: 10px 15px;
                    right: 0;
                    left: auto;
                    ul{
                        li{
                            display: inline-block;
                            float: left;
                            padding: 5px 0;
                            width: 100%;
                            a{
                                color: #696969;
                                display: block;
                                width: 100%;
                                text-transform: none;
                                font-weight: 400;
                                padding: 0;
                                margin: 0;
                                font-size: 14px;
                                &:hover{
                                    color: @base-color;
                                }
                            }
                        }
                    }
                }
            }
        }
        .navigation {
            padding: 0;
            .nav-main {
                text-align: left;
                & > li{
                    float: left;
                    width: 100%;
                    position: relative;
                    a{
                        padding: 5px !important;
                        position: relative;
                        color: #ababab;
                        &:hover{
                            color: @base-color;
                        }
                        &.level0{
                            .icon-next{display: none;}
                        }
                    }
                    .toggle-menu{
                        a{color: #333;
                          &:hover{
                              color: @base-color;
                          }
                        }
                    }
                    & > a{
                        color: #333;
                        &:before{
                            content:"";
                            display: inline-block;
                            width: 5px;
                            height: 1px;
                            vertical-align: middle;
                            margin-right: 10px;
                            background-color: #333;
                        }
                        &:hover{
                            &:before{background-color: @base-color;}
                        }
                    }

                }

                li.dropdown{
                    .dropdown-menu{
                        position: relative;
                        opacity: 1;
                        visibility: visible;
                        display: none;
                        border-top: none;
                        box-shadow: none;
                        float: left;
                        .transform(none);
                        transition-property: none;
                        -webkit-transition-property: none;
                        -moz-transition-property: none;
                        -ms-transition-property: none;
                        padding-left: 20px;
                        min-width: 100%;
                        &:hover{
                            .transform(none);
                        }
                        li{
                            ul{
                                li{float: left;width: 100%;
                                    a{
                                        padding: 5px 0;
                                        border: none;
                                        &:before,
                                            &:after{display: none !important;}
                                    }
                                    .dropdown-menu{
                                        position: relative;
                                        left: 0;
                                        display: none;
                                        top: 0;
                                        .transform(none);
                                        transition-property: none;
                                        padding-left: 10px;
                                    }
                                    .toggle-menu{
                                        a{
                                            font-size: 14px;
                                            color: #333;
                                            padding: 0;
                                            width: 40px;
                                            height: 35px;
                                            line-height: 35px;
                                            text-align: right;
                                            padding-left: 30px !important;
                                            &:hover{
                                                color: @base-color;
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }				
                }
                li.mega-menu-fullwidth{
                    position: relative;
                    .dropdown-menu{
                        .mega-menu-content{
                            padding: 0 15px !important;
                            [class*="col-"]{
                                width: 100%;
                                float: left;
                                padding: 0;
                            }                        
                            .sub-menu{
                                img{
                                    max-width: 100%;
                                }
                                li.level1{
                                    & > a{
                                        font-size: 13px;
                                        font-weight: 600;
                                    }
                                }
                                .sub-menu{display: none;}
                            }
                        }
                    }
                }
                .toggle-menu{
                    position: absolute;
                    right: 0;
                    top: 0;
                    display: inline-block !important;
                    a{
                        width: 40px;
                        height: 35px;
                        padding: 0 !important ;
                        text-align: right;
                        display: inline-block;
                        line-height: 35px;
                        font-size: 13px;
                        .fa-minus{display: none;}
                        &.active{
                            .fa-minus{display:inline-block; }
                            .fa-plus{display: none;}
                        }
                    }

                }
            }
        }
    }
    
    .middle-header-container{
        background: transparent;
    }
    &.header-sticky-menu{
        .middle-header-container{
            background-color: #fff;
        }
        .logo{
            left: auto !important;
        }
    }
    .block-cart-header{
        .showcart{
            .box-shopbag{
                .icon-cart{
                    .count{top: 0;}
                }
            }
        }
    }
}
.cms-home{
	.header5:not(.header-sticky-menu){
		.middle-header-container{
			.navigation{display: none;}
		}
	}
}
body:not(.cms-home){
    .header.header5:not(.header-sticky-menu){
        position: relative;
        .navigation{
            .nav-main{
                & > li {
                    & > a{
                        padding-top: 40px;
                        padding-bottom: 35px;
                    }
                }
            }
        }
        
    }
}
.top-panel{
    .btn-group{
        z-index: 1200;
    }
}
//FOOTER 1
.block-newsletter-ft{
    position: relative;
    display: block;
    .box-text{
        position: absolute;
        top: 50%;
        .transform(translateY(-50%));
        left: 0;
        right: 0;
        margin: 0 auto;
        h4{
            font-size: 34px;
            line-height: 1.4;
            color: #333;
            font-weight: 700;
            margin-top: 13px;
        }
        .subscribe{
            display: inline-block;
            width: 100%;
            .field,
            .actions{
                display: inline-block;
                float: left;
            }
            .actions{
                width: 175px;
                margin-left: 25px;
            }
            .field{
                width: calc(~'100% - 200px');
                display: inline-block;
                position: inherit;
                .input-text{
                    width: 100%;
                    box-shadow: none;
                    border: 1px solid #fff;
                    -webkit-box-shadow: none;
                    transition: all 0.4s ease 0s;
                    margin-bottom: 20px;
                    .mage-error{
                        border-color: red;
                        &:focus{
                            box-shadow: 0 1px 1px rgba(0, 0, 0, 0.075) inset, 0 0 8px rgba(241, 0, 34, 0.6);
                        }
                    }

                }
                .input-text:placeholder{
                    color: #ababab;
                }
                .input-text::-webkit-input-placeholder{
                    color: #ababab;
                }
                .input-text::-moz-placeholder{
                    color: #ababab;
                }
                #newsletter-error{
                    position: absolute;
                    bottom: 0;
                    line-height: 1;
                    font-size: 14px;
                }
            }
        }
        .content{
            padding-top: 40px;
        }
    }
}
.block-newsletter-ft .box-text .subscribe .field .input-text:placeholder{
    color: #ababab;
}
.block-newsletter-ft .box-text .subscribe .field .input-text::-webkit-input-placeholder{
     color: #ababab;
}
.block-newsletter-ft .box-text .subscribe .field .input-text::-moz-placeholder{
    color: #ababab;
}
.block-newsletter-ft .box-text .subscribe .field .input-text:-moz-placeholder{
    color: #ababab;
}
.color-default{
    color: @base-color;

}
.footer{
    .block-contact{
        margin-bottom: 30px;
        ul{
            li{
                font-size: 14px;
                color: #696969;
                display: inline-block;
                width: 100%;
                line-height: 1.2;
                margin: 10px 0;
                position: relative;
                padding-left: 35px;
                span{
                    display: inline-block;
                }
                & > span:first-child{
                    position: absolute;
                    top: 50%;
                    .transform(translateY(-50%));
                    left: 0;
                    display: inline-block;
                    [class*="ion-"]{
                        font-size: 18px;
                        color: #ababab;
                        margin-right: 20px;

                    }
                }
                &:last-child{
                    padding-top: 0;
                }
            }
        }
        a{color: #696969;
          &:hover{
              color: @base-color;
          }
        }
        .color-default{
            color: @base-color;
            &:hover{
                color: #333;
            }
        }
    }
    .block-info,
    .block-account{
        ul{
            li{
                display: inline-block;
                width: 100%;
                a{
                    width: 100%;
                    color: #696969;
                    font-size: 14px;
                    padding: 10px 0;
                    .transition(all 0.4s ease 0s);
                    display: inline-block;
                    width: 100%;
                    position: relative;
                    line-height: 1.15;
                    &:before{
                        content:"";
                        display: inline-block;
                        width: 7px;
                        background: #696969;
                        height: 1px;
                        opacity:0;
                        visibility: hidden;
                        .transition(all 0.4s ease 0s);
                        position: absolute;
                        left: 0;
                        top: 50%;

                    }
                    &:hover{
                        padding-left: 20px;
                        color: @base-color;
                        &:before{
                            opacity: 1;
                            visibility: visible;
                        }
                    }
                }
                &:first-child{
                    padding-top: 0;
                }
                &:last-child{
                    padding-bottom: 0;
                }
            }
        }
    }
}
.block-social{
    ul{
        li{
            display: inline-block;
            margin-right: 8px;
            position: relative;
            &:last-child{margin-right: 0;}

            a{
                background-color: transparent;
                height: 40px;
                width: 40px;
                line-height: 40px;
                font-size: 14px;
                color: #696969;
                border: 1px solid #f4f4f4;
                border-radius: 50%;
                padding-left: 2px;
                text-align: center;
                display: inline-block;
                .transition(all 0.4s ease 0s);
                &:hover{
                    background-color: @base-color;
                    color: #fff;
                    border-color: @base-color;
                }
                .ion-social-facebook{font-size: 16px;}
            }
        }
    }
}
footer{

    h4{
        color: #333;
        text-transform: capitalize;
        font-size: 18px;
        margin-bottom: 25px;
        line-height: 1.15;
        letter-spacing: 0.04em;
        font-weight: 700;
    }
}
.footer1{
    .top-footer{
        margin-bottom: 23px;
        display: block;
    }
    .middle-footer{
        padding-top: 77px;
        padding-bottom: 92px;
    }
    .bottom-footer{
        .bottom-ft-container{
            border-top: 2px solid #f4f4f4;
            padding-top: 30px;
            padding-bottom: 33px;
        }
    }
}
address{
    font-size: 14px;
    font-style: italic;
    color: #ababab;
    margin: 0;
    line-height: 1.8;
}
.footer-links{
    float: right;
    li{
        display: inline-block;
        text-align: left;
        a{
            font-size: 12px;
            text-transform: uppercase;
            color: #696969;
            margin-left: 20px;
            letter-spacing: 0.05em;
            font-weight: 700;
            &:hover{
                color: @base-color;
            }
        }
        &:first-child{
            a{margin-left: 0;}
        }
    }
}
.block-flickr{
    a{
        display: inline-block;
        float: left;
        margin-left: 15px;
        margin-bottom: 15px;

        &.last{
            margin-left: 0;		
            clear: left;
        }
        &:hover{
            opacity: 0.5;

        }
    }
}
.footer1{
    @media(min-width: 1200px){
        .block-flickr{
            padding-left: 98px;
        }
    }
}
body:not(.cms-home){
    .block-newsletter-ft{
        margin-top: 90px;
    }
    .footer2{
        padding-top: 100px;
    }
}
//FOOTER 2
.footer2{
    address{
        color: #696969;
        line-height: 1.2;
    }
    .top-footer{
        background-color: #333;
        color: #fff;
        padding-top: 35px;
        padding-bottom: 25px;

    }
    .block-follow-instagram{
        p{
            font-size: 18px;
            text-transform: uppercase;
            opacity: 0.6;
            letter-spacing: 0.3em;
            line-height: 1;
            font-weight: 300;
            margin-bottom: 15px;

        }
        a.user-instagram{
            opacity: 1;
            font-size: 18px;
            text-transform: none;
            line-height:1.3;
            letter-spacing:0.1em;
            font-style: italic;	
            margin: 0;
            font-weight: 300;
            color: #fff;
            &:hover{
                color: @base-color;
            }
        }

    }
    .middle-footer{
        background: url(../images/bg-flower.png) no-repeat scroll top center;
        .middle-footer-content{
            border-bottom: 2px solid #f4f4f4;
        }
        .block-newsletter-flower{
            padding-top: 329px;
            padding-bottom: 110px;           
            display: block;
            text-align: center;

            .title-block{
                padding: 0;
                margin: 0;
                background: none;

                h4{
                    font-size: 24px;
                    color: #333;
                    margin-bottom: 37px;
                    line-height: 1;
                    font-weight: 600;
                    letter-spacing: 0.05em;
                }
            }

            .form.subscribe{
                .input-text{
                    max-width: 570px;
                    margin: 0 auto 13px;
                    background-color: #f8f7f7;
                    color: #ababab;
                    text-align: center;
                    box-shadow: none;
                    border: none;
                }
                button.btn{
                    margin-top: 18px;
                }
            }
        }
    }
    .bottom-footer{
        .block-social{
            ul{float: right;}
        }

    }
    .bottom-footer{
        padding-top: 40px;
        padding-bottom: 45px;
    }

}

.header.header6{
    .block-social-header-2{
        padding-top: 32px;
        padding-bottom: 32px;
        ul{
            li{
                display: inline-block;
                margin-left: 15px;
                margin-right: 15px;
                a{
                    font-size: 20px;
                    color: #ccc;
                    display: block;
                    &:hover{
                        color: @base-color;
                    }
                }
            }
        }
    }
    .middle-header-container{
        border-bottom: 1px solid rgba(255,255,255,0.2);
        .container-fluid{
            padding-left: 100px;
            padding-right: 100px;
        }
        .header-center{
            position: relative;
        }
        .logo{
            text-align: center;
            img{margin: 0 auto;}
        }
        .col-md-5{
            position: static;
        }
    }
    .main-menu-left{
        &.navigation{
            .nav-main{
                & > li{
                    float: right;
                    &:first-child{
                        a{padding-right: 23px;}
                    } 
                }
            }
        }
    }
    .main-menu-right{
        &.navigation{
            .nav-main{
                & > li{
                    float: left;
                    &:first-child{
                        a{padding-left: 23px;}
                    }
                }
            }
        }
    }
    .navigation{
        display: flex;
        .nav-main{
            & > li{
                & > a{
                    padding: 40px 23px 35px;
                    color: #fff;
                    &:hover{
                        color: @base-color;
                    }
                }

            }
        }
    }
    .block-cart-header{
        .showcart{
            .box-shopbag{
                .icon-cart{
                    [class*="ion"]{
                        color: #fff;
                        &:hover{color: @base-color;}
                    }
                }
            }
        }
    }
    .nav-toggle [class*="ion"]{
        color: #fff;
        &:hover{
            color: @base-color;
        }
    }
    &.header-sticky-menu{
        .middle-header-container{background-color: #fff;}
        .logo{padding: 0;}
        .navigation{
            display: flex;
            .nav-main{
                & > li{
                    & > a{                   
                        color: #333;
                        padding-left: 23px;
                        padding-right: 23px;
                        &:hover{
                            color: @base-color;
                        }
                    }

                }
            }
        }
        .logo{
            left: 0 !important;
            position: relative;
        }
        .block-social-header-2{
            padding-top: 10px;
            padding-bottom: 10px;

        }
        .nav-toggle [class*="ion"]{
            color: #333;
        }
        .block-cart-header{
            .showcart{
                .box-shopbag{
                    .icon-cart{
                        [class*="ion"]{
                            color: #333;
                        }
                    }
                }
            }
        }
    }
}
body:not(.cms-home){
    .header.header6{
        .logo{display: none;}
        .logo-sticky{display: block;padding: 20px 0;}
        .navigation{
            display: table;
            .nav-main{
                & > li{
                    & > a{                   
                        color: #333;
                        &:hover{
                            color: @base-color;
                        }
                    }

                }
            }
        }
        .nav-toggle [class*="ion"]{
            color: #333;
        }
        .block-cart-header{
            .showcart{
                .box-shopbag{
                    .icon-cart{
                        [class*="ion"]{
                            color: #333;
                        }
                    }
                }
            }
        }
        &.header-sticky-menu{
            .logo-sticky{
                padding: 0;
            }
        }
    }
}
/// END HEADER FOOTER
.scroll-to-top{
    position: fixed;
    background: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 1px solid @base-color;
    color: @base-color;
    right: 20px;
    text-align: center;
    font-size: 18px;
    line-height: 50px;
    .transition(all 0.4s ease 0s);
    z-index: 1000;
    &:hover{

        background-color: @base-color;
        color: #fff;
    }
}
//HOME FARM
.title-block{
    display: inline-block;
    width: 100%;
    padding-top: 50px;
    padding-bottom: 12px;
    margin-bottom: 40px;
    position: relative;
    text-align: center;
    //display: inline-block;
    //width: 100%;
    background: url(../images/bg-title-farm.png) scroll no-repeat center center;
    &:after{margin-left: 4px;}
    &:before{margin-right: 4px;}
    & > h2,
    & > h3{
        font-size: 40px;
        font-weight: 900;
        line-height: 1.15;
        color: #333;
        text-transform: uppercase;
        margin: 0 0 8px;
        letter-spacing: 0.1em;
    }
    p.h4{
        font-size: 16px;
        margin: 0;
        line-height: 1;
        letter-spacing: 0.2em;
        color: @base-color;
        font-style: italic;
        &:before,
            &:after{
            content:"";
            display: inline-block;
            width: 6px;
            height: 1px;
            vertical-align: middle;
            background-color: @base-color;
            margin: 0 4px;
        }
    }
}
.title-farm{
    .title-block{
        text-align: center;
        display: inline-block;
        width: 100%;
        background: url(../images/bg-title-farm.png) scroll no-repeat center center;
        &:after{margin-left: 4px;}
        &:before{margin-right: 4px;}

    }    
}
// STYLE STATIC BLOCK SERVICES
.block-services{
    position: relative;
    display: block;
    overflow: hidden;
    text-align:center;
    .transition(all 0.4s ease 0s);
    a{
        img{
            .transform(scale(1,1));
            .transition(all 0.4s ease 0s);
        }
    }
    .box-text{
        position: absolute;
        top: 50%;
        .transform(translateY(-50%));
        margin: 0 auto;
        display: inline-block;
        left: 0;
        right: 0;
        text-align:center;
        h4{
            letter-spacing: 0.05em;
            color: #333;
            font-weight: 700;
            margin-bottom: 15px;
            margin-top: 0;
            &:after{
                content:"";
                display: block;
                width: 32px;               
                height: 1px;
                background-color: #333;
                margin: 0 auto;
                margin-top: 17px;
                .transition(all 0.4s ease 0s);
            }
        }
        p{
            font-size: 14px;
            font-style:italic;
            color: #696969;
            letter-spacing: 0.1em;
            margin: 0;
        }
    }
    &:hover{
        a{
            img{
                .transform(scale(1.2,1.2));
            }
        }
        h4{
            &:after{
                width: 60px;
            }
        }
    }

}
// BLOCK PRODUCT TAB
.block-tab-products{
    .tab-pane{
        text-align: center;
    }
    .nav-tabs{
        border-bottom: none;
        margin-bottom: 45px;
        li{
            float: none;
            display: inline-block;
            margin-bottom: 0;
            margin-left: 5px;
            margin-right: 5px;
            margin-bottom: 10px;
            a{
                font-size: 14px;
                text-transform: uppercase;
                font-weight: 700;
                line-height: 1;
                padding: 7px 15px 7px;
                color: #696969;
                border: 1px solid #f4f1e3;
                max-height: 30px;
                text-align: center;
                border-radius: 15px;                
            }
            &.active a,
            a:hover{
                color: #fff;
                border-color: @base-color;
                background-color: @base-color;
            }
            &:last-child{
                margin-right: 0;                
            }
            &:first-child{
                margin-left: 0;
            }
        }
    }
}
//BTN ADDTO
.btn-addto{
    width: 48px;
    height: 48px;
    display: block;
    text-align: center;
    line-height: 48px;
    color: #fff;
    padding: 0;
    margin: 0;
    font-size: 18px;
    background-color: #696969;
    .transition(all 0.4s ease 0s);
    box-shadown: none;
    border: none;
    border-radius: 50%;
    &:hover,
        &:focus,
        &:active{
        background-color: @base-color;
        color: #fff;
    }
}
.btn-addto-default{
    width: 40px;
    height: 40px;
    padding: 0;
    line-height: 40px;
    display: inline-block;
    text-align: center;
    margin: 0;
    color: @base-color;
    font-size: 16px;
    background-color: #fff;
    .transition(all 0.4s ease 0s);
    box-shadow: none;
    border-radius: 50%;
    border: 1px solid @base-color;
    &:hover,
        &:active,
        &:focus{
        background-color: @base-color;
        color: #fff;
    }
}
//PRODUCT LABEL
.product-label{
    display: inline-block;   
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    margin: 0 auto;
    text-align: center;
    line-height: 1;
    span{
        padding: 2px 8px;
        font-size: 12px;
        text-transform: uppercase;
        color: #fefefe;
        font-weight: 700;
        letter-spacing: 0.1em;
        line-height: 1;
        background-color: #b4e1f7;
        border-radius: 10px;
        display:inline-block;
        width: 50px;
        overflow: hidden;
        line-height: 1;
    }
    &.sale-label{
        span{
            background-color: #f9734d;
        }
    }
}
//PRODUCT PRICE
.price-box{
    .price{
        font-size: 14px;
        color: #696969;
    }
}
.product-image-photo{
    margin: 0 auto;
}
//STYLE PRODUCT GRID
.products-grid{
    .product-item{
        .product-item-info{
            border: 1px solid #f3f0e2;
            text-align: center;      
            padding-bottom: 30px;
            margin-bottom: 30px;            
            .transition(all 0.4s ease 0s);
            .product-top{
                position: relative;
                margin-bottom: 10px;
                text-align: center;
                .product-item-photo{
                    display: inline-block;
                    width: 100%;
                    position: relative;
                    &:after{
                        content:"";
                        display: inline-block;
                        position: absolute;
                        width: 100%;
                        height: 100%;
                        background-color: rgba(255,255,255,0.4);
                        top: 0;
                        bottom: 0;
                        left: 0;
                        right: 0;
                        opacity: 0;
                        visibility: hidden;
                        .transition(all 0.4s ease 0s);
                    }
                }
                .product-image-photo{
                    margin: 0 auto;
                    transform-style: inherit;
                    -moz-transform-style: inherit;
                    -webkit-transform-style: inherit;
                    -ms-transform-style: inherit;
                    position: relative;


                }
                .product-item-inner{
                    position: absolute;
                    left: 0;
                    right: 0;
                    margin: 0 auto;
                    top: 50%;   
                    .transform(translateY(-50%));
                    .product-item-actions{
                        display: inline-flex;
                        display: -webkit-inline-flex;
                        
                    }
                    .btn-addto,
                    form{
                        display: inline-block;
                        margin-left: 5px;
                        margin-right: 5px;
                    }
                    .btn-addto{
                        .transform(scale(0,0));
                        .transition(all 0.4s ease 0s);
                    }
                }
                a.towishlist{
                    position: absolute;
                    top: 15px;
                    right: 15px;
                    font-size: 20px;
                    color: @base-color;
                    &:hover{
                        .ion-android-favorite-outline:before{
                            content:"\f141";
                        }
                    }
                }
            }
            .product-item-name{

                h4{                   
                    font-size: 18px;
                    font-weight: 700;
                    line-height: 1;
                    margin-bottom: 17px;
                    margin-top: 0;
                    letter-spacing: 0.05em;
                    text-transform: capitalize;

                    &:after{
                        content:"";
                        width: 32px;
                        height: 1px;
                        background-color:#e7e5e4;
                        display: block;
                        margin: 17px auto 0;
                        .transition(all 0.5s ease 0s);
                    }
                }
            }
            &:hover{
                border-color: @base-color;
                box-shadow: 0 0 12px rgba(0,0,0,0.175);
                .product-top{
                    .product-item-photo{
                        &:after{
                            opacity: 1;
                            visibility: visible;
                        }
                    }
                    .product-item-inner{                        
                        .btn-addto{
                            .transform(scale(1,1));
                        }
                    }
                }
                .product-item-name{
                    h4{
                        &:after{
                            width: 60px;
                            border-color: @base-color;
                        }
                    }
                }
            }
            .product-item-details{
                padding-left: 10px;
                padding-right: 10px;
            }
        }

    }
    &.productv2{
        .product-item{
            .product-item-info{
                border: none;
                .product-top{
                    margin-bottom: 0;
                    .product-item-photo{
                        background-color: #f8f7f7;
                        display: inline-block;
                        width: 100%;
                    }
                }
                .product-item-details{
                    position: relative;
                    padding-top: 47px;
                    .product-item-name{
                        position: absolute;
                        z-index: 9;
                        left: 0;
                        right: 0;
                        top: -20px;
                        margin: 0 auto;
                        h4{
                            font-size: 24px;
                            &:after{
                                background-color: #ababab;
                            }
                        }

                    }
                    .price-box{
                        .price{
                            font-size: 18px;
                            line-height: 1.3;
                        }
                    }
                }
                &:hover{
                    border: none;
                    box-shadow: none;
                }
            }
        }

    }
    &.productv3{
        .product-item{
            .product-item-info{
                border: none;
                margin-bottom: 13px;
                .product-top{
                    .product-item-photo{
                        background-color: #f8f7f7;
                        &:after{
                            background-color: rgba(248,247,247,0.2);
                        }
                    }
                }
                .product-item-name{
                    h4{
                        font-size: 24px;
                        margin-top: 16px;
                        margin-bottom: 26px;
                        &:after{
                            background-color: #ababab;
                        }
                    }
                }
                .price-box{
                    .price{font-size: 18px;letter-spacing: 0.05em;}
                }
                &:hover{
                    box-shadow: none;
                }
            }
        }
    }
}
.products-grid{
    .row-custom-8,
    .row-custom-7{
        &.owl-carousel{
            .owl-item:last-child{
                margin: 0 !important;
            }
        }
    }
}
.btn-loadmore{
    margin: 0 auto;
    margin-bottom: 20px;
    span{
        width: 15px;
        height: 15px;
        line-height: 15px;
        display: none;        
    }
}

body.ajax-loading{
    .btn-loadmore{
        .loading{
            background: url(../images/loader.gif) no-repeat center center scroll;                    
            background-size: 15px;
            display: inline-block;
        }
    }
}



//STYLE PRODUCT LIST
.list-block-products,
.portfolio-block-list{
    .content-heading{
        padding-right: 60px;
        text-align: left;
        margin: 0;
        &:before{
            display: none;

        }
        .title{
            font-size: 24px;
            font-weight: 900;
            letter-spacing: 0.1em;
            color: #333;
            margin: 0 0 40px;
            text-transform: uppercase;
        }
    }
    .owl-carousel{
           
                .owl-nav{
                    [class*="owl-"]{
                        width: 25px;
                        height: 25px;
                        line-height: 22px;
                        font-size: 14px;
                        opacity: 1;
                        visibility: visible;
                        .transform(none);
                        right: 0;
                        left: auto;
                        top: -50px;
                    }
                    .owl-prev{
                        left: auto;
                        right: 30px;
                    }
                }
          
    }
}
.list-products{
    .price-final_price{
        .price-label{display: none;}
    }
    .product-items{
        .product-item{
            width: 100%;
            display: block;
            margin-bottom: 20px;
            &:before,
                &:after{
                content:"";
                display: table;
                clear: both;
            }
            .product-top,
            .product-item-details{
                display: inline-block;   
                float:left;

            }
            .product-top{
                width: 120px;
                margin-right: 30px;
                position: relative;
                .product-item-photo{
                    display: block;
                    width: 100%;
                    position: relative;
                    .transition(all 0.4s ease 0s);
                    img{
                        border: 1px solid #f4f1e3;
                    }
                    &:before,
                        &:after{
                        content:"";
                        display: block;
                        height: 100%;
                        left: 0;
                        position: absolute;
                        top: 0;
                        .transition(all 0.35s ease 0s);
                        width: 100%;
                        opacity: 0;
                        visibility: visible;
                    }
                    &:before{
                        border-bottom: 1px solid @base-color;
                        border-top: 1px solid @base-color;
                        .transform(scale(0,1));
                        transform-origin: 0 0 0;
                        z-index: 100;
                    }
                    &:after{
                        border-left: 1px solid @base-color;
                        border-right: 1px solid @base-color;
                        .transform(scale(1,0));
                        transform-origin: 100% 0 0;
                        z-index: 100;
                    }
                }
                .product-item-inner{
                    position: absolute;
                    top: 50%;
                    left: 50%;
                    .transform(translate(-50%,-50%));
                    z-index: 100;
                    .btn-cart{
                        font-size: 18px;
                        color: #fff;
                        width: 48px;
                        height: 48px;
                        line-height: 48px;
                        border-radius: 50%;
                        background-color: @base-color;
                        opacity: 0;
                        visibility: visible;
                        padding: 0;
                        margin: 0;
                        .transform(translateY(10px));
                        .transition(all 0.35s ease 0s);
                        &:hover{
                            background-color: #696969;
                            border-color: #696969;
                        }
                    }
                }
            }
            .product-item-details{
                width: calc(~'100% -  150px');
                .product-item-name{
                    h4{
                        font-size: 18px;
                        letter-spacing: 0.05em;                        
                        margin-top: 15px;
                        margin-bottom:  20px;
                        font-weight: 700;
                        &:after{
                            content:"";
                            display: block;
                            height: 1px;
                            width: 32px;
                            background-color: #e7e5e4;
                            margin-top: 17px;
                        }
                    }
                }
                .price-box{
                    margin-bottom: 10px;
                }

                .product-box-label{
                    position: relative;
                    line-height: 1;
                }
                .box-meta{
                    .price-box{
                        margin-bottom: 14px;
                    }
                    .product-box-label{
                        padding-top: 20px;
                        margin-left: 4px;
                        .product-label{
                            right: auto;
                        }
                    }
                }
                .meta-box{
                    .product-reviews-summary{
                        float: left;
                        min-width: 90px;
                        display: inline-block;
                        margin-right: 6px;  
                        margin-bottom: 5px;
                    }
                    .product-box-label{
                        display: block;
                        float: left;
                        padding: 7px;
                        .product-label{
                            bottom: inherit;
                        }
                    }
                }
            }
            &:hover{
                .product-top{
                    .product-item-photo{
                        &:before,
                            &:after{
                            opacity: 1;
                            .transform(scale(1));
                        }
                        img{
                            opacity: 0.3;
                        }
                    }
                    .product-item-inner{
                        .btn-cart{
                            opacity: 1;
                            visibility: visible;
                            .transform(translateY(0));
                        }
                    }
                }
            }
            &:last-child{
                margin-bottom: 0;
            }
        }
    }
}
// BLOCK HOMEPAGE3
.organie3-block-life{
    padding-top: 65px;
    .item-block{
        display: block;
        margin-bottom: 80px;
        &:last-child{
            margin-bottom: 0;
        }

        [class*="icon-"]{
            width: 70px;
            height: 70px;
            text-align: center;
            border-radius: 50%;
            line-height: 70px;
            font-size: 30px;
            color: @base-color;
            background-color: #f8f7f7;
            padding-left: 15px;
            display: inline-block;
            float: left;
            .transition(all 0.4s ease 0s);
        }
        .icon-lemon{font-size: 25px;}
        .content-text{
            h3{
                font-size: 18px;
                color: #333;
                letter-spacing: 0.1em;
                margin-top: 0;
                margin-bottom: 10px;
                padding-top: 3px;
            }
            p{
                margin: 0;
                font-size: 15px;
                line-height: 25px;
            }
        }
        &:hover{
            [class*="icon-"]{
                background-color: @base-color;
                color: #fff;
            }
        }
    }
    &.icon-left{
        .item-block{
            .content-text{
                margin-left: 100px;
            }
        }
    }
    &.icon-right{
        .item-block{
            .content-text{
                margin-right: 100px;
                text-align: right;
            }
            [class*="icon-"]{
                float: right;
            }
        }
    }
}
.organie3-block-step{
    display: inline-block;
    text-align: center;
    position: relative;
    width: 100%;
    img{
        margin: 0 auto;
    }
    .box-text{
        position: absolute;
        top: 50%;
        .transform(translateY(-65%));
        left: 0;
        right: 0;
        margin: 0 auto;
        .title-block{
            width: 266px;
            height:260px;
            margin: 0 auto;
            text-align: center;
            padding-top: 95px;
        }
        .bg-border{
            background: url(../images/bg-border.png) no-repeat scroll center center;
            max-width: 266px;
            max-height: 260px;
            margin: 0 auto;
        }
        .title-farm{
            .title-block{
                padding-top: 95px;
            }
        }
    }
}
//BLOCK LINE
.line-block{
    span{
        padding-top: 3px;
        padding-bottom: 3px;
        min-height: 1px;
        width: 100%;
        display: block;
        background: url(../images/line.png) repeat-x scroll center center;
    }
}
.border-title-farm{
    .title-block{
        h2{
            position: relative;
            overflow: hidden;
            z-index: 10;
            span{
                display: inline-block;
                position: relative;
                &:after,
                    &:before{
                    content:"";
                    display: inline-block;
                    height: 7px;
                    position: absolute;
                    width: 999px;
                    background: url(../images/line.png) repeat-x scroll center center;
                    top: 50%;
                    .transform(translateY(-50%));
                    z-index: 8;
                    margin-top: 7px;
                }
                &:after{                              
                    right: 100%;    
                    margin-right: 40px;
                }
                &:before{
                    left: 100%;
                    margin-left: 40px;
                }
            }
        }
    }
}
//BLOCK BLOG HOMEPAGE 
.mgs-blog-lastest-posts{
    .post-meta{
        .h6{
            font-size: 14px;
            color: #ababab;
            letter-spacing: 0.1em;
            font-style: italic;
            margin-top: 0;
            margin-bottom: 15px;
            line-height: 1;
        }
    }
    .read-more{
        margin-top: 25px;
        line-height: 1;
        a{
            font-size: 14px;
            text-transform: uppercase;
            font-weight: bold;
            letter-spacing: 0.1em;
            color: #696969;
            position: relative;

            &:hover{
                color: @base-color;
            }
            &:before{
                content:"/";
                display: inline-block;
                padding-right: 5px;
            }
        }
    }
    .short-content{
        font-size: 15px;

        line-height: 1.73;
    }
    .item{        
        &:hover{
            .image{
                img{
                    opacity: 0.7;

                }
            }
        }
        .post-content{
            padding-top: 24px;
            h3{
                font-size: 18px;
                font-weight: 700;
                color: #333;
                margin-bottom: 25px;
            }
            .short-content{
                font-size: 15px;
                line-height: 26px;
                margin-bottom: 25px;
            }
        }
        .post-tag{
            display: none;
        }
        .post-meta{
            .day{
                &:after{
                    content:",";
                    display: inline-block;
                }
            }
        }
    }
}
.blog-grid-list-block{
    .mgs-blog-lastest-posts{
        .item-first{
            .post-top{              
                .image{
                    margin-top: 20px;
                    position: relative;
                    display: block;
                    margin-right: 30px;
                    margin-bottom: 0;
                    &:after{
                        content:"";
                        display: block;
                        width: 30px;
                        height: 100%;
                        border-right: 5px solid #f4f1e3;
                        border-bottom:  5px solid #f4f1e3;
                        position: absolute;
                        right: -30px;
                        top: -20px;
                        z-index: 90;
                    }
                    &:before{
                        content:"";
                        display: block;
                        width: 100%;
                        height: 20px;
                        border-left: 5px solid #f4f1e3;
                        border-top:  5px solid #f4f1e3;
                        position: absolute;
                        left: 30px;
                        top: -20px;
                        z-index: 90;
                    }
                    img{
                        z-index: 100;
                    }
                }
            }
            .post-bottom{
                padding-top: 22px;
                max-width: 470px;
                .post-meta{
                    .h6{
                        font-size: 14px;
                        color: #ababab;
                        letter-spacing: 0.1em;
                        font-style: italic;
                        margin-top: 0;
                        margin-bottom: 15px;
                    }
                }
                .title{
                    font-size: 24px;
                    font-weight: 700;
                    margin-top: 0;
                    margin-bottom: 25px;
                }


            }
        }
        .item{
            margin-bottom: 30px;
            padding-top: 20px;
            line-height: 1;
            &:before,
                &:after{
                content:"";
                display: table;
                clear: both;
            }
            .post-left{
                display: inline-block;
                max-width: 270px;
                margin-right: 30px;
                float: left;

            }
            .post-right{
                display: inline-block;
                width: calc(~'100% - 300px');
                .title{
                    font-size: 18px;
                    font-weight: bold;
                    margin-bottom: 20px;
                }
                .read-more{
                    margin-top: 22px;
                }
            }
            &:last-child{
                margin-bottom: 0;
            }

        }
    }
}
.custom-style-blog-cake{
    .mgs-blog-lastest-posts{
        .item{
            display: block;
            position: relative;
            .post-tag{
                display: block;
            }
            .post-content{
                margin-bottom: 20px;
                padding-left: 115px;
                position: relative;
                padding-top: 28px;
                h3{
                    font-size: 24px;
                    margin-top: 15px;
                }
            }
            .post-tag{
                margin-bottom: 10px;
                a{
                    color: #ababab;
                    &:hover{
                        color: @base-color;
                    }
                }
            }
            .post-meta{
                .date{
                    position: absolute;
                    width: 85px;
                    height: 85px;
                    border: 2px solid #e0e0e0;
                    padding: 10px 15px;
                    left: 0;
                    top: 30px;
                    border-radius: 50%;
                    .month{
                        bottom: 10px;
                        position: absolute;
                        text-align: center;
                        left: 26px;
                        letter-spacing: 0.2em;
                        color: #333;
                    }
                    .day{
                        font-size: 34px;
                        font-style: normal;
                        font-weight: bold;
                        left: 20px;
                        letter-spacing: 0.2em;
                        line-height: 1;
                        padding-bottom: 0;
                        top: 0;
                        color: @base-color;
                        &:after{
                            content:"";
                            display: block;
                            width: 32px;
                            height: 1px;
                            margin: 4px auto;
                            line-height: 1;
                            vertical-align: baseline;
                            background-color: #e0e0e0;
                        }
                    }
                    .year{display: none;}
                }
            }
        }
    }
}
//PROMOBANNER  
.promobanner{
    img{
        margin: 0 auto;
    }
}
.banner-nature{
    padding-right: 45px;
    text-align: right;
    h3{
        font-size: 40px;
        color: #fff;
        letter-spacing: 0.1em;
        font-weight: 900;
        margin-top: 5px;
        margin-bottom: 10px;
        text-transform: uppercase;
        margin-right: -15px;
    }
    h6{
        font-size: 16px;
        font-weight: 700;
        font-style: italic;
        letter-spacing: 0.2em;
        padding: 3px 6px;
        background-color: #333;
        margin: 0;
        float: right;
        margin-right: -10px;
        line-height: 1;
    }
}
.banner-strawberry{
    text-align: center;
    margin-right: 20px;
    h3{
        font-size: 40px;
        font-weight: 900;
        letter-spacing: 0.1em;
        margin-top: 7px;
        margin-bottom: 0;
        color: #333;
    }
    p{
        text-transform: uppercase;
        font-weight: 700;
        letter-spacing: 0.2em;
        margin: 0;
        color: #696969;
        font-size: 14px;
        margin-top: 4px;
    }
}
//NEWSLETTER home3
.block-newsletter-2{
    position: relative;
    display: block;
    .box-text{
        position: absolute;
        top: 50%;
        max-width: 570px;
        left: 50%;
        .transform(translate(-50%,-50%));
        display: inline-block;
        float: none;
        width: 100%;
        h4{
            font-size: 24px;
            color: #333;
            letter-spacing: 0.05em;
            margin-bottom: 35px;
            margin-top: 5px;
            font-weight: bold;
            line-height: 1;
        }
        input.form-control{
            box-shadown: none;
            border: none;
            background-color: #fff;
            text-align: center;
            margin-bottom:  30px;
        }
    }
}
//HOMEPAGE CAKE
//BLOCK ABOUT CAKE
.block-layer-abs{
    position: relative;
    display: block;
    .layer-left{
        position:absolute;
        left: 0;
        top: -458px;
        z-index: 999;
    }
    .layer-right{
        position: absolute;
        right: 0;
        top: -255px;
        z-index: 999;
    }
    .layer-center{
        padding-top: 140px;
        padding-bottom: 150px;
        .layer-img1{
            display: inline-block;
            position: relative;
            margin-right: 40px;
            &:before{
                border: 3px solid #333;
                bottom: -40px;
                content:"";
                display: block;
                left: 30px;
                position: absolute;
                right: -30px;
                top: 40px;
                z-index: 0;
            }
            img{
                position: relative;
                z-index: 2;
            }
        }
        .layer-img2{
            position: absolute;
            top: -220px;
            z-index: 9;
        }
        .about-text{
            padding-top: 343px;
            position: relative;
            padding-bottom: 125px;
            .text{
                color: #333;
                font-style: italic;
                letter-spacing: 0.1em;
                line-height: 2;
                margin: 0;
                margin-left: 10px;
                margin-top: 10px;
            }
            .layer-img3{
                position: absolute;
                bottom: 0;
                left: -200px;
                z-index: -1;
            }
        }
    }
    .layer-bottom{
        position: absolute;
        bottom: -170px;
        right: 0;
        z-index: 9;
    }
}
.title-cake{
    .title-block{
        background: none;      
        h3{
            color: #333;
            font-size: 48px;
            font-style: italic;
            letter-spacing: 0.2em;
            margin-bottom: 20px;
            font-weight: 400;
            &:before{
                content:"#";
                display: inline-block;
                margin-right: 0;
            }
        }

    }
}
.block-shop-by-cate{
    position: relative;
    .title-block{
        position: absolute;
        top: -235px;
        left: 0;
        max-width: 390px;
        padding: 0;
        margin: 0;
        background: none;
        h3{
            padding: 0;
            margin: 0;
            line-height: 1.65;
        }
    }
    .button-cate{
        position: absolute;
        top: 50%;
        left: 50%;
        .transform(translate(-50%,-50%));
        font-size: 14px;
        color: #333;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 0.1em;
        height: 48px;
        width: 152px;
        line-height: 48px;
        .transition(all 0.4s ease 0s);
        background-color: #fff;
        text-align: center;
        &:hover,
            &:focus,
            &:active{
            color: #fff;
            background-color: @base-color;
        }
    }
    .img-top{
        margin-bottom: 30px;
    }
    .img-top,
    .img-bottom,
    .img-center{
        position: relative;
        display: block;
        overflow: hidden;
        img{
            .transition(all 0.4s ease 0s);
        }
        &:hover{
            img{
                opacity: 0.3;
                .transform(scale(1.2));
            }
        }
    }

    &:after{
        content:"";
        display: block;
        width: 1px;
        height: 80px;
        background-color: #333;
        position: absolute;
        bottom: -152px;
        left: 0;
        right: 0;
        margin: 0 auto;
        z-index: 9;
    }
}
.block-cake-banner{
    text-align: center;
    max-width: 770px;
    margin: 0 auto;
    background-color: rgba(255,255,255,0.4);
    padding: 56px 125px 45px;
    p{
        letter-spacing: 0.1em;
        text-transform: uppercase;
        margin-bottom: 22px;
        line-height: 1.4;
        font-weight: 700;
    }
    h3{
        font-size: 40px;
        font-style: italic;
        letter-spacing: 0.1em;
        margin: 0;
        margin-bottom: 32px;
        color: #333;
        line-height: 1.2;
        text-transform: capitalize;
    }
    a.btn{
        padding-left: 27px;
        padding-right: 27px;
        letter-spacing: 0.1em;
    }
}
.custom-style-blog-cake{
    padding-top: 10px;
}
.block-content{
    width: 100%;
    display:inline-block;
    &.no-display{
        display: none;
    }
}

// STYLE CATEGORY
//TOOLBAR
.top-toolbar{
    .pages{
        display: none;
    }
    margin-bottom: 50px;
}
.bottom-toolbar{
    .toolbar-box{display: none;}
}
.toolbar-amount{
    font-size: 16px;
    font-weight: 400;
    font-style: italic;
    letter-spacing: 0.1em;
    margin: 0;
    padding: 0;
    line-height: 40px;
    .toolbar-number{
        color: @base-color;
    }
}
.modes,
.sorter,
.limiter{
    display: inline-block;
    float: right;
}
.modes{
    margin-left: 30px;
    .modes-mode{
        width: 40px;
        height: 40px;
        font-size: 18px;
        color: #696969;
        line-height: 40px;
        padding: 0;
        text-align: center;
        border: 1px solid #f4f1e3;
        border-radius: 4px;
        display: inline-block;
        span{
            opacity: 0.7;
        }
        &.mode-grid{
            margin-right: 10px;
        }
        &.active,
        &:hover,
            &:active{
            color: #fff;
            background-color: @base-color;
        }
    }
}
.sorter,
.limiter{
    label{display: none;}
    select{
        min-width: 175px;
        background-color: #f8f7f7;
        border: none;
        border-radius: 4px;
        font-size: 13px;
        text-transform: uppercase;
        letter-spacing: 0.05em;
        color: #9c9b9b;
        height: 40px;
        cursor: pointer;
    }
}
.sorter{
    display: inline-flex;
    display: -webkit-inline-flex;
    .sorter-action{
        line-height: 40px;
        margin-left: 10px;
    }
}
.limiter{
    margin-right: 10px;
}
.bottom-toolbar{
    margin-top: 33px;
    margin-bottom: 30px;
}
.pages{
    margin: 0;
    .pagination{
        padding: 0;
        margin: 0;
        border: none;
        .item{
            font-size: 14px;
            font-weight: 700;
            line-height: 1;
            margin-left: 5px;
            margin-right: 5px;
            display:inline-block;
            a{
                padding: 11px 15px 14px;
                min-height: 40px;
                min-width: 40px;
                margin: 0;
                font-size: 14px;
                color: #696969;
                border: none;
                line-height: 1;
                &:focus{
                    background-color: @base-color;  
                    border-radius: 50%;
                    border: none;
                    color: #fff;
                }
            }
            span{
                &:focus{
                    background-color: @base-color;
                    border-radius: 50%;
                    border: none;
                    color: #fff;
                }
            }
            &.current,
            &:hover{
                a{
                    background-color: @base-color;
                    border-radius: 50%;
                    border: none;
                    color: #fff;
                }
            }
            &[class*='pages-item-']{
                border: none;
                margin: 0;
                line-height: 1;
                text-transform: uppercase;
                background: none;
                &:hover,
                    &:active{
                    a,
                    span{
                        background: none;
                        color: @base-color;
                    }

                }
            }

        }
    }
}

//FILTER
.one-column-filter{
    .filter-title{
        margin-bottom: 20px;
    }
    .filter-content{
        margin-bottom: 20px;
        .block-sub-title{
            font-weight: bold;
            margin-top: 10px;
            margin-bottom: 10px;
            color: #333;            
        }
        select{
            background: url(../images/icon-dropdown.png) no-repeat scroll calc(~'100% - 20px') center ;
        }
    }
    .filter-current{
        .filter-current-subtitle{
            color: #333;
            font-size: 15px;
            text-transform: uppercase;
            margin-bottom: 10px;
            display: block;
        }
        .items{
            margin: 0;
            .item{
                display: inline-flex;
                display: -webkit-inline-flex;
                padding: 5px 5px;
                font-style: italic;
                .filter-label{
                    font-weight: 700;
                    min-width: 60px;
                    &:after{
                        content:":";
                    }
                }
                .filter-value{
                    line-height: 1.8;
                    margin: 0;
                    &.h6{
                        font-size: 15px;
                        margin: 0;
                        margin-right: 10px;
                    }
                }
                .action.remove{
                    margin-right: 5px;
                    color: @base-color;
                    &:hover{
                        color: #696969;
                    }
                }
            }
        }

    }
    .filter-clear{
        display: block;
        margin-top: 5px;
        margin-bottom: 10px;
        a{
            color: @base-color;
            &:hover,
                &:active{
                color: #696969;
            }

        }
    }

}
body.catalog-category-page{
    &.ajax-loading{
        &:after{
            content:"";
            display: block;
            width: 100%;
            position: absolute;
            top: 0;
            bottom:0;
            right: 0;
            left: 0;
            background-color: rgba(255,255,255,0.7);
            margin: 0 auto;
            z-index: 1009;
        }
    }
    .ajax-loading{
        position: fixed;
        z-index: 1100;
        left: 0;
        right: 0;
        margin: auto;
        text-align: center;
        top: 50%;
    }
    &:not(.cms-home){
        footer{
            .top-footer{
                .block-newsletter-ft{
                    padding-top: 90px;
                }
            }
        }
    }

}
.category-image{display: none;}
.category-description{
    margin-bottom: 40px;
    blockquote{
        border-left-color: @base-color;
        font-style: italic;
    }
}
//catalog content
.products-grid{
    .product-items{
        &.row-col-lg-2,
        &.row-col-lg-custom-7,
        &.row-col-lg-custom-8,
        &.row-custom-8,
        &.row-custom-7,
        &.row-custom-2{
            .product-item{
                .product-item-info{
                    .product-top{
                        .product-item-inner{
                            left: 10px;
                            right: auto;
                            top: 0;
                            .transform(none);
                            .product-item-actions{
                                display: block;
                            }
                            .btn-addto,
                            form{
                                display: block;
                                margin: 5px 0;
                            }
                        }
                    }
                }
            }
        }
        &.row-col-lg-custom-8,
        &.row-custom-8{
            .product-item{
                .product-item-info{
                    .product-item-name{
                        h4{
                            font-size: 15px;
                        }
                    }
                    .product-top{
                        .product-item-inner{
                            z-index: 100;
                            .btn-addto{
                                width: 40px;
                                height: 40px;
                                line-height: 40px;

                            }
                        }
                    }
                }
            }
        }
    }
    .swatch-attribute-options{
        display: inline-block;
        text-align: center;
        width: 100%;
        .swatch-option{
            float: none !important;
            display: inline-block;
            margin: 5px;
        }
    }
}
.swatch-attribute .swatch-attribute-options {
    margin-top: 0;
}
//STYLE FILTER sidebar
.block.filter{
    .filter-options{
        .filter-option{
            display: block;
            margin-bottom: 50px;
            .filter-heading{
                h3{
                    position: relative;
                    &:after{
                        content: "\f126";
                        font-family: "Ionicons";
                        display: inline-block;
                        font-size: 15px;
                        color: #333;
                        position: absolute;
                        right: 0;
                        top: 50%;
                        .transform(translateY(-50%));
                        cursor: pointer;
                    }
                }
            }
            &.active{
                .filter-heading{
                    h3{
                        &:after{
                            content: "\f123";
                        }
                    }
                }
            }
            .filter-body{
                .items{
                    li.item{
                        display: inline-block;
                        width: 100%;
                        margin-bottom: 30px;
                        a{
                            display: block;
                            width: 100%;
                            position: relative;
                            overflow: hidden;
                            color: #696969;
                            &:after{
                                content:"";
                                display: inline-block;
                                width: 999px;
                                height: 1px;
                                background-color: #f4f4f4;
                                margin-left: 14px;
                                position: absolute;
                                bottom: 9px;
                                z-index: -1;
                            }
                            &:hover{
                                color: @base-color;
                            }
                            .count{
                                font-size: 15px;
                                position: absolute;
                                right: 0;
                                top: 0;
                                padding-left: 14px;
                                background-color: #fff;
                            }
                        }
                        &:last-child{
                            margin-bottom: 0;
                        }
                    }
                }
            }
            &:last-child{
                margin-bottom: 0;
            }
        }
    }
    .filter-current{
        .block-content{
            .items{
                .item{
                    display: inline-flex;
                    display: -webkit-inline-flex;

                    padding: 5px;                        
                    .filter-label{
                        font-weight: 700;
                        min-width: 60px;
                        font-style: italic;
                        &:after{
                            content:":";
                        }
                    }
                    .filter-value{
                        font-size: 15px;
                        font-style: italic;
                        margin: 5px 0;
                        margin-right: 10px;
                    }
                }
            }
        }
    }
}
.sidebar{
    .block{
        margin-bottom: 50px;
        h3{
            color: #333;
            font-weight: 700;
            letter-spacing: 0.05em;
            margin-top: 0;
            margin-bottom: 30px;
        }
    }
    .block-compare{
        .product-items{
            .product-item{
                display: inline-block;
                width: 100%;
                padding: 5px 0;
                a.action{
                    font-size: 14px;
                    color: @base-color;
                    margin-right: 10px;
                    &:hover{
                        color: #696969;
                    }

                }
            }
        }
        .actions-toolbar{
            display: inline-flex;
            display: -webkit-inline-flex;
            padding-top: 15px;
            float: right;
            margin: 0;
            .secondary{
                margin-right: 30px;                
                a{
                    color: @base-color;
                    line-height: 33px;
                    &:hover{
                        color: #696969;
                    }
                }
            }

        }
    }
    .block-wishlist{
        .block-content{
            .product-items{
                display: inline-block;
                width: 100%;
                .product-item{
                    margin-bottom:20px;
                    padding-bottom: 20px;
                    border-bottom: 1px solid #f8f7f7;
                    width: 100%;
                    position: relative;
                    .product-item-info{
                        display: inline-flex;
                        display: -webkit-inline-flex;
                        .product-item-photo{
                            .product-image-wrapper{
                                padding: 0 !important;
                                border: 1px solid #eee;
                                position: relative;
                                display: inline-block;
                                &:before,
                                    &:after{
                                    content:"";
                                    display: block;
                                    height: 100%;
                                    left: 0;
                                    opacity: 0;
                                    position:absolute;
                                    top: 0;
                                    .transition(all 0.35s ease 0s);
                                    visibility: hidden;
                                    width: 100%;
                                }
                                &:before{
                                    border-bottom: 1px solid @base-color;
                                    border-top: 1px solid @base-color;
                                    .transform(scale(0,1));
                                    transform-origin: 0 0 0;
                                    z-index: 100;
                                }
                                &:after{
                                    border-left: 1px solid @base-color;
                                    border-right: 1px solid @base-color;
                                    .transform(scale(1,0));
                                    transform-origin: 100% 0 0;
                                    z-index: 100;
                                }
                            }
                        }
                        .product-item-details{
                            margin-left: 20px;
                            .product-item-name{
                                font-weight: 700;
                                margin-top: 0;
                                margin-bottom: 10px;
                            }
                        }
                        .product-item-actions{
                            .actions-secondary{
                                position: absolute;
                                top:50%;
                                right: 10px;
                                .transform(translateY(-50%));
                                margin-top: -20px;
                            }
                        }
                        &:hover{
                            .product-item-photo{
                                .product-image-wrapper{
                                    &:before,
                                        &:after{
                                        opacity: 1;
                                        visibility: visible;
                                        .transform(scale(1,1));

                                    }
                                }
                            }
                        }
                    }
                }
            }
        }
        .actions-toolbar{
            margin: 0;
            text-align: right;
        }
    }
    .account-nav{      
        display: inline-block;
        width: 100%;
        .item{
            width: 100%;
            strong,
            a{
                width: 100%;
                display: inline-block;
                padding-top: 10px;
                padding-bottom: 10px;
                position: relative;
                line-height: 1;
                color: #696969;
                &:before{
                    content:"";
                    width: 7px;
                    height: 1px;
                    background-color: #696969;
                    position: absolute;
                    top: 50%;
                    left: 0;
                    opacity: 0;
                    visibility: hidden;                            
                }
                &:hover{
                    padding-left: 20px;
                    color: @base-color;
                    &:before{
                        opacity: 1;
                        visibility: visible;

                    }
                }
            }

            strong{
                padding-left: 20px;
                color: @base-color;
                font-weight: 400;
                &:before{
                    opacity: 1;
                    visibility: visible;
                }
            }
            &.current{
                strong{
                    color: @base-color;
                }
            }
        }

    }
    .block-brand{
        .brand-list{
            li.item{
                display: inline-block;
                width: 100%;
                margin-bottom: 30px;
                a{
                    display: block;
                    width: 100%;
                    position: relative;
                    overflow: hidden;
                    &:after{
                        content:"";
                        display: inline-block;
                        width: 999px;
                        height: 1px;
                        background-color: #f4f4f4;
                        margin-left: 14px;
                        position: absolute;
                        bottom: 9px;
                        z-index: -1;
                    }
                    .count{
                        font-size: 15px;
                        position: absolute;
                        right: 0;
                        top: 0;
                        padding-left: 14px;
                        background-color: #fff;
                    }
                }

            }

        }
        .view-all{
            color: @base-color;
            text-align: right;
            &:hover{
                color: #696969;
            }
        }
    }
    .block-reorder{
        .subtitle{
            display: none;
        }
        .actions-toolbar{
            text-align: right;
            margin-top: 0;
            margin-bottom: 0;
        }
        .product-items{
            display:inline-block;
            width: 100%;

            .product-item{
                display: inline-flex;
                display: -webkit-inline-flex;
                margin-bottom: 5px;
                margin-top: 5px;
                width: 100%;
                .choice{
                    width: auto;
                    label{display: none;}
                    input{
                        margin-right: 10px;
                        margin-top: 4px;
                    }
                }
            }
        }
    }
}
.catalog-category-view{
    .main.col-md-9{
        .products-grid{
            .row-col-lg-custom5{
                .product-item{
                    .product-item-info{
                        .product-top{
                            .product-item-inner{
                                left: auto;
                                right: 10px;
                                top: 0;
                                .transform(none);
                                z-index: 100;
                                .product-item-actions{
                                    display: block;
                                }
                                .btn-addto{
                                    width: 40px;
                                    height: 40px;
                                    line-height: 40px;
                                }
                                .btn-addto,
                                form{
                                    margin-top: 0;
                                    margin-bottom: 0;
                                    display: block;

                                }
                            }
                        }
                    }
                }
            }
            .row-col-lg-2{
                .product-item{
                    .product-item-info{
                        .product-top{
                            .product-item-inner{
                                z-index: 100;
                                .btn-addto{
                                    width: 35px;
                                    height: 35px;
                                    line-height: 35px;
                                    font-size: 16px;
                                }
                            }
                        }
                    }
                }
            }
            @media(max-width: 1199px) and (min-width: 992px){
                .col-md-custom-5{
                    width: 33.333%;
                    &.row-sm-first{
                        clear: left;
                    }
                }
                .col-md-2{
                    width: 33.333%;
                    &.row-sm-first{
                        clear: left;
                    }
                }
            }
        }
    }
}
//CATEGORY LIST
.products-list{
    margin-bottom: 30px;
    .product-item{
        padding-top: 30px;
        padding-bottom: 44px;
        border-bottom: 1px solid #f4f4f4;
        .product-item-details{
            .label-box{
                position: relative;
                min-height: 15px;
                line-height: 1;
                .product-label{
                    right: auto;
                }
            }
            .product-item-name{
                h4{
                    font-size: 24px;
                    letter-spacing: 0.05em;
                    font-weight: 700;
                    margin-top: 14px;
                    margin-bottom: 15px;
                    &:after{
                        content:"";
                        display: block;
                        width: 32px;
                        height: 1px;
                        background-color: #e7e5e4;
                        margin-top: 20px;
                        .transition(all 0.4s ease 0s);
                    }
                }
            }
            .price-box{
                margin-bottom: 18px;
                .price{
                    font-size: 24px;
                    font-weight: 700;
                    font-style: italic;
                    letter-spacing: 0.1em;
                    line-height: 1;
                }
                .old-price{
                    .price{
                        font-size: 14px;
                        margin-right: 25px;
                        color: #ababab;
                    }
                }
            }
            .product-item-description{
                font-size: 15px;
                margin-bottom: 25px;
            }
            .product-item-inner{
                .product-item-actions{
                    display: inline-flex;
                    display: -webkit-inline-flex;
                    form{
                        margin-right: 10px;
                    }
                    .btn-addto{
                        width: 40px;
                        height: 40px;
                        line-height: 40px;
                        background: none;
                        border: 1px solid @base-color;
                        color: @base-color;
                        &:hover{
                            background-color: @base-color;
                            color: #fff;
                        }
                    }
                }
            }
            .product-reviews-summary{

                .rating-summary{
                    text-align: right;
                    p{
                        font-style: italic;
                        color:#ababab;
                        margin-top: 3px;
                        margin-bottom: 0;
                    }
                }

                &:not(.empty){
                    .reviews-actions{
                        display: none;
                    }

                }
            }
        }
        &:first-child{
            padding-top: 0;
        }
        &:hover{
            .product-item-details{
                .product-item-name{
                    h4{
                        &:after{
                            width: 50px;
                            background-color: @base-color;
                        }
                    }
                }
            }
        }
    }
}
//PRODUCT DETAILS
.fotorama__fullscreen-icon:focus:after, .fotorama__zoom-out:focus:after, .fotorama__zoom-in:focus:after, .fotorama__arr:focus:after, .fotorama__stage__shaft:focus:after, .fotorama__nav__frame--thumb:focus .fotorama__thumb:after, .fotorama__nav__frame--dot:focus .fotorama__dot:after{
    box-shadow: none !important;
}
.fotorama__caption,
.action-skip-wrapper{display: none}
.catalog-product-view .breadcrumbs>div{
    font-style: italic;
    ul>li{
        display: inline-block;
        +li:before{
            content: "/";
            display: inline-block;
        }
        strong{
            font-weight: 400;
            color: @base-color;
        }
    }
}
.product-details-view{
    margin-bottom: 45px;
    //product right
    .product-info-main{
        .product-top-info{
            width: 100%;
            .product-name,
            .product-reviews-summary{
                width: 50%;
                display: inline-block;
            }
            .product-reviews-summary{
                text-align:right;
                float: right;
                .rating-summary{
                    p{
                        margin-bottom: 0;
                    }
                }
                .reviews-actions{
                    a.view{
                        display: none;
                    }
                    a{
                        font-size: 14px;
                        color: #ababab;
                        font-style: italic;
                        display: block;
                        &:hover{
                            color: @base-color;
                        }
                    }
                }
            }
        }
        .box-label{
            position: relative;
            min-height: 27px;
            text-align: left;
            .product-label{
                left:0;
                right: auto;
                text-align: left;
            }
        }
        .product-name{
            .product-title{
                font-size: 24px;
                font-weight: 700;
                letter-spacing: 0.05em;
                color: #333;
                position: relative;
                margin-bottom: 10px;
                display: block;
                margin-top: 10px;
                &:after{
                    content:"";
                    display: block;
                    height: 1px;
                    width: 32px;
                    background-color: #ababab;
                    margin-top: 20px;
                }
            }
        }
        .price-box{
            margin-bottom: 25px;
            .price{
                font-size: 24px;
                letter-spacing: 0.1em;
                font-style: italic;
                font-weight: bold;
                color: #696969;
                line-height: 1;

            }
            .old-price{
                .price{
                    font-size: 14px;
                    color: #ababab;
                    margin-right: 20px;
                }
            }
        }
        .short_description{
            font-size: 15px;
            line-height: 26px;
            padding-bottom: 30px;
            p{
                margin: 0;
            }
        }
        .product-info-stock-sku{
            padding-top: 30px;
            padding-bottom: 30px;
            border-bottom: 1px solid #f4f4f4;
            line-height: 1;
            border-top: 1px solid #f4f4f4;
            ul{
                li{
                    display: inline-block;
                    width: 100%;
                    margin-bottom: 10px;
                    margin-top: 10px;
                    font-size: 15px;
                    &:last-child{
                        margin-bottom: 0;
                    }
                    &:first-child{
                        margin-top: 0;
                    }
                    .label{
                        color: #696969;
                        text-transform: uppercase;
                        font-size: 15px;
                        letter-spacing: 0.1em;
                        width: 155px;
                        font-weight: 700;
                        text-align: left;
                        padding: 0;
                        margin: 0;
                        display: inline-block;
                        float: left;
                    }
                    .value{
                        text-transform: capitalize;
                        line-height: 1;
                        display: inline-block;
                        width: calc(~'100% - 155px');
                        a{
                            color: @base-color;
                            &:hover{
                                color: #696969;
                            }
                        }
                    }
                }
            }
        }
        .product-add-form{
            padding-top: 20px;    
            .product-addto{
                display: inline-flex;
                display: -webkit-inline-flex;
                .btn-addto{
                    width: 40px;
                    height: 40px;
                    line-height: 40px;
                    border: 1px solid @base-color;
                    background-color: #fff;
                    color: @base-color;
                    margin-left: 10px;
                    &:hover,
                        &:focus,
                        &:active{
                        color: #fff;
                        background-color: @base-color;
                    }
                }
            }
        }
        .available{
            &.stock{display: none;}
        }
        .product-brand{
            margin-top: 20px;
            margin-bottom: 10px;
            display: inline-block;
            width: 100%;
            .brand-name{
                color: #696969;
                display: inline-block;
                font-size: 15px;
                font-weight: 700;
                letter-spacing: 0.1em;
                margin: 0;
                padding: 0;
                text-align: left;
                text-transform: uppercase;
                width: 155px;
                line-height: 1;
                vertical-align: top;
                a{
                    color: #696969;
                    &:hover{
                        color: @base-color;
                    }
                }
            }
            .brand-image{
                display: inline-block;

                img{
                    max-width: 70px;
                }
            }
        }
    }
    .product.media{
        .fotorama__thumb__arr--left {
            .fotorama__thumb--icon{
                background: none !important;
                width: 60px;
                padding: 0;
                text-align: center;
                &:before{
                    content: "\f3d5";
                    display: inline-block;
                    font-family: "Ionicons";
                    font-size: 34px;
                    color: #696969;
                }
            }
        }
        .fotorama__thumb__arr--right{
            .fotorama__thumb--icon{
                background: none !important;
                text-align: center;
                padding: 0;
                &:before{
                    content: "\f3d6";
                    display: inline-block;
                    font-family: "Ionicons";
                    font-size: 34px;
                    color: #696969;
                }
            }
        }
        .fotorama__thumb-border{
            border: 1px solid @base-color;
        }
    }
}
.box-tocart{
    .field.qty{
        display: inline-block;
        width: 100%;
        .control{
            max-width: 147px;
            display: inline-flex;
            display: -webkit-inline-flex;
            background-color:#f8f7f7;
            border-radius: 4px;
            float: left;
            margin-right: 30px;
            margin-bottom: 30px;
            .edit-qty{
                width: 37px;
                text-align: center;
                height: 40px;
                color: #ababab;
                font-size: 18px;
                line-height: 40px;
                cursor: pointer;
                &:hover{
                    color: @base-color;
                }
            }
            .input-text.qty{
                width: 73px;
                background-color: transparent;
                border: none;
                text-align: center;
                font-size: 15px;
                color: #696969;
                margin: 0;
            }
        }
        .available{           
            &.stock{
                display: block;
                font-size: 15px;
                font-style: italic;
                color: #ababab;
                line-height: 40px;
                [class*='ion-']{
                    color: @base-color;
                    font-size: 16px;
                    margin-right: 10px;
                }
            }
        }

    }
    .actions{
        display: inline-block;
        float: left;
    }

}
//PRODUCT GROUPED
.page-product-grouped{
    .product-details-view{
        table.grouped{
            margin-bottom: 40px;
            caption{
                font-size: 18px;
                font-weight: 700;
                color: #333;
                margin-bottom: 20px;
                margin-top: 10px;
                text-align: left;
                text-transform: uppercase;
            }
            & > thead{
                & > tr{
                    & > th{
                        padding: 10px;
                        text-align: center;
                        text-transform: uppercase;
                        color: #333;
                        font-weight: 700;
                    }
                }
            }
            &> tbody{
                & > tr{
                    & > td{
                        padding: 15px 10px;
                        text-align: center;
                        vertical-align: middle;   
                        h4.product-item-name{
                            color: #333;
                            font-weight: 700;
                            text-transform: capitalize;
                            margin: 0;
                        }
                        &.price{
                            .price-box{
                                margin-bottom:0;
                                .old-price{
                                    margin-right: 10px;
                                    .price{
                                        margin: 0;
                                    }
                                }
                            }
                        }
                        &.qty{
                            .input-text{
                                max-width: 60px;
                                margin: 0 auto;
                                text-align: center;
                            }
                        }
                    }
                }
            }
        }
    }
}
//PRODUCT TAB DETAILS
.product.info.detailed{
    display: inline-block;
    width: 100%;
    margin-top: 40px;
    .items{
        display: block;
        float: left;
        width: 100%;
        text-align: left;
        & > .item{
            &.title{
                font-size: 24px;
                font-style: italic;                
                letter-spacing: 0.05em;
                padding: 0 32px 10px 0;
                margin: 0 1px 0 0;
                display: inline-block;
                width: auto;
                float: none;
                a{
                    color: #ababab;
                    font-size: 24px;
                    margin: 0;
                    &:hover{
                        color: #333;
                    }
                }
                &.active{
                    a{
                        border-bottom: 1px solid @base-color;
                        color: #333;
                    }
                }
                &#tab-label-reviews{
                    a{
                        .counter{
                            &:before{
                                content:"(";
                                display: inline-block;
                            }
                            &:after{
                                content:")";
                                display: inline-block;
                            }
                        }
                    }
                }
            }
            &.content{
                display: block;
                width: 100%;
                float: right;
                margin-left: -100%;
                line-height: 26px;
                font-size: 15px;
                border-top: 1px solid #f4f4f4;
                box-shadow: none;
                background-color: #fff;
                padding: 65px 0 0;
                margin-top: 38px;
                text-align: left;
                &#reivews{
                    padding-left: 30px;
                    padding-right: 30px;
                }
            }
        }
    }
    .additional-attributes-wrapper{
        table{
            max-width: 400px;
            tbody{
                tr{
                    th,td{
                        width: 50%;
                        padding: 10px 20px;

                    }
                }
            }
        }
    }
}
.review-control-vote{
    margin-top: 10px;
    margin-bottom: 48px;
    overflow: hidden;
    &:before{
        content:"\f4b2""\f4b2""\f4b2""\f4b2""\f4b2";
        font-size: 30.75px;
        font-family: 'Ionicons';
        display: inline-block;
        color: #ababab;
        vertical-align: top;
        display: block;
        position: absolute;
        z-index: 1;
        letter-spacing: 10px;
        line-height: 30px;
        height: 30px;
    }
    input[type="radio"]{
        border: 0;
        clip: rect(0,0,0,0);
        height: 1px;
        margin: -1px;
        overflow: hidden;
        padding: 0;
        position: absolute;
        width: 1px;
        vertical-align: top;
    }
    label{
        cursor: pointer;
        display: block;
        position: absolute;
        &:before{
            font-size: 30px;
            height: 30px;
            line-height: 30px;
            letter-spacing: 10px;
            font-family: 'Ionicons';
            vertical-align: top;
            opacity: 0;
            color: #f5cc26;
        }
        span{
            border: 0;
            clip: rect(0,0,0,0);
            height: 1px;
            margin: -1px;
            overflow: hidden;
            padding: 0;
            position: absolute;
            width: 1px;
        }
        &:hover{
            &:before{
                opacity: 1;
            }
        }
    }
    input[type="radio"]:focus,
        input[type="radio"]:checked{
        & + label:before{
            opacity: 1;
        }
    }
    .rating-1{
        z-index: 6;
        &:before{
            content:"\f4b3";
        }
    }
    .rating-2{
        z-index: 5;
        &:before{
            content:"\f4b3""\f4b3";
        }
    }
    .rating-3{
        z-index: 4;
        &:before{
            content:"\f4b3""\f4b3""\f4b3";
        }
    }
    .rating-4{
        z-index: 3;
        &:before{
            content:"\f4b3""\f4b3""\f4b3""\f4b3";
        }
    }

    .rating-5{
        z-index: 2;
        &:before{
            content:"\f4b3""\f4b3""\f4b3""\f4b3""\f4b3";
        }
    }    

}
.review-add,
.review-list{
    display: block;
    width: 100%;
    margin: 0 auto;
    .block-title{
        h4{
            font-size: 18px;
            font-weight: 700;
            color:#333;
            margin-top: 0;
            margin-bottom: 27px;
            display: inline-block;
            letter-spacing: 0.05em;
        }
        .count{              
            color: @base-color;
        }
    }
}
.review-add{
    .review-form{
        input,
        textarea{
            margin-bottom: 10px;            
        }
        .field{
            margin-bottom: 20px;
        }
    }
    .review-field-rating{
        .label{
            color: #696969;
            font-size: 15px;
            font-style: italic;
            line-height: 45px;
            margin: 0 20px 0 0;
        }
    }
}
.review-list{
    margin-bottom: 55px;
    .review-items{
        .review-item{
            display: inline-flex;
            display: -webkit-inline-flex;
            width: 100%;
            padding-top: 25px;
            padding-bottom: 25px;
            border-bottom: 1px solid #f4f4f4;
            .review-left{
                width: 60px;
                span{
                    font-size: 35px;
                    width: 60px;
                    height: 60px;
                    line-height: 60px;
                    border: 1px solid #696969;
                    text-align: center;
                    border-radius: 50%;
                }
            }
            .review-right{
                text-align: left;
                padding-left: 40px;
                width: 100%;
                .meta-box{
                    margin-bottom: 10px;
                    .review-details-value,
                    .review-ratings{
                        display: inline-block;
                    }
                    .author{
                        color: #333;
                        text-transform: uppercase;

                    }
                    time{
                        font-style: italic;
                        color: #ababab;
                        margin-left: 20px;
                        &:before{
                            content:"";
                            display: inline-block;
                            width: 4px;
                            height: 4px;
                            background-color: #ababab;
                            border-radius: 50%;
                            margin-right: 20px;
                        }
                    }
                    .rating-summary{
                        .rating-result{
                            width: 80px;
                        }
                    }
                }
            }
        }
    }
    .review-toolbar{
        .limiter{
            display: none;
        }
    }
}
//product OPTION
.product-options-wrapper{
    .fieldset{
        & > .field{
            border-bottom: 1px solid #eee;
        }
    }
    .fieldset{
        .field{
            width: 100%;
            display: inline-block;
            margin-bottom: 20px;
            padding-bottom: 10px;

            .label{
                color: #333;
                font-size: 15px;
                margin-bottom: 10px;
                padding: 0;
                text-align: left;
                display: block;
            }
            .control{
                .nested{                       
                    .qty-holder{
                        display: inline-block;
                        width: 100%;
                        margin-top: 20px;
                        margin-bottom: 10px;
                        .label{
                            font-size: 12px;
                            color: #696969;
                            padding: 0;
                            margin-bottom: 5px;
                            display: inline-block;
                            &:after{
                                content:": ";
                            }

                        }
                        .control{
                            display: inline-block;
                            max-width: 50px;
                            margin-left: 10px;
                            input.qty{
                                max-width: 50px;
                                text-align: center;
                            }
                        }
                    }
                    &.options-list{
                        .field.choice{
                            display: inline-flex;
                            display: -webkit-inline-flex;
                            width: 100%;
                            vertical-align: middle;
                            margin: 0;
                            padding: 0;
                            input{
                                margin: 0;
                                margin-right: 20px;
                            }
                            .label{
                                font-size: 14px;

                            }
                        }
                    }
                }
            }
            select.multiselect{
                margin-bottom: 20px;

            }
            select{
                option{
                    color: #333;
                    font-weight: 700;
                }
            }
            &:not(.choice){
                border: none;
            }
        }
    }
}
//BUNDLE PRODUCT
.bundle-options-container{
    display: inline-block;
    width:100%;
    .product-add-form{
        display: none;
    }
    .bundle-options-wrapper,
    .block-bundle-summary{
        display: inline-block;
        float: left;
        width: 50%;        
    }
    .bundle-options-wrapper{
        padding-right: 15px;
        .fieldset-bundle-options{
            & > .title{
                font-size: 18px;
                color: #333;
                text-transform: uppercase;
                font-weight: 700;
            }

        }
    }
    .block-bundle-summary{
        padding-left: 15px;
        & > .title{
            font-size: 18px;
            color: #333;
            font-weight: 700;
            margin-bottom: 20px;
            border-bottom: 1px solid #e5e5e5;
            text-transform: uppercase;
        }
        .bundle-info{
            display: inline-flex;
            display: -webkit-inline-flex;
            width: 100%;
            margin-bottom: 20px;
            .product-image-container{
                margin-right: 20px;
            }
            .product-details{
                .product.name{
                    font-size: 18px;
                    color: #333;
                    margin-bottom: 10px;

                }
                p.available{
                    display: none;
                }
                .product-addto{
                    display: inline-block;
                    width: 100%;
                    margin-top: 30px;
                    a{
                        display: inline-block;
                        margin-right: 10px;
                    }
                    .btn-addto{
                        border:1px solid @base-color;
                        background-color: #fff;
                        color: @base-color;
                        &:hover{
                            background-color: @base-color;
                            color: #fff;
                        }
                    }
                }
                .price-box{
                    .price{
                        font-size: 24px;
                    }
                }
            }
        }
        .bundle-summary{
            &.empty{
                display: none;
            }
            .subtitle{
                font-size: 15px;
                text-transform: uppercase;
                color: #333;
                font-weight: 700;

            }
            .items{
                li{
                    .label{
                        color: #333;
                        font-size: 14px;
                        display: block;
                        text-align: left;
                        padding: 0;
                        margin-bottom: 5px;
                    }
                }
            }
        }
    }
}

body.page-layout-2columns-right,
body.page-layout-2columns-left{
    .product.info.detailed{
        .items{
            text-align: left;
            &.item.content{
                &#reviews{
                    padding-left: 30px;
                    padding-right: 30px;
                }
            }
        }
    }

}
body.page-layout-1column{
    .product.info.detailed{
        .items{
            text-align: center;
            &.item.content{
                &#reviews{
                    padding-left: 0;
                    padding-right: 0;
                }
                .product.description{
                    text-align: center;
                    margin: 0 auto;
                    max-width: 770px;
                }
            }
        }
    }
    #reviews{
        .review-add,
        .review-list{
            max-width: 770px;
            margin: 0 auto;            
        }
    }
    .upsell,
    .brand-related-products{
        .block-title{
            h3{
                text-align: center;
            }
        }
    }
}
.block{
    &.upsell,
    &.crosssell{
        display: inline-block;
        width: 100%;
        margin-top: 70px;
        .block-title{
            h3{
                font-size: 24px;
                font-weight: 700;
                color: #333;
                margin-top: 0;
                margin-bottom: 30px;
            }
        }
        .owl-carousel{
           
                    .owl-nav{
                        [class*="owl-"]{
                            top: -65px;
                            opacity: 1;
                            visibility: visible;							
                            right: 0;

                        }
                        .owl-prev{
                            right: 50px;
                            .transform(none);
                            left: auto;
                        }
                        .owl-next{
                            right: 0;
                            .transform(none);
                        }
                    }
                
                &:hover{
                    
                        .owl-nav{
                            .owl-prev,
                            .owl-next{
                                .transform(none);
                            }
                        }
                   
                }
           
        }
    }
    &.related{
        .block-actions{
            margin-bottom: 15px;
            button.select{
                background-color:#f4f1e3;
                color: #696969;
                &:hover,
                    &:focus,
                    &:active{
                    background-color: @base-color;
                    color: #fff;
                }
            }
        }
        .product-item-info{
            .meta-box{
                .box-label{
                    position: relative;
                    min-height: 15px;
                    .product-label{
                        text-align: left;
                    }
                }
            }
            .related.choice{
                input{
                    display: inline-block;
                    float: left;

                }
                .label{
                    color: #696969;
                    font-size: 13px;
                    font-style: italic;
                }
            }
        }
        .owl-carousel{
            
                .owl-nav{
                    [class*="owl-"]{
                        top: -45px;
                        width: 30px;
                        height: 30px;
                        left: auto;
                        right: auto;
                        line-height: 30px;
                        opacity: 1;
                        visibility: visible;
                    }
                    .owl-prev{
                        left: auto;
                        .transform(none);
                        right: 40px;
                    }
                    .owl-next{
                        right: 0;
                        .transform(none);
                    }
                }
            
            &:hover{
               
                    .owl-nav{
                        .owl-prev,
                        .owl-next{
                            .transform(none);
                        }
                    }
               
            }
        }
    }

}
.brand-related-products{
    margin-top: 50px;
    .block-title{
        h3{
            font-size: 24px;
            font-weight: 700;
            color: #333;
            margin-top: 0;
            margin-bottom:30px;
            letter-spacing: 0.05em;
        }

    }
    .owl-carousel{
           
                .owl-nav{
                    [class*="owl-"]{
                        top: -65px;
                        opacity: 1;
                        visibility: visible;							
                        right: 0;

                    }
                    .owl-prev{
                        right: 50px;
                        .transform(none);
                        left: auto;
                    }
                    .owl-next{
                        right: 0;
                        .transform(none);
                    }
                }
           
            &:hover{
                
                    .owl-nav{
                        .owl-prev,
                        .owl-next{
                            .transform(none);
                        }
                    }
                
            }
       
    }
}
//MY ACCOUNT
.account{
    .block-title{
        h3{
            font-size: 24px;
            font-weight: bold;
            letter-spacing: 0.05em;
            color: #333;
            margin-bottom: 30px;
            margin-top: 0;
            display: inline-block;
        }
        a.action{
            color: @base-color;
            margin-left: 10px;
            &:hover{
                color: #696969;
            }
        }
    }
    h4{
        color: #333;
        margin-bottom: 20px;
    }

    .field{
        margin-bottom: 15px;
        &.note{
            margin-bottom: 15px;
        }
        &.captcha{
            margin-bottom: 25px;
            .input-text{
                margin-bottom: 25px;
            }
            .nested{
                .captcha-reload{
                    margin-left: 15px;
                }
            }
        }
    }
    &.customer-account-index{
        .main{
            & > .block{
                margin-bottom: 30px;
                padding-bottom: 30px;
                border-bottom: 1px solid #f4f4f4;
            }
        }
        .block-reviews-dashboard{
            .block-title{
                h3{
                    display: inline-block;
                }
                a.action{
                    margin-right: 10px;
                }
            }
            .block-content{
                .items{
                    .item{
                        padding: 5px 0;
                        .product-name{
                            color: #333;
                            font-weight: 700;  
                            margin-top: 0;
                            margin-bottom: 10px;
                        }
                    }
                }
            }
        }
    }
    .actions-toolbar{
        margin-top: 25px;
        margin-bottom: 30px;
    }
    .table{
        & > thead{
            & > tr{
                & > th{
                    border-color: #f4f4f4;
                    border-bottom-width: 1px;
                    text-align: center;
                    color: #333;
                    text-transform: uppercase;
                    padding: 10px;
                }
            }
        }
        & > tbody{
            & > tr{
                & > td{
                    border-color: #f4f4f4;
                    padding: 20px 10px;
                    vertical-align: middle;
                    text-align: center;
                }
            }
        }
    }
    .toolbar{
        .pager{
            .toolbar-amount{
                text-align: left;
            }
            .limiter{
                display: none;
            }
        }
    }
    &.wishlist-index-index{
        .products-grid{
            .product-item{
                position: relative;
                .product-item-info{
                    position: relative;
                }
                .product-item-photo{
                    .img-thumbnail{
                        border: none;
                    }
                }
                .product-item-name{
                    font-weight: 700;
                    margin-top: 10px;
                    margin-bottom: 20px;
                }
                .product-item-inner{
                    padding-left: 10px;
                    padding-right: 10px;
                    display: block;
                    position: absolute;                  
                    border: 1px solid @base-color;
                    border-top: none;
                    box-shadow: 0 12px 12px 0 rgba(0, 0, 0, 0.176);
                    background-color:#fff;
                    left: -1px;
                    z-index:2;
                    right: 1px;
                    opacity: 0;
                    visibility: hidden;
                    .transition(all 0.4s ease 0s);
                    .transform(translateY(-10%));
                    padding-bottom: 30px;
                    .comment-box{
                        margin-top: 0;
                        margin-bottom: 10px;
                        text-align: center;
                        .label{display: none;}

                        textarea{
                            height: 50px;
                            width: 100%;
                        }
                    }

                    .box-tocart{
                        .fieldset{
                            width: 100%;
                            display: inline-flex;
                            display: -webkit-inline-flex;
                            text-align: center;
                            .qty,
                            .product-item-actions{
                                display: inline-block;
                                width: auto;
                            }
                            .qty{
                                margin: 0;
                                .control{
                                    margin: 0;
                                    margin-right: 10px;
                                }
                                .label{display: none;}
                                input-text.qty{
                                    width: 50px;
                                    margin: 0;
                                    margin-right: 10px;
                                }
                            }
                            .product-item-actions{
                                .actions-primary{
                                    float: left;
                                    display: inline-block;
                                }
                            }
                        }
                    }
                    .product-item-actions{
                        width: 100%;
                        text-align: center;
                        a{
                            display: inline-block;
                            color: @base-color;
                            margin: 0 5px;
                            &:hover{
                                color: #696969;
                            }
                        }
                    }
                }
                &:hover{
                    .product-item-inner{
                        opacity: 1;
                        visibility: visible;
                        .transform(translateY(0));
                    }
                }
            }
        }
        .actions-toolbar{
            button.action{
                margin-bottom: 15px;
            }
        }
    }
    .box-actions{
        margin-top: 25px;
    }
}
// SHOPPING CART
#shopping-cart-table{
    margin-bottom: 30px;
    thead{
        tr{
            border-radius: 4px;
            th{
                border: none;
                padding:24px 10px 21px;
                text-align: left;
                color: #333;
                font-size: 15px;
                letter-spacing: 0.05em;
                text-transform: uppercase;
                background-color:#f8f7f7;
                &.products{
                    padding-left: 30px;
                }
                &.qty{
                    text-align: center;
                }
            }

        }
    }
    tbody{
        & + tbody{
            border: none;
        }
        tr{
            td{
                padding: 30px 10px;
                border-top: none;
                border-bottom: 1px solid #f4f4f4;
                vertical-align: middle;
                margin: 0;
                text-align: left;
                &.item{
                    .product-item-photo{
                        display: inline-block;
                        margin-right: 30px;
                        max-width: 120px;
                        .product-image-photo{
                            border-radius: none;
                            padding: 0;
                            margin: 0;
                            border: 1px solid #f4f1e3;
                        }
                    }
                    .product-item-details{
                        width: calc(~'100% - 160px');
                        display: inline-block;
                        vertical-align: middle;
                        .product-item-name{
                            font-size: 18px;
                            color: #333;
                            letter-spacing: 0.05em;
                            margin-bottom: 20px;
                            margin-top: 20px;
                            font-weight: bold;
                        }
                    }
                }
                &.price{
                    .cart-price{
                        .price{
                            font-size: 15px;
                        }
                    }
                }
                &.qty{
                    text-align: center;
                    .field.qty{
                        .label{display: none;}
                        .control.qty{
                            display: inline-flex;
                            display: -webkit-inline-flex;
                            text-align: center;
                            vertical-align: middle;
                            background-color: #f8f7f7;
                            border-radius: 2px;
                            .edit-qty{
                                width: 38px;
                                display: inline-block;
                                cursor: pointer;
                                line-height: 40px;
                            }
                            .input-text{								
                                text-align: center;
                                margin: 0 auto;
                                background-color: #f8f7f7;
                                color: #333;
                                border-color:transparent;
                                border-radius: none;
                                box-shadow: none;
                                font-weight: 700;
                                width: 31px;
                                padding: 0;
                                line-height: 40px;
                            }
                        }


                    }
                }
                &.subtotal{
                    .cart-price{
                        .price{
                            font-size: 18px;
                            font-weight: bold;
                        }
                    }
                }
                .actions-toolbar{
                    text-align: center;
                    & > .action-edit{
                        display: none;

                    }
                    & > .action-delete{
                        width: 32px;
                        height: 32px;
                        border-radius: 50%;
                        text-align: center;
                        margin: 10px auto;
                        background-color: #f8f7f7;
                        font-size: 12px;
                        color: #696969;
                        display: block;
                        line-height: 32px;
                        float: right;
                        &:hover{
                            color: #fff;
                            background-color: @base-color;
                        }
                    }
                    .gift-options-cart-item{
                        text-align: right;
                        display: inline-block;
                        width: 100%;
                        .gift-content{
                            display: none;
                            &._active{
                                display: block;
                            }
                            .gift-options-content{
                                .field{
                                    text-align: left;
                                    .label{
                                        text-align: left;
                                    }
                                }
                            }
                            .actions-toolbar{
                                button{
                                    margin-bottom: 10px;
                                    margin-top: 10px;
                                    margin-left: 10px;
                                    float: right;
                                }

                            }
                        }
                        .action-gift{
                            color: @base-color;
                            &:after{
                                content: "\f107";
                                font-family: 'FontAwesome';
                                font-size: 14px;
                                display: inline-block;
                                margin-left: 5px;
                                color: #696969;
                            }
                            &._active{
                                &:after{
                                    content:"\f106";
                                }
                            }
                        }

                    }
                }
            }
        }
    }
}
.cart-container{
    padding-bottom: 100px;
    border-bottom: 1px solid #f4f4f4;
    .cart.actions{
        border-bottom: 1px solid #f4f4f4;
        display: inline-block;
        width: 100%;
        button,.btn{
            margin-bottom: 30px;
        }

        button.clear{
            &.btn{
                background-color: transparent;
                font-weight: 700;
                color: #ababab;
                max-height: 40px;
                padding: 0 23px;
                line-height: 34px;
                [class*='ion-ios-']{
                    font-size: 18px;
                    color: @base-color;
                    margin-right: 10px;
                }
                &:hover,
                    &:focus,
                    &.active{
                    color: @base-color;
                }
            }
        }
    }
    .shopping-cart-bottom{
        margin-top: 35px;
        .summary.title{display: none;}
        .block-title{
            h3{
                font-size: 20px;
                font-weight: 700;
                color: #333;
                margin-top: 0;
                margin-bottom: 20px;
            }
        }
        .discount,
        .shipping{
            max-width: 570px;
            .block-title{
                h3{
                    span{
                        &:after{
                            content: "\f123";
                            font-family: 'Ionicons';
                            display: inline-block;
                            font-size: inherit;
                            margin-left: 10px;
                            font-size: 14px;
                        }
                    }
                }

            }
            &.active{
                .block-title{
                    h3{
                        span{
                            &:after{
                                content: "\f126";
                            }
                        }
                    }
                }
            }
        }
        .discount{
            margin-bottom: 30px;
            .content{
                .coupon{
                    position: relative;
                    display: inline-block;
                    width: 100%;
                    label{
                        font-weight: 400;
                        margin-bottom: 18px;
                        padding-right: 30px;
                    }
                    .input-text{
                        padding-right: 137px;  
                        font-size: 15px;
                        border-radius: 4px;
                        overflow: hidden;
                    }
                    .control{
                        position: relative;
                    }
                    .actions-toolbar{
                        position: absolute;
                        right: 0;
                        top: 0;
                        button.action{
                            padding: 0 16.5px;
                            text-align: center;
                            background-color: #f4f1e3;
                            height: 40px;
                            line-height: 40px;
                            margin: 0;
                            border-radius: 2px;
                            letter-spacing: 0.1em;
                            &:hover,
                                &:focus,
                                &:active{
                                background-color: @base-color;
                                color: #fff;
                            }
                        }
                    }
                }
            }
        }
        .shipping{
            .content{
                .fieldset{
                    & > legend,
                    br{
                        display: none;
                    }
                    .note{
                        margin-bottom: 20px;
                    }
                    .field:not(.note){
                        margin-bottom: 20px;
                        .label{
                            text-align: left;
                            margin-bottom: 10px;
                            color: #333;
                            font-size: 14px;
                        }
                    }
                }
                #co-shipping-method-form{
                    .items{
                        display: inline-block;
                        margin: 15px 0;
                        width: 100%;
                        .item-title{
                            font-size: 15px;
                            font-weight: 700;
                            margin-bottom: 15px;
                            color: #333;
                        }
                        .item-options{
                            .field{
                                &.choice{
                                    display: inline-flex;
                                    width: 100%;
                                    margin-bottom: 10px;
                                    input{
                                        margin: 0;
                                        margin-right: 20px;
                                    }
                                }
                            }
                        }
                        &:first-child{
                            margin-top: 0;
                        }
                        &:last-child{
                            margin-bottom: 0;
                        }
                    }
                }
            }
        }
        .cart-totals{
            margin-bottom: 35px;
            text-align: right;
            .content{
                table.totals{
                    caption{display: none;}
                    tbody{
                        tr{
                            th{
                                &.mark{background: none;}
                                text-align: right;
                                border: none;
                                font-weight: 700;
                                font-size: 15px;
                                color: #333;
                                padding: 10px 0;   
                                .label{
                                    text-align: right;
                                }
                            }
                            td{
                                text-align: right;
                                border: none;
                                font-size: 16px;
                                color: #333;
                                padding: 10px 0;
                                .price{
                                    font-style: italic;
                                }
                            }
                            &.sub{
                                th{
                                    font-size: 15px;
                                    font-weight: bold;                                   
                                    letter-spacing: 0.1em;
                                    text-transform: uppercase; 
                                    line-height: 1.6;
                                    &:after{
                                        content:":";
                                        display: inline-block;
                                    }
                                }
                                td{
                                    .price{
                                        font-size: 20px;
                                        color: @base-color;  
                                        font-weight: bold;
                                        font-style: italic;
                                        line-height: 1;
                                    }
                                }
                            }
                            &.grand{
                                th{
                                    strong{
                                        font-size: 18px;
                                        text-transform: uppercase;
                                        letter-spacing: 0.1em;
                                        padding: 15px 0;
                                        line-height: 1.6;
                                        &:after{
                                            content:":";
                                            display: inline-block;
                                        }
                                    }
                                }
                                td{

                                    .price{
                                        font-size: 24px;
                                        color: @base-color;
                                        font-weight: bold;
                                        font-style: italic;
                                        line-height: 1;
                                    }
                                }
                            }
                        }
                    }
                }
            }
        }
        .checkout-methods-items{
            text-align: right;
            .multicheckout{
                margin-top: 20px;
                color: @base-color;
                display: block;
                &:hover{
                    color: #696969;
                }
            }
        }

    }
}


//ONEPAGE CHECKOUT
.checkout-index-index{
    .modal-popup{
        .modal-inner-wrap{
            padding: 20px 0;
            max-width: 800px;
            h1{
                color: #333;
                font-weight: 700;
                text-transform: uppercase;
            }
            .modal-content{
                .fieldset{
                    .field{
                        display: inline-block;
                        width: 100%;
                        margin-bottom: 20px;
                        .label{
                            text-transform: uppercase;
                            font-size: 15px;
                            font-weight: 700;
                            margin-bottom: 18px;
                            display: block;
                            border: none;
                        }
                        &.choice{
                            display: inline-flex;
                        }
                    }
                }
            }
        }
        .modal-footer{
            padding-top: 0;
            button{
                padding: 12px 23px;
                text-transform: uppercase;
                font-weight: 700;
                letter-spacing: 0.05em;
                background-color: transparent;
                border: 1px solid @base-color;
                border-radius: 22.5px;
                max-height: 40px;
                margin: 0;
                margin-right: 10px;  
                line-height: 1;
                &:hover,
                    &:active{
                    background-color: @base-color;
                    color: #fff;
                }
                &.primary{
                    background-color: @base-color;
                    color: #fff;
                    &:hover{
                        background-color: #696969;
                        border-color: #696969;
                    }
                }
            }
        }
    }
    .page-header{
        margin: 0;
        padding: 0;
        border: none;
    }
    .header.content{        
        padding-left: 15px;
        padding-right: 15px;
        padding-top: 30px;
        padding-bottom: 30px;
        width: 100%;
        margin: 0 auto;
    }
    @media(min-width: 768px){
        .header.content{
            width: 750px;
        }
        .authentication-wrapper{
            width: 33.333333%;
            text-align: right;
        }
    }
    @media(min-width: 992px){
        .header.content{
            width: 970px;
        }
    }
    @media(min-width: 1200px){
        .header.content{
            width: 1200px;
        }
    }
    .authentication-wrapper{
        float: right;

        max-width: 470px;
        position: relative;
        z-index: 1;
        .action-auth-toggle{
            padding: 0;
            background: none;
            border: none;
            box-shadow: none;
            margin: 0;
            color: @base-color;
            &:hover,
                &:active,
                &:focus{
                background: none;
                border: none;
                color: #333;                
            }

        }
        .authentication-dropdown{
            background-color: #fff;
            border: 1px solid #f4f4f4;
            .transform(scale(1,0));
            transform-origin: 0 0;
            -webkit-transform-origin: 0 0;
            -moz-transform-origin: 0 0;
            .transition(all 0.1 linear 0s);
            position: absolute;
            text-align: left;
            top: 100%;
            visibility: hidden;
            width: 100%;
            opacity: 0;
            &._show{
                z-index: 100;
                .transform(scale(1,1));
                visibility: visible;
                opacity: 1;
            }
            .modal-inner-wrap{
                padding: 25px;
            }
            .modal-header{
                border: none;
                padding: 0;
                min-height: auto;
            }
            .action-close{
                background: none;
                border: none;
                box-shadow: none;
                padding: 0;
                margin: 25px;
                font-weight: 400;
                display: inline-block;
                position: absolute;
                right: 0;
                top: 0;
                z-index: 1;
                color: #333;
                &:before{
                    content:"\f129";
                    display: inline-block;
                    font-family: "Ionicons";
                    font-size: 16px;
                    margin: 0;
                    vertical-align: top;
                    overflow: hidden;
                    text-align: center;
                }
                & > span{
                    border: 0;
                    clip: rect(0,0,0,0);
                    height: 1px;
                    margin: -1px;
                    overflow: hidden;
                    position: absolute;
                    width: 1px;
                    padding: 0;
                }
                &:hover{
                    color: @base-color;
                }
            }
            .modal-content{
                border-radius: none;
                box-shadow: none;
                border: none;

            }

        }
    }
    .block-authentication{
        .block-title{
            font-size: 24px;
            border-bottom: none;
            margin-bottom: 25px;
            text-transform: uppercase;
            color: #333;
            strong{
                font-weight: 400;
            }
        }
        .block-content{
            .fieldset{
                margin-bottom: 20px;
                padding: 0;
                border: none;
                & > .field{
                    margin-bottom: 18px;
                    width: 100%;
                    display: inline-block;
                }
            }
            .field{
                .label{
                    font-size: 15px;
                    text-transform: uppercase;
                    margin-bottom: 18px;
                    letter-spacing: 0.05em;
                    font-weight: 400;
                    text-align: left;
                }
            }
            .control.captcha-image{
                margin-top: 10px;
                button{
                    margin-top: 10px;
                }
            }
        }
        .actions-toolbar{
            margin-bottom: 5px;
            & > .primary{
                display: inline;
                float: right;
                margin-right: 0;

            }
            & > .secondary{
                float: left;
                text-align: left;
            }
        }
    }
}
.checkout-container{
    button{
        padding: 12px 23px;
        border-radius: 23.5px;
        text-transform: uppercase;
        font-size: 14px;
        line-height: 1;
        letter-spacing: 0.05em;
        .transition(all 0.4s ease 0s);
        background-color: #fff;
        color: @base-color;
        border: 1px solid @base-color;
        font-weight: 700;
        &:hover,
            &:active,
            &:focus{
            background-color: @base-color;
            color: #fff;
        }
        &.primary{
            background-color: @base-color;
            color: #fff;
            border: 1px solid @base-color;
            &:hover,
                &:active,
                &:focus{
                color:#fff;
                background-color: #696969;
                border-color: #696969;
            }
        }
    }
    .opc-wrapper{
        display: inline-block;
        float: left;
        width: 60%;
        padding-right: 30px;  
        order: 1;
        .step-title{
            font-size: 24px;
            font-weight: 700;
            color: #333;
            margin-top: 0;
            margin-bottom: 45px;
            letter-spacing: 0.05em;
        }
        .step-content{
            margin: 0 0 40px;

            .fieldset{
                margin-bottom: 20px;
                .legend{display: none;}
                .field{
                    display: inline-block;
                    width: 100%;
                    margin-bottom: 20px;
                }
                .label{
                    font-weight: 400;
                    text-transform: uppercase;
                    font-size: 15px;
                    margin-bottom: 0;
                    display: block;
                    letter-spacing: 0.05em;
                    span{
                        margin-bottom: 18px;
                        display: inline-block;
                    }
                }
            }
            fieldset.field{
                margin-bottom: 0;
            }
            .form-login{
                .actions-toolbar{
                    .primary{
                        float: right;
                    }
                }
            }
            .opc-payment-additional{
                &.discount-code{

                    .field{
                        margin-bottom: 10px;
                    }
                    .action-toggle{
                        font-size: 16px;
                        color: #333;
                        &:after{
                            content:"\f123";
                            font-size: 16px;
                            display: inline-block;
                            font-family: "Ionicons";
                            margin-left: 5px;
                        }
                    }
                    .form-discount{
                        position: relative;                            
                        .label{
                            display: none;
                        }
                        .actions-toolbar{
                            position: absolute;
                            top: 0;
                            right: 0;
                            button{
                                padding:0 23px;
                                height: 40px;
                                line-height: 40px;
                                background-color: #f4f1e3;
                                color: #696969;
                                border: 0;
                                border-radius: 2px;
                                &:hover{
                                    background-color: @base-color;
                                    color: #fff;
                                }
                            }
                        }
                    }
                }
            }
            .opc-payment{
                .payment-methods{
                    .payment-method{
                        margin-bottom: 20px;
                        padding-bottom: 20px;
                        border-bottom: 1px solid #f4f4f4;
                        display: inline-block;
                        width: 100%;
                        .payment-method-title{
                            display: inline-flex;
                            margin-bottom: 10px;
                            input{
                                margin: 0;
                                margin-right: 10px;
                            }
                            .label{
                                font-weight: 700;
                                color: #333;
                                line-height: 1.3;
                                span{
                                    margin-bottom: 0;
                                }
                            }
                        }
                        .payment-method-content{
                            display: none;
                            & > .field.choice{
                                margin-bottom: 10px;
                            }
                            .actions-toolbar{
                                .primary{
                                    float: right;
                                }
                            }
                        }
                        &._active{
                            .payment-method-content{
                                display: inline-block;
                            }
                        }
                    }
                }
            }
        }
        .opc{
            max-width: 570px;                
        }

        .shipping-address-item{
            width: 33.3333%;
            display: inline-block;
            font-size: 14px;
            margin: 0 0 20px;
            padding: 20px 35px 20px 20px;
            position: relative;
            vertical-align: top;
            border: 2px solid transparent;
            &:after{
                background-color: @base-color;
                content:"\f3fd";
                font-family: 'Ionicons';
                height: 27px;
                width: 29px;
                font-size: 32px;
                line-height: 21px;
                padding-top: 2px;
                position: absolute;
                right: 0;
                text-align: center;
                top: 0;
                color: #fff;
                visibility: hidden;
                .transition(all 0.3s ease 0s);
            }
            .edit-address-link{
                padding: 9px 20px;
            }
            .action-select-shipping-item{
                padding: 0;
                border: none;
                background: none !important;
                color: @base-color;
                margin: 10px 0;
                text-align: left;     
                text-transform: none;
                letter-spacing: 0;
            }
            &.selected-item{
                border-color: @base-color;
                &:after{
                    visibility: visible;
                }
                .action-select-shipping-item{
                    visibility: hidden;
                }
            }
        }
    }
    .opc-sidebar{
        display: inline-block;
        float: left;
        width: 40%;
    }
    .table-checkout-shipping-method {
        thead{
            th{
                display: none;
            }
        }
        tbody{
            td{
                padding-bottom: 20px;
                padding-top: 20px;
                border-top: 1px solid #f4f4f4;
            }

        }
    }
    .opc-sidebar{
        .modal-header{
            display: none;
        }
        .modal-content{
            box-shadow: none;
            border: none;
            border-radius: 2px;
            background-color: #f8f7f7;
            padding: 40px;
        }
        [class*="opc-block-"]{
            .block{
                padding: 20px 0 25px;
                border-bottom: 1px solid #eee;
            }
        }
        .opc-block-summary{
            & > .title{
                font-weight: 900;
                font-size: 24px;
                margin: 10px auto 0;
                text-align: center;
                padding-bottom: 30px;
                border-bottom: 1px solid #eee;
                width: 100%;
                display: inline-block;
                line-height: 1;
                text-transform: uppercase;
                color: #333;
                letter-spacing: 0.1em;
            }
        }
        .items-in-cart{
            & > .title{
                strong{
                    color: #333;
                    font-weight: 700;
                    letter-spacing: 0.05em;
                    margin: 0;
                    margin-bottom: 7px;
                }
            }
            .minicart-items{
                display: block;
                .minicart-items-wrapper{
                    max-height:370xp;
                    overflow-y: auto;
                }
                .product-item{
                    display: inline-block;
                    width: 100%;
                    margin: 3px 0;
                    .product-image-container{
                        display: none;
                    }
                    .product-item-details{
                        display: inline-block;
                        width:100%;
                        .product-item-name-block{
                            display: inline-flex;
                            .product-item-name{font-weight: 400;}
                        }
                        .details-qty{
                            margin-left: 3px;
                            font-weight: 700;
                            display: inline-flex;
                            color: #333;
                            .label{
                                margin: 0;
                                line-height: 1.8;
                                color: #333;
                            }
                        }
                        .subtotal{
                            display: inline-block;
                            float: right;
                            text-align: right;
                            .cart-price{
                                .price{
                                    font-weight: 700;
                                    color: #ababab;
                                    font-style: italic;
                                }
                            }
                        }
                    }
                }
            }
        }
        .table-totals{
            caption{display: none;}
            margin-bottom: 0;
            tbody{
                tr{
                    border-bottom: 1px solid #eee !important;
                    th,
                    td{
                        background: none !important;
                    }
                    th{
                        text-align: left;
                        font-size: 14px;
                        font-weight: 700;
                        color: #333;
                        padding: 18px 0;
                        line-height: 1;
                        border: none;
                    }
                    td{
                        padding: 18px 0;
                        border: none;
                        text-align: right;
                        line-height: 1;
                        .price{
                            color: #ababab;
                            font-weight: 700;
                            font-style: italic;
                            font-size: 14px;
                        }
                    }
                    &.sub{
                        td{
                            .price{
                                color: #333;
                            }
                        }
                    }
                    &.grand{
                        td{
                            .price{
                                color: @base-color;
                                font-size: 24px;
                            }
                        }
                    }
                }
            }                
        }
        .opc-block-shipping-information{
            padding: 20px 0 0;
            .shipping-information{
                .shipping-information-title{
                    font-size: 14px;
                    font-weight: 700;
                    color: #333;
                    margin-bottom: 18px;
                    text-transform: uppercase;
                    .action{
                        padding: 0;
                        margin: 0;
                        background: none !important;
                        border: none;
                        float: right;
                        &:before{
                            content:"\f2bf";
                            font-family: "Ionicons";
                            display: inline-block;
                            font-size: 18px;
                            color: @base-color;
                            text-align: right;
                            float: right;
                        }
                        span{
                            display: none;
                        }
                    }
                }
                [class*="ship-"]{
                    margin-bottom: 10px;
                }
            }
        }
    }
    .payment-method-billing-address{
        .fieldset{
            .field-select-billing{
                .label{
                    text-transform: none;
                    font-size: 14px;
                }
            }
            .actions-toolbar{
                .primary{
                    float: right;
                }
                .action-cancel{
                    border: none;
                    text-transform: none;
                    color: #696969;
                    &:hover,
                        &:active,
                        &:focus{
                        background: none;
                        color: @base-color;
                    }
                }

            }
        }
    }
}

.opc-progress-bar{
    margin: 0 0 40px ;
    display: block;
    font-size: 0;
    counter-reset: i;
    .opc-progress-bar-item{
        margin: 0 0 10px;
        width: 185px;
        display: inline-block;
        position:relative;
        text-align: center;
        vertical-align: top;
        &:before{
            background-color: #f8f7f7;
            top: 19px;
            // .transition(background 0.3s);
            content:"";
            height: 7px;
            left: 0;
            position: absolute;
            width: 100%;

        }
        &:first-child{
            &:before{
                border-radius: 6px 0 0 6px;
            }
        }
        &:last-child{
            &:before{
                border-radius: 0 6px 6px 0;
            }
        }
        & > span{
            display: inline-block;
            padding-top: 45px;
            width: 100%;
            word-wrap: break-word;
            color: #ccc;
            font-size: 18px;
            &:before{
                height: 38px;
                margin-left: -19px;
                width: 38px;
                content:"";
                position: absolute;
                top: 0;
                left: 50%;
                border-radius: 50%;
                background-color: #f8f7f7;
            }
            &:after{
                background: #fff;
                height: 26px;
                width: 26px;
                top: 6px;
                margin-left: -13px;
                content:counter(i, decimal);
                counter-increment: i;
                color: #333;
                font-weight: 600;
                font-size: 16px;
                border-radius: 50%;
                left: 50%;
                position: absolute;
                line-height: 26px;
            }
        }
        &._active,
        &._complete{
            &:before{
                background-color: @base-color;
            }
            & > span{
                color: #333;
                &:after{
                    font-family: "Ionicons";
                    content:"\f121";
                    display: inline-block;
                }
                &:before{
                    background-color: @base-color;
                }
            }
        }
    }
}
//MULTISHIPPING CHECKOUT
[class*="multishipping-checkout-"]{
    .page-main{
        .form-address-edit{
            .fieldset{
                margin-top: 0;
                .field{
                    margin-bottom: 20px;
                }
                .block-title{
                    .title{
                        color: #333;
                        font-weight: 700;
                        margin-bottom: 30px;
                        margin-top: 0;
                    }
                }
            }
        }
        .multicheckout.address{
            .title{
                font-size: 16px;
                color: #333;
                text-transform: uppercase;

            }
            #multiship-addresses-table{
                caption{display: none;}
                thead{
                    tr{
                        th{
                            text-align: left;
                            padding: 15px 10px;
                            border-bottom: none;
                            background-color: #f8f7f7;
                            color: #333;
                            font-weight: 700;
                            text-transform: uppercase;
                            vertical-align: middle;
                            &.qty{
                                text-align: center;
                            }
                            &.product{
                                padding-left: 20px;
                            }
                        }
                    }
                }
                tbody{
                    tr{
                        td{
                            border-top: none;
                            border-bottom: 1px solid #f4f4f4;
                            vertical-align: middle;
                            padding: 30px 10px;
                            &.qty{
                                .field{
                                    .label{display: none;}
                                    .control{
                                        max-width: 60px;
                                        text-align: center;
                                        margin: 0 auto;
                                        input{
                                            padding: 0;
                                            height: 40px;
                                            line-height: 40px;
                                            margin: 0;
                                            text-align: center;
                                        }
                                    }
                                }
                            }
                            &.address{
                                .label{
                                    display: none;
                                }
                                .control{
                                    select{
                                        margin: 0;
                                    }
                                }
                            }
                            &.actions{
                                .action{
                                    text-align: center;
                                    position:relative;
                                    &:before{
                                        content:"\f253";
                                        font-family: "Ionicons";
                                        display: inline-block;
                                        font-size: 16px;
                                        color: #333;
                                    }
                                    & > span{
                                        clip: rect(0,0,0,0);
                                        width: 1px;
                                        height: 1px;
                                        overflow: hidden;
                                        margin: -1px;
                                        position: absolute;
                                    }
                                }
                            }
                        }
                    }
                }
            }
            .actions-toolbar{
                .primary{
                    display: inline-block;

                    margin-bottom: 10px;
                }
                .secondary{
                    .action{
                        margin-right: 20px;
                        &.back{
                            float: left;
                            width: 100%;
                        }
                    }
                }
            }
        }
        .multicheckout.shipping{
            .block-shipping{
                .block-title{
                    font-size: 24px;
                    color: #333;
                    margin-bottom: 30px;
                    padding-bottom: 20px;
                    border-bottom: 1px solid #f4f4f4;
                }
                .block-content{
                    margin: 0 -15px;
                    .box{
                        display: inline-block;
                        width: 33.3333%;
                        padding: 0 15px;
                        float: left;
                        .box-title{
                            font-size: 16px;
                            text-transform: uppercase;
                            margin-bottom: 20px;
                            color: #333;
                            display: block;
                            .action{
                                color: @base-color;
                                text-transform: none;
                                float: right;

                            }
                        }
                        .box-content{
                            br{display: none;}
                            legend{
                                font-size: 14px;

                                margin-bottom: 10px;
                                margin-top: 10px;
                                padding-bottom: 5px;
                                border-bottom: 1px solid #f4f4f4;

                            }
                            .item-title{
                                color: #333;
                            }
                            .item-content{
                                margin-bottom: 20px;
                            }
                        }
                        .gift-message{
                            .order-options{
                                .items{
                                    display: inline-block;
                                    width: 100%;
                                    .item{
                                        display: inline-block;
                                        width: 100%;
                                        margin: 10px 0;
                                        .product{
                                            display: inline-block;
                                            width:100%;
                                            .number{
                                                color: #333;
                                                display: inline-block;
                                                width: 100%;
                                                margin-bottom: 10px;
                                                .photo,
                                                .product-name{
                                                    display: inline-block;

                                                }
                                                .photo.container{
                                                    width: auto;
                                                    padding: 0;
                                                    float: left;
                                                    margin-right: 15px;

                                                }
                                                .product-name{
                                                    color: #333;

                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }

                }
            }
        }
    }
}

// ADD CUSTOM FONT ICON FARM
@font-face {
    font-family: 'OrganieFarm';
    src:  url('../fonts/OrganieFarm.eot?5pu6sd');
    src:  url('../fonts/OrganieFarm.eot?5pu6sd#iefix') format('embedded-opentype'),
        url('../fonts/OrganieFarm.ttf?5pu6sd') format('truetype'),
        url('../fonts/OrganieFarm.woff?5pu6sd') format('woff'),
        url('../fonts/OrganieFarm.svg?5pu6sd#OrganieFarm') format('svg');
    font-weight: normal;
    font-style: normal;
}

[class^="farm icon-"], [class*=" farm icon-"] {
    /* use !important to prevent issues with browser extensions that change fonts */
    font-family: 'OrganieFarm' !important;
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;

    /* Better Font Rendering =========== */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.farm.icon-apple:before {
    content: "\e900";
}
.farm.icon-banana:before {
    content: "\e901";
}
.farm.icon-basket:before {
    content: "\e902";
}
.farm.icon-blender:before {
    content: "\e903";
}
.farm.icon-bread:before {
    content: "\e904";
}
.farm.icon-broccoli:before {
    content: "\e905";
}
.farm.icon-carrot:before {
    content: "\e906";
}
.farm.icon-coconut:before {
    content: "\e907";
}
.farm.icon-corn:before {
    content: "\e908";
}
.farm.icon-cucumber:before {
    content: "\e909";
}
.farm.icon-delivery:before {
    content: "\e90a";
}
.farm.icon-droplets:before {
    content: "\e90b";
}
.farm.icon-eco-bag:before {
    content: "\e90c";
}
.farm.icon-egg:before {
    content: "\e90d";
}
.farm.icon-egg-plant:before {
    content: "\e90e";
}
.farm.icon-grain:before {
    content: "\e90f";
}
.farm.icon-grape:before {
    content: "\e910";
}
.farm.icon-home:before {
    content: "\e911";
}
.farm.icon-honey:before {
    content: "\e912";
}
.farm.icon-jam:before {
    content: "\e913";
}
.farm.icon-leaf:before {
    content: "\e914";
}
.farm.icon-lemon:before {
    content: "\e915";
}
.farm.icon-lettuce:before {
    content: "\e916";
}
.farm.icon-map:before {
    content: "\e917";
}
.farm.icon-milk:before {
    content: "\e918";
}
.farm.icon-organie:before {
    content: "\e919";
}
.farm.icon-smoothie:before {
    content: "\e91a";
}
.farm.icon-tomato:before {
    content: "\e91b";
}
.farm.icon-tractor:before {
    content: "\e91c";
}
// ADD CUSTOM FONT PLANT
@font-face {
    font-family: 'OrganiePlant';
    src:  url('../fonts/OrganiePlant.eot?5kccg4');
    src:  url('../fonts/OrganiePlant.eot?5kccg4#iefix') format('embedded-opentype'),
        url('../fonts/OrganiePlant.ttf?5kccg4') format('truetype'),
        url('../fonts/OrganiePlant.woff?5kccg4') format('woff'),
        url('../fonts/OrganiePlant.svg?5kccg4#OrganiePlant') format('svg');
    font-weight: normal;
    font-style: normal;
}
.plant[class*='icon-'] {
    /* use !important to prevent issues with browser extensions that change fonts */
    font-family: 'OrganiePlant' !important;
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;

    /* Better Font Rendering =========== */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.icon-plant:before {
    content: "\e900";
}
.icon-plant-1:before {
    content: "\e901";
}
.icon-plant-2:before {
    content: "\e902";
}
.icon-plant-3:before {
    content: "\e903";
}
.icon-plant-4:before {
    content: "\e904";
}
.icon-plant-5:before {
    content: "\e905";
}

//END CUSTOM FONT ICON
//DEAL BLOCK
.custom-deal-single{
    position: relative;
    min-height: 610px;
    .title-block{
        background: none;
        left: 50%;
        margin: 0;
        margin-left: 5px;
        padding: 0;
        position: absolute;
        text-align: left;
        top: 120px;
        width: auto;
        h2{
            line-height: 1;
        }
    }
}
.deal-timer{
    display: inline-block;
    width: 100%;
    margin-bottom: 20px;
    margin-top: 0;
    .countdown{
        display: inline-block;
        width: 100%;
        span{
            display: inline-block;
            text-align: center;
            width: 25%;
            font-size: 30px;
            font-weight: 700;
            line-height: 1;
            margin-bottom: 15px;
            color: @base-color;
            b{
                display: block;
                position: relative;
                line-height: 1;                
            }
            .timer{
                font-size: 16px;
                font-weight: 400;
                letter-spacing: 0.2em;
                font-style: italic;
                color: #797575;
            }
            b:not(.timer){
                margin-bottom: 12px;
                &:after{
                    content:":";
                    display: inline-block;
                    font-size: 16px;
                    font-weight: 700;
                    position: absolute;
                    top: 20px;
                    right: 0;
                }
            }
            &.secs{
                b:not(.timer){
                    &:after{
                        display: none;
                    }
                }
            }
        }
    }
}
.single-deal-grid {    
    .product-item{
        display: inline-block;
        width: 100%;
        float: left;
        .product-photo,
        .product-item-details{
            display: inline-block;
            float: left;
            position: relative;
            width: 50%;
        }
        .product-photo{
            text-align: center;
            img{
                margin: 0 auto;
                max-height: 610px;
                z-index: 2;
            }
        }
        .box-deal-label{
            background-color: @base-color;
            border-radius: 50%;
            color:#fff;
            height: 140px;
            left: 0;
            padding: 30px;
            position: absolute;
            text-align: center;
            margin: 0;
            top: 50%;
            .transform(translateY(-50%));
            width: 140px;
            z-index:1;
            span.text{
                font-size: 16px;
                letter-spacing: 0.2em;
                line-height: 1;
                margin-bottom: 10px;
                display: block;
                font-style: italic;
                margin-top:10px;
                margin-left: 5px;
            }
            .price-box{
                line-height: 1;
                .old-price{display: none;}
                .price{
                    font-size: 40px;
                    line-height: 1;
                    font-weight: 900;
                    font-style: italic;
                    color: #fff;
                    letter-spacing: 0;
                }
            }

        }
        .product-item-name{
            font-size: 16px;
            font-style: italic;
            letter-spacing: 0.2em;
            margin-top: 170px;
            margin-bottom: 25px;
            a{
                color: @base-color;
                &:hover{
                    color: #696969;
                }
            }
        }
        .short-description{
            margin-bottom: 34px;
            line-height: 1.7;
        }
        .deal-timer{
            margin-bottom: 18px;
            .countdown{
                span{
                    font-size: 48px;
                }
            }
        }
        .product-item-actions{
            display: inline-flex;
            .btn-cart{display: inline-block;margin-right:20px; }
            .btn-addto-default{
                display: inline-block;margin-right: 20px;
            }
        }
        .box-attribute{
            display: inline-block;
            width: 100%;
            float: left;
            dl{
                display: inline-flex;
                width: 100%;
                margin-top: 10px;
                margin-bottom: 10px;
                dt{
                    font-size: 14px;
                    font-weight: 700;
                    letter-spacing: 0.05em;
                    color: #696969;
                    min-width: 134px;
                    text-transform: uppercase;
                }
                dd{display: inline-block;}
                &:first-child{margin-top: 0;}
                &:last-child{margin-bottom: 0;}
            }

        }
    }
}
.custom-deal-layout1{
    .single-deal-grid{
        .product-item{
            .product-item-details{
                padding-right: 100px;
            }
            .deal-timer{
                margin-bottom: 38px;
                .countdown{
                    margin-left: -13px;
                }
            }
            .box-attribute{display: none;}
            .product-photo{
                &:after{
                    content:"";
                    display: block;
                    width: 472px;
                    height: 600px;
                    border: 8px solid rgba(255,255,255,0.83);
                    position: absolute;
                    .transform(rotate(-15deg));
                    top: 20px;
                    left: 30px;
                    z-index: 0;
                }
            }
            .short-desciption{
                margin-bottom: 35px;
            }
        }
    }
}
.deal-products-grid{
    .product-item{
        .product-photo{
            display: inline-block;
            width: 100%;     
            position: relative;
            float: left;
            text-align: center;
            .box-deal-label{
                margin: 0;
                padding:10px 0;
                width: 80px;
                height: 80px;
                font-size: 15px;
                border-radius: 50%;
                text-align: center;
                color: #fff;
                background-color: @base-color;
                position: absolute;
                top: 0;
                left: 0;
                padding-top: 12px;
                font-style: italic;
                .price-box{
                    line-height: 1;
                    margin-top: 5px;
                    .old-price{display: none;}
                    .price{
                        color: #fff;
                        font-size: 27px;
                    }
                }
            }
            .product-item-inner{
                position: absolute;
                top: 50%;
                left: 0;
                right: 0;
                margin: 0 auto;
                .transform(translateY(-50%));                
                .product-item-actions{display: inline-flex;}
                .btn-addto{
                    display: inline-block;
                    margin-left: 2.5px;
                    margin-right: 2.5px;
                    .transform(scale(0));
                    .transition(all 0.4s ease 0s);
                }

            }
        }
        .product-item-details{
            display: inline-block;
            width: 100%;
            text-align: center;
            margin-top: 15px;
            .product-item-name{
                font-size: 16px;
                font-weight: 700;
                color: #333;
                margin-top:0;
                margin-bottom: 18px;
                letter-spacing: 0.05em;

            }
        }
        .deal-timer{
            .countdown{
                span{                    
                    .timer{
                        font-size: 12px;
                    }
                }
            }
        }
        &:hover{
            .product-photo{
                .product-item-inner{
                    .btn-addto{
                        .transform(scale(1));
                    }
                }
            }
        }
    }
}
//BLOCK SINGLE PRODUCT
.single-product{
    .mgs-product{
        .product-item-info{
            margin: 0 -15px;
            .product-image,
            .product-item-details{
                width: 50%;
                display: inline-block;
                float: left;
                padding: 0 15px;
            }
            .product-image{
                .product-item-photo{
                    display: inline-block;
                    border: 1px solid @base-color;
                    border-radius: 2px;
                }

            }
            .product-label{
                top: 0;
                left: 0;
                right: auto;
                span{
                    width: 30px;
                    height: 30px;
                    padding: 0;
                    text-align: center;
                    line-height: 30px;
                    border-radius: 50%;
                    background-color: @base-color;
                    text-align: center;
                }
            }
            .product-item-details{
                .product-item-name{
                    h4{
                        margin: 0;
                        margin-bottom: 20px;
                        color: @base-color;
                        font-size: 16px;
                        font-style: italic;
                        &:hover{
                            color: #333;
                        }
                    }
                }
                .price-box{
                    margin-bottom: 10px;
                    .price{
                        font-size: 20px;                        
                    }
                }
                .categories-link{
                    display: inline-flex;
                    margin-bottom: 20px;
                    width: 100%;
                    .label{
                        font-size: 14px;
                        text-transform: uppercase;
                        min-width: 100px;
                    }
                    .value{
                        a{
                            color: @base-color;
                            &:hover{
                                color: #333;
                            }
                        }
                    }
                }
                .product-item-actions{
                    .btn{
                        display: inline-block;
                        margin-right: 10px;
                    }
                    form{display: inline;}
                    .btn-addto{
                        width: 40px;
                        height: 40px;
                        line-height: 40px;
                        background-color: #fff;
                        color: @base-color;
                        border: 1px solid @base-color;
                        &:hover,
                            &:active,
                            &:focus{
                            background-color: @base-color;
                            color: #fff;
                        }
                    }
                }
            }
        }
    }
}
//BLOCK PORTFOLIO
.portfolio-list-block{
    .item{
        .portfolio-top-content{
            position: relative;
            .hover-info{
                position: absolute;
                top: 50%;
                left: 0;
                right: 0;
                margin: 0 auto;
                padding-left: 10px;
                padding-right: 10px;
                text-align: center;
                .transform(-50%);
                opacity: 0;
                visibility: hidden;
                .transition(all 0.4s ease 0s);
                span{
                    display: inline-block;
                    width: 100%;
                    &.fa{
                        font-size: 18px;
                        color: @base-color;
                        margin-bottom: 10px;
                    }
                    .categories{
                        a{
                            color: @base-color;
                            &:hover{
                                color: #333;
                            }
                        }
                    }
                }
            }
            &:hover{
                img{
                    opacity: 0.4;
                }
                .hover-info{
                    opacity: 1;
                    visibility: visible;
                }
            }
        }
    }
}
.mgs-quickview-catalog-product-view{
    .scroll-to-top{display: none;}
    .product-details-view {
        .product-info-main {
            .product-add-form {
                .product-addto{display: none;}
            }
        }
    }
}
// NEWSLETTER POPUP
.modal_newsletter-popup.modal-popup {
    .modal-content {
        padding: 0;
        .form-group {
            margin-bottom: 10px;
        }
    }
    .modal-header {
        min-height: 0px;
        padding: 0;
    }
    #newsletter-popup {
        padding: 10px 30px 0;
        min-height: 600px;
        min-width: 700px;		
        text-align: center;
        background-position: left top;
        background-repeat: no-repeat;
        background-size: 470px 640px;
        #dont_show {
            margin-top: 7px;
        }
        .block-popup-subscribe{
            .block-popup-top{
                padding-top: 100px;
                width: 50%;
                margin-left: 50%;
                .newsletter-popup-content{
                    margin-bottom: 100px;
                    h3{
                        font-weight: 700;
                        text-transform: uppercase;
                        color: #333;
                        font-size: 35px;
                        margin: 0 0 30px;							
                    }
                    p{
                        color: #333;
                    }
                }
                .newsletter-popup-form{
                    .form{
                        display: inline-block;
                        width: 100%;
                        position: relative;
                        .newletter{
                            display: inline-block;
                            width: 100%;

                        }
                        .actions{
                            position: absolute;
                            right: 0;
                            top: 0;
                            .btn-primary{
                                border-radius: 2px;
                            }
                        }
                    }
                }
            }
        }
    }
}

//HOMEPAGE6
.block-abs-top30{
    margin-top: -30px;

}
//PROMOBANNER
.promo-birthday-flowers{
    padding: 0 25px;
    padding-bottom: 15px;
    h4{
        font-weight: 700;
        font-style: italic;
        color: #333;
        letter-spacing: 0.4em;
        margin: 0;
        padding: 0;
        margin-bottom: 10px;
    }
    p{
        font-weight: 900;
        color: #fff;
        padding: 3px 10px;
        letter-spacing: 0.3em;
        margin-left: 36px;
        background-color: #000;
        line-height: 1;
        font-size: 18px;
    }
}
.promo-flowers-party{
    text-align: center;
    padding-top: 56px;
    h6{
        color: #fff;
        font-style: italic;
        letter-spacing: 0.2em;
        padding: 6px 10px 7px;
        background-color: #000;
        margin-top: 0;
        margin-bottom: 15px;
        display: inline-block;
        margin: 0 auto;
        width: auto;
        text-transform: capitalize;
    }
    span{
        font-weight: 900;
        font-size: 24px;
        letter-spacing: 0.5em;
        text-transform: uppercase;
        line-height: 1.3;
        margin-top: 10px;
        display: inline-block;

    }
}
.promo-gift-flowers{
    margin-top: 128px;
    text-align: center;
    .h2{
        font-size: 18px;
        color: #333;
        letter-spacing: 0.4em;
        text-transform: uppercase;
        font-weight: 900;
        margin-top: 0;
        margin-bottom: 17px;
        display: block;
        margin-left: 8px;
    }
    .h6{
        font-size: 14px;
        color: #696969;
        font-style: italic;
        letter-spacing: 0.2em;
        margin: 0;
        padding: 0;
        display:block;
        margin-left: 8px;
    }
}
.custom-border-promo{
    .promobanner{
        .text{
            width: 100%;
        }
        & > a{
            display: block;
            position: relative;
            width: 100%;
            &:after{
                content:"";
                display: inline-block;				
                border: 1px solid #696969;
                width: calc(~'100% - 40px');
                height: calc(~'100% - 40px');
                position: absolute;
                z-index: 1;
                left: 20px;
                right: 20px;
                top: 20px;
                bottom: 20px;
            }
        }
    }
}
.promo-flowers-wedding{
    text-align: center;
    h6{
        padding: 0;
        margin-top: 5px;
        font-style: italic;
        letter-spacing: 0.2em;
        color: #fff;
        margin-bottom: 18px;

    }
    span{
        font-weight: 900;
        font-size: 24px;
        color: #fff;
        text-transform: uppercase;
        letter-spacing: 0.5em;
        max-width: 220px;
        line-height: 1.3;
    }
}
.promo-flowers-valentine{
    font-weight: bold;
    color: #333;
    font-size: 14px;
    text-transform: uppercase;
    padding: 30px;
    padding-bottom: 32px;
    background-color: #fff;
    display: inline-block;
    min-width: 212px;
    text-align: center;
    letter-spacing: 0.2em;

}
.margin-bottom30{
    .promobanner{
        margin-bottom: 30px;
    }
}
//BLOCK ABOUT FLOWER
.flower-block-about{
    text-align: center;
    .block-about-title{
        text-align: center;
        h2{
            font-weight: 900;
            font-size: 34px;
            text-transform: uppercase;
            color: #333;
            letter-spacing: 0.2em;
            margin-top: 0;
            margin-bottom: 21px;
            line-height: 1;
        }
        .h4{
            font-size: 16px;
            font-style: italic;
            color: #696969;
            margin: 0;
            padding: 0;
            letter-spacing: 0.2em;
        }
        .img-icon{
            margin: 0 auto;
            img{
                margin: 0 auto;
                max-width: 100%;
            }
        }
    }
    .subtitle{
        font-size: 24px;
        font-style: italic;
        color: #333;
        letter-spacing: 0.1em;
        display: block;
        margin-top: 68px;
        margin-bottom: 126px;
        line-height: 2;
        margin-left: auto;
        margin-right: auto;
        max-width: 760px;
    }
    .box-item{
        text-align: center;
        padding-left: 15px;
        padding-right: 15px;
        img{
            margin: 0 auto;

        }
        h4{
            font-size: 24px;
            color: #333;
            font-weight: 700;
            letter-spacing: 0.1em;
            margin: 44px 0 24px;
        }
        p{
            margin-bottom: 14px;
        }
        a.read-more{
            font-weight: 700;
            font-size: 14px;
            font-style: italic;
            color: #696969;
            text-decoration: underline;
            letter-spacing: 0.1em;
            margin: 0;
            &:hover{
                color: @base-color;
            }
        }
    }
}
.testimonial-block{
    .owl-carousel{
        .testimonial-item{
            text-align: center;
            max-width: 760px;
            margin: 0 auto;
            .img-author{
                display: block;
                margin-bottom: 40px;
                text-align: center;
                img{
                    margin: 0 auto;
                    border-radius: 50%;
                }				
            }
            .content{
                p.h5{
                    font-size: 18px;
                    font-style: italic;
                    letter-spacing: 0.1em;
                    line-height: 36px;
                }
                .author{
                    margin-top: 40px;
                    strong{
                        font-size: 14px;
                        text-transform: uppercase;
                        margin-right: 10px;
                        letter-spacing: 0.05em;
                        color: #333;
                    }
                    .h6{
                        font-style: italic;
                        letter-spacing: 0.05em;
                        span{margin-right: 10px;}
                    }
                }
            }
        }
        
           
                .owl-nav{
                    [class*="owl-"]{
                        opacity: 1;
                        visibility: visible;
                        font-size: 48px;
                        border: none;
                        width: auto;
                        height: auto;
                        line-height: 1;
                        .transform(translate(0,-50%)) !important;
                        color: #392a25;
                        opacity: 0.7;
                        &:hover{
                            background: none;
                            color: @base-color;
                        }
                    }
                }
           
    }
}
.icon-bg-testimonial{
    position: absolute;
    left: 0;
    right: 0;
    text-align: center;
    img{
        margin: 0 auto;
        text-align: center;

    }
}
//INSTAGRAM
.instagram-block{
    .block-content{

        ul{
            display: inline-flex;
            li{
                display: inline-block;
                img{
                    opacity: 0.5;
                    margin: 0 auto;
                    max-width: 100%;
                    .transition(all 0.4s ease 0s);

                }
                &:hover{
                    img{
                        opacity: 1;
                    }
                }
            }
        }
    }
}
//Twitter block
.social-tweet{
    .tweet-container{
        display: inline-flex;
        width: 100%;
        margin-bottom: 30px;
        &:last-child{
            margin-bottom: 0;
        }
        .icon{
            font-size: 40px;
            margin-right: 20px;
            vertical-align: middle;
        }
        .tweet-content{
            a{
                color: @base-color;
                &:hover{
                    color: #696969;
                }
            }
            .times{
                font-style: italic;
                font-size: 12px;
                a{
                    color: #333;
                    &:hover{
                        color: @base-color;
                    }
                }
            }
        }
    }
}
.title-flower{
    .title-block{
        p.h4{
            padding-bottom: 20px;
        }
    }
}
.text-center{
    .mgs-blog-lastest-posts {
        .item {
            .image{
                img{
                    margin: 0 auto;
                }
            }
            .post-content{
                padding-top: 30px;
                h3{
                    margin-top: 0;
                    margin-bottom: 20px;
                }
            }
        }
    }
}
.custom-line-after{
    position: relative;
    &:after{
        content:"";
        display: block;
        width: 1px;
        height: 80px;
        position: absolute;
        bottom: -40px;
        background-color: #333;
        left: 0;
        right: 0;
        z-index: 1;
        margin: 0 auto;
    }
}
.swatch-option.text{
    line-height: 12px !important;
}
.fotorama__nav-wrap{
    &.fotorama__nav-wrap--horizontal{
        margin-top: 20px;
    }
}
.header2,
.header3{
    &.header-sticky-menu{
        .slider_mgs_carousel{
            display: none;
        }
    }
}

@media (min-width: 1500px){
    .section100{
        .slider_mgs_carousel.owl-carousel .owl-nav .owl-prev{left: -50px}
        .slider_mgs_carousel.owl-carousel .owl-nav .owl-next{right: -50px}
    }
}
@media (min-width: 1400px){
    .section100{
        padding-left: 100px;
        padding-right: 100px;
    }
}
@media (max-width: 991px){
    .center-sm .promobanner .text{
        .transform(translateX(-50%));
        left: 50%;
    }
}
.first-item{clear: left}
.weed-6{
    padding-top: 30px;
    padding-left: 30px;
}
@media (min-width: 992px){
    .weed-6{
        padding-left: 150px;
        padding-top: 80px;
    }
    .first-item-md{clear: left}
}
@media (min-width: 768px) and (max-width: 991px){
    .first-item-sm{clear: left}
}
@media (max-width: 767px){
    .first-item-xs{clear: left}
}
.col-static{
    position: relative;
    .panel-block-row,
    div[class^="col-"],
    .builder-container {
        position: static;
    }
}
.abs-top{
    position: absolute;
    top: -300px;
    right: 0;
    z-index: 9;
    max-width: 30vw;
    img{max-width: 100%;}
}
.abs-bottom{
    position: absolute;
    bottom: -110px;
    left: 0;
    z-index: 9;
    max-width: 30vw;
    img{max-width: 100%;}
}
.get-app{
    h2{
        font-size: 40px;
        color: #333333;
        font-weight: 700;
        letter-spacing: 0.1em;
        margin: 0 0 35px 0;
    }
    p{color: #fff}
    .btn-app{
        margin-top: 30px;
        a{
            margin-top: 10px;
            margin-right: 15px;
            display: inline-block;
            +a{
                margin-right: 0;
            }
        }
    }
}
.insight-accordion{
    .title{
        background: #f8f7f7;
        color: #333;
        font-weight: 700;
        padding: 15px 30px;
        position: relative;
        cursor: pointer;
        .transition(all 0.35s);
        .icon{float: right;}
        &:hover,
        &.active{
            background-color: @base-color;
            color: #fff;
        }
    }
    .item{
        background: #f8f7f7;
        border-radius: 4px;
        overflow: hidden;
        margin-bottom: 15px;
        +.item{
            .content{display: none}
        }
    }
    .content{
        padding: 20px 30px;
        line-height: 1.6;
    }
    .btn{
        margin-top: 30px;
    }
}
.simple-title .title-block{
    margin-bottom: 20px;
    background: none;
    >h2, >h3{
        font-size: 22px;
        font-weight: 600;
        text-transform: unset;
        text-align: left;
    }
}

//HOME PAGE 1
.custom-boxshadown{box-shadow: 0 10px 0 #fafafa inset;}
//block about 
.block-about{
    text-align: center;
    display: block;
    width: 100%;
    .block-title-about{
        img{margin: 0 auto;}
        .h3{
            font-size: 24px;
            font-style: italic;
            letter-spacing: 0.1em;
            line-height: 2;
            color: #333;
            font-weight: 400;
            margin-top: 62px;
            margin-bottom: 130px;
            max-width: 725px;
            margin-left: auto;
            margin-right: auto;
        }
    }
    .box-item{
        margin-bottom: 30px;
        text-align: center;
        img{
            margin: 0 auto;
        }
        h4{
            font-size: 24px;
            font-weight: 700;
            letter-spacing: 0.1em;
            margin-top: 25px;
            margin-bottom: 25px;
            color: #333;
        }
        p{
            line-height: 25px;
            margin-bottom: 25px;
        }
        .btn{
            padding-left: 25.5px;
            padding-right: 25.5px;
        }
        &.box-item2{
            img{
                margin-left: 100px;
            }
        }
        &.box-item3{
            img{
                margin-left: 86px;
            }
        }
    }
}
.custom-layer-abs{
    position: relative;
    &:after{
        content:"";
        display: block;
        width: 1px;
        height: 80px;
        background-color: @base-color;
        position: absolute;
        bottom: -40px;
        right: 0;
        left: 0;
        margin: 0 auto;
    }
}
// block delivery process
.block-delivery-process{
    [class*='layer-']{
        position: absolute;
        display: block;
        max-width: 100%;
        z-index: 2;

    }
    .layer-left{
        left: 0;
        bottom: -200px;
    }
    .layer-right{
        right: 0;
        top: -138px;
    }
    .block-content{
        display: inline-block;
        width: 100%;
        float: left;
        text-align: center;
        padding-top: 44px;
        .step-content{
            [class*='step-']{
                display: inline-block;
                width: 25%;
                text-align: center;
                float: left;
                .box-content{
                    position: relative;
                    h5{
                        font-size: 18px;
                        color: #333;
                        letter-spacing: 0.05em;
                        margin-top: 20px;
                        margin-bottom: 10px;
                        font-weight: 700;
                    }
                }
                .box-icon{
                    display: block;
                    margin: 0 auto;
                    width: 126px;
                    height: 123px;
                    background: url(../images/border-img.png) center center no-repeat scroll;
                    padding-top: 4px;
                    .farm{
                        text-align: center;
                        width: 115px;
                        height: 115px;
                        line-height: 115px;
                        .transition(all 0.4s ease 0s);
                        border-radius: 50%;
                        color: @base-color;
                        display: block;
                        margin: 0 auto;
                        font-size: 0;
                        &:before{
                            font-size: 56px;
                        }
                        &.icon-organie{
                            &:before{font-size: 50px;}
                        }
                    }
                    &:after{
                        content:"";
                        background: url(../images/arrow-delivery.png) scroll no-repeat;
                        display: inline-block;
                        width: 133px;
                        height: 92px;
                        position: absolute;
                        top: -79px;
                        right: -59px;
                        opacity: 0.5;
                    }
                    &:hover{
                        .farm{
                            background-color: @base-color;
                            color: #fff;
                        }
                    }
                }
            }
            .step-1{
                margin-top: 175px;
            }
            .step-4{
                margin-top: 231px;
                .box-content{
                    margin-left: 12px;
                }
                .box-icon{
                    &:after{display: none;}
                }
            }
            .setting-img{
                margin-top: -255px;
                display: inline-flex;
            }
            .step-2{
                .box-content{
                    margin-right: 21px;
                }
                .box-icon{
                    &:after{
                        transform: rotateX(180deg) rotate(30deg);
                        -webkit-transform: rotateX(180deg) rotate(30deg);
                        -moz-transform: rotateX(180deg) rotate(30deg);
                        -ms-transform: rotateX(180deg) rotate(30deg);
                        bottom: 57px;
                        top: auto;
                        right: -104px;
                    }
                }
            }
            .step-3{
                .box-content{
                    margin-left: 80px;
                }
                .box-icon{
                    &:after{
                        .transform(rotate(80deg));
                        bottom: -10px;
                        top: auto;
                        right: -120px;
                    }
                }
            }
        }
    }
}
.custom-title-bottom{
    .title-block{margin-bottom: 65px;}
}
//HOME PAGE 2
.block-welcome-organie{
    text-align: center;
    .tool-tip{
        font-size: 24px;
        font-style: italic;
        font-weight: 400;
        letter-spacing: 0.1em;
        color: #333;
        max-width: 730px;
        line-height: 2;
        margin: 20px auto 105px;
    }
    .block-content{
        padding-left: 110px;
        padding-right: 120px;
        &.no-padding{
            padding: 0;
            .box-cate-item{max-width: 100%}
        }
    }
    .box-cate-item{
        display: block;
        position: relative;
        width: 100%;
        padding-top: 32px;
        padding-bottom: 25px;
        padding-left: 10px;
        padding-right: 10px;
        max-width: 170px;
        margin: 0 auto;
        .box-top{
            width: 100%;
            position: relative;
            img{
                margin: 0 auto;
                max-width: 100%;
                height: auto;
            }
            .farm{
                position: absolute;
                top:50%;
                .transform(translateY(-50%));
                left: 0;
                right: 0;
                margin: 0 auto;
                font-size: 45px;
                color: #fff;
                padding-left: 20px;
            }
        }
        h5{
            font-size: 18px;
            font-weight:700;
            letter-spacing: 0.05em;
            color: #333;
            margin-top: 32px;
            margin-bottom: 17px;
            text-transform: capitalize;
            display: block;
            &:after{
                content:"";
                display: block;
                width: 32px;
                height: 1px;
                background-color: #e7e5e4;
                margin: 0 auto;
                margin-top: 17px;
                .transition(all 0.35s ease 0s);
            }
        }
        p.h6{
            font-style: italic;
            font-weight: 700;
            letter-spacing: 0.1em;
            color: #696969;
            margin-bottom: 0;
        }

        &:hover{
            h5:after{
                width: 45px;
                background-color: @base-color;
            }
        }
    }
    [class*='col-md']{
        padding-left: 10px;
        padding-right: 10px;
    }
}
.custom-block-why-choose{
    position: relative;
    max-height: 615px;
}
.block-why-choose-organie{
    .box-left-abs{
        position: absolute;
        bottom: -100px;
        left: 0;
        z-index: 2;
    }
    .box-right-abs{
        position: absolute;
        right: 0;
        top: -355px;
        z-index: 2;
    }
    .block-content{
        .box-center{
            img{margin: 0 auto;}
        }
        [class*='box-item']{
            display: inline-block;
            width: 100%;
            padding: 10px 25px;
            h5{
                font-weight: 700;
                color: #333;
                text-transform: capitalize;
                margin-top: 5px;
                margin-bottom: 10px;
                position: relative;
                z-index: 2;
                font-size: 18px;
            }
            p{
                position: relative;
                z-index: 2;
                margin: 0;
            }

        }
        .box-left{
            padding-top: 130px;
            .box-item-1{
                margin-bottom: 80px;
            }
        }
        .box-right{
            padding-top: 130px;
            .box-item-2{
                margin-bottom: 80px;
            }
        }
        .box-item-1{
            position: relative;

            &:before{
                content:"";
                background-color: #fff;
                border-radius: 45px;
                bottom: -20px;
                left: -25px;
                padding: 0;
                position: absolute;
                right: 0;
                top: -15px;
                transform: perspective(800px) rotateY(-25deg);
                -webkit-transform:  perspective(800px) rotateY(-25deg);
                -moz-transform:  perspective(800px) rotateY(-25deg);
                -mz-transform:  perspective(800px) rotateY(-25deg);
            }
        }
        .box-item-2{
            position: relative;
            &:before{
                background-color: #fff;
                border-radius: 45px;
                bottom: -20px;
                content:"";
                left: -5px;
                padding: 0;
                position: absolute;
                right: -20px;
                top: -15px;
                transform: perspective(800px) rotateY(25deg);
                -webkit-transform:  perspective(800px) rotateY(25deg);
                -moz-transform:  perspective(800px) rotateY(25deg);
                -mz-transform:  perspective(800px) rotateY(25deg);
            }
        }
    }
}
// PROMO BANNER
.promobanner{
    .text{
        color: #000;
    }
    h2,h3,h4{
        font-weight: 700;
    }
    &.border-zoom{
        &:before{
            top: 30px;
            bottom: 30px;
            right: 30px;
            left: 30px;
            border-width: 2px;
            .transform(scale(1.4));

        }
    }
    .banner-summer{
        padding-left: 58px;
        padding-bottom: 34px;
        .h4{
            font-size: 34px;
            color: #333;
            font-style: italic;
            letter-spacing: 0.2em;
            margin-top: 0;
            margin-bottom: 0;        
            margin-left: 12px;
        }
        h3{
            font-size: 100px;
            font-weight: 900;
            letter-spacing: 0.4em;
            color:#fff;
            line-height: 1;
            margin-top:0;
            margin-bottom: 8px;
            text-transform: uppercase;
        }
        .sale-code{
            font-weight: 700;
            text-transform: uppercase;
            font-size: 14px;
            letter-spacing: 0.23em;
            line-height: 1;
            color: #696969;
            padding-top: 6px;
            padding-bottom: 4px;
            margin-left: 5px;
            .code{
                background-color: #fff;
                padding-left: 8px;
                padding-right: 10px;
                margin-left: 5px;
                padding-top: 2px;
                padding-bottom: 2px;
            }
        }
    }
    .banner-organie{
        margin-top: 20px;
        margin-left: -5px;
        .h4{
            font-size: 24px;
            font-style: italic;
            letter-spacing: 0.2em;
            color: #333;
            margin-top: 0;
            margin-bottom: 5px;
            text-transform: uppercase;
            display: block;
            margin-left: 13px;
        }
        h3{
            font-size: 120px;
            font-weight: 700;
            letter-spacing: 0.2em;
            line-height: 1;
            margin-top: 0;
            margin-bottom:8px;
            color: #fff;
        }
        .sale-code{
            font-size: 14px;
            text-transform: uppercase;
            font-weight: 700;
            letter-spacing: 0.1em;
            color: #696969;
            text-align: right;
            margin-right: 25px;
        }
    }
}
.margin-bottom-blog{
    .blog-block{
        .title-block{
            margin-bottom: 95px;
        }
    }
}
//  HOMEPAGE 4
.block-story{
    display: block;
    width: 100%;
    position: relative;
    padding-top: 120px;
    padding-bottom: 125px;
    .layer-top{
        position: absolute;
        top: -145px;
        left: 0;
        z-index: -1;
    }
    .layer-bottom{
        position: absolute;
        bottom: 0;
        right: 0;
    }
    .block-content{
        .col-md-4{
            position:relative;
        }
        .box-left,
        .box-right{
            z-index: -1;
        }
        .box-center{
            background-color: #fff;
            width: 570px;
            height: 700px;
            padding: 62px 65px 75px;
            position: absolute;
            top: 0;
            z-index: 1;
            left: -85px;
            display: block;
            box-shadow: 0 5px 30px rgba(0, 0, 0, 0.15);
            margin-top: 70px;
            &:before{
                content:"";
                display: block;
                border: 1px solid #f4f1e3;
                position: absolute;
                top: 15px;
                right: 15px;
                left: 15px;
                bottom: 15px;                
            }
        }
        .box-left{
            margin-top: 70px;
            .img-left-1{
                float: right;
                margin-right: -30px;
                margin-top: 54px;
            }
            .img-left-2{
                margin-top: 56px;
            }
        }
        .box-right{
            .img-right-1{
                margin-left: 34px;
            }
            .img-right-2{
                position: absolute;
                left: -57%;
                top: 100%;
                z-index: -1;
                margin-top: -103px;
            }
        }
        .author{
            margin-top: 36px;
            display: inline-flex;
            img{margin-right: 28px;}
            strong{
                text-transform: uppercase;
                display: block;
                width: 100%;
                font-size: 14px;
                letter-spacing: 0.05em;
                margin-bottom: 0;
                color: #333;
                margin-top: 17px;
            }
            .info-author{
                display: inline-block;

            }
            .info{
                font-style: italic;
                letter-spacing: 0.05em;
            }
        }
    }
    .title-block{
        margin-bottom: 33px;
    }
}
.custom-block-product-slider{
    padding-left: 75px;
    padding-right: 75px;

}

.fullwidth-product-custom-col{
    .products-grid{
        .product-items{
            &.row-custom-2,
            &.row-custom-8,
            &.row-custom-7{
                .product-item{
                    .product-item-info{
                        .product-top{
                            .product-item-inner{                                
                                left: 0;
                                right: 0;
                                top: 50%;
                                .transform(tramslateY(-50%));
                                .product-item-actions{
                                    display: inline-flex;
                                }
                                .form,
                                .btn-addto{
                                    display: inline-block;
                                    margin: 0 5px;
                                }
                            }
                        }
                    }
                }
            }
        }
    }
}
.block-farm-services{
    .title-block{
        margin-bottom: 30px;
    }
    .block-content{
        text-align: center;
        img{margin: 0 auto;}
        .img-main{
            img{max-width: 100%;}
        }
        .farm_services_item{
            .farm{
                width: 70px;
                height: 70px;
                line-height: 70px;
                font-size: 30px;
                color: @base-color;
                background-color: #fff;
                border-radius: 50%;
                text-align: center;
                margin: 20px auto 0;
                display: block;
            }
            h3{
                font-weight: 700;
                font-size: 18px;
                letter-spacing: 0.05em;
                margin-top: 26px;
                margin-bottom: 10px;
                color: #333;
                text-transform: capitalize;
                &:after{
                    content:"";
                    display: block;
                    margin: 20px auto 0;
                    width: 32px;
                    height: 1px;
                    background-color: #e7e5e4;
                }
            }
            p{margin-bottom: 5px;line-height: 1.7;}
            a{
                font-style: italic;
                font-weight: 700;
                text-decoration: underline;
                color: #696969;
                letter-spacing: 0.1em;
                &:hover{
                    color: @base-color;
                }
            }
        }
        .img-main{margin-top: 60px;}
    }

}
.custom-deal-layout2{
    .deal-product-cat-block{
        margin-top: -130px;
        display: block;
        background-color: #fff;
        width: 100%;
        padding-top: 100px;
        position: relative;
        float: left;
    }
    .title-block{
        background: none;
        padding: 0;
        margin: 0;
        position: absolute;
        left: 50%;
        top: 156px;
        margin-left: 15px;
        width: auto;
        text-align: left;
    }
    .single-deal-grid{
        .product-item{
            .product-photo{
                padding-left: 100px;
                padding-right: 85px;
                .product-item-photo{
                    display: block;
                    width: 100%;
                    position: relative;
                    padding-right: 30px;
                    padding-bottom: 30px;
                    z-index: 3;
                    &:after{
                        content:"";
                        display: block;
                        position: absolute;
                        width: calc(~'100% - 30px');
                        height:calc(~'100% - 40px');
                        border: 5px solid #dde8cd;
                        top: 40px;
                        left: 30px;
                        z-index: -1;
                    }

                }
                .box-deal-label{
                    z-index: 5;
                    left: 0;
                    top: 40%;
                    margin-top: -10px;
                }
            }
            .product-item-name{
                margin-top: 18px;
                margin-bottom: 92px;
            }
            .product-item-details{
                padding-right: 100px;
                padding-left: 15px;
                .short-description{
                    margin-bottom: 20px;
                }
                .box-attribute{
                    display: inline-block;
                    width: 100%;
                    margin-bottom: 10px;
                    dl{
                        display: inline-flex;
                        width: 100%;
                        margin-top: 8px;
                        margin-bottom: 8px;
                        &:last-child{
                            margin-bottom: 0;
                        }
                        &:first-child{margin-top: 0;}
                        dt{
                            font-size: 14px;
                            font-weight: 700;
                            text-transform: uppercase;
                            color: #696969;
                            letter-spacing: 0.05em;
                            min-width: 135px;
                        }
                        dd{
                            color: #696969;
                            a{
                                color: #696969;
                                &:hover{color: @base-color;}
                            }
                        }
                    }
                }
            }
            .product-item-actions{
                .btn-cart,
                .btn-addto-default{
                    margin-right: 10px;
                }

            }
        }
    }
}
.block-testimonial-bg{
    position: relative;
    padding-top: 90px;
    padding-bottom: 100px;
    .box-left{
        position: absolute;
        left: 0;
        bottom: -190px;
    }
    .box-right{
        position: absolute;
        right: 0;
        bottom: -152px;
    }
}
.custom-title-bottom80{
    .title-block{margin-bottom: 80px;}
}
.mgs-blog-lastest-posts{
    .owl-carousel{
        .item{
            .post-content{
                padding-top: 28px;
                h3{
                    margin-top: 18px;
                    margin-bottom: 20px;
                }
            }
        }
    }

}
//HOMEPAGE PLANT 1
.block-plant-about{
    .col-1{
        img{
            margin-left: 65px;
        }
        .content-box{
            padding-top: 100px;
        }
        .box-item{
            display: inline-block;
            width: 100%;
            float: left;
            margin-top: 15px;
            margin-bottom: 15px;
            &:first-child{margin-top: 0;}
            &:last-child{margin-bottom: 0;}
            .plant{
                width: 98px;
                display: inline-block;
                text-align: left;
                font-size: 65px;
                line-height: 1;
                color: #ccc;
                float: left;
            }
            .text{
                display:inline-block;
                width: calc(~'100% - 100px');
                position: relative;
                max-width: 345px;
                .h2{
                    font-size: 14px;
                    font-weight: 700;
                    text-transform: uppercase;
                    margin-top: 24px;
                    margin-bottom: 14px;
                    letter-spacing: 0.2em;
                    color: #333;
                    display: block;
                    position: relative;
                    .transition(all 0.4s ease 0s);
                    &:before{
                        content:"";
                        display: inline-block;
                        height: 1px;
                        width: 30px;
                        position: absolute;
                        left: -18px;
                        top: 50%;
                        vertical-align: middle;
                        background-color: @base-color;
                        .transform(scale(0,1));
                        .transition(all 0.4s ease 0s);
                    }
                }
                p{
                    font-size: 15px;
                    line-height: 24px;
                    margin: 0;
                }
            }
            &:hover{
                .text{
                    .h2{
                        color: @base-color;
                        padding-left: 30px;
                        &:before{
                            .transform(scale(1,1));
                        }
                    }
                }
            }
        }
    }
    .title-about{
        padding-left: 97px;
        margin-top: 97px;
        margin-bottom: 103px;
        max-width: 553px;
        display: block;
        h4{
            font-size: 18px;
            font-style: italic;
            letter-spacing: 0.1em;
            display: block;
            text-align: left;
            color: #333;
            line-height: 36px;
            margin-bottom: 35px;
        }
        .author{
            strong{
                text-transform: uppercase;
                font-size: 14px;
                letter-spacing: 0.05em;
                color: #333;
                margin-right: 10px;
            }
            .h6{
                letter-spacing: 0.05em;
                color: #696969;
                font-style: italic;
                margin: 0;
            }
        }
    }
    .box-img-2{
        padding-left: 20px;
        position: relative;
        display: block;
        &:before{
            content:"";
            display: inline-block;
            width: 185px;
            height: 290px;
            border: 8px solid #e8f0de;
            position: absolute;
            left: -4px;
            bottom: -60px;
            z-index: -1;

        }
    }
}
.block-counter{
    display: inline-block;
    float: left;
    width: 100%;
    .counter-number{
        display: inline-block;
        width: 25%;
        float: left;
        text-align: center;
        border-left: 1px solid #e0e0e0;
        padding: 30px 0;
        span{
            display: block;
        }
        .counter{
            font-size: 40px;
            font-weight: 700;
            color: @base-color;
            margin-top: 0;
            margin-bottom: 15px;
            position: relative;
            line-height: 1;
        }
        .text{
            font-size: 14px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            color: #333;
        }
        &:first-child{
            border-left: 0;
        }
        &.number-2,
        &.number-4{
            .counter:after{
                content:"+";
                display: inline-block;
                font-size: 40px;
                line-height: 1;
                position: absolute;
                font-size: 25px;
            }
        }
    }
}
.background-center{
    background-position: center center;
    
}
.title-plant{
    .title-block{
        background: url(../images/bg-title-plant.png) no-repeat top center scroll;
        padding-top: 83px;
        padding-bottom: 22px;
    }
}
.block-organie-video{
    width: 100%;
    max-width: 790px;
    float:right;
    text-align: center;
    position: relative;
    .title{
        font-size: 18px;
        font-weight: 900;
        letter-spacing: 0.8em;
        color: @base-color;
        margin-bottom: 30px;
        margin-top: 2px;
        line-height: 1;
    }
    h3{
        font-size: 80px;
        text-transform: uppercase;
        font-weight: 700;
        color: #333;
        letter-spacing: 0.5em;
        line-height: 1;
        margin-top: 0;
        margin-bottom: 35px;
    }
    .video-info{
        font-size: 18px;
        font-weight: 900;
        letter-spacing: 0.2em;
        text-transform: uppercase;
        color: #333;
        padding-left: 25px;
        a{
            margin-left: 20px;
            margin-right: 20px;
            font-size: 11px;
            color: #fff;
            display: inline-block;
            position: relative;
            .transition(all 0.35s ease 0s);
            .fa{
                position: absolute;
                left: 0;
                right: 0;
                margin: 0 auto;
                top: 51%;
                .transform(translateY(-50%));
                padding-left: 10px;
                font-size: 8px;
            }
            &:hover{
                .transform(scale(1.2));
            }
        }
    }
    .box-abs{
        position: absolute;
        top: 50%;
        .transform(translateY(-50%));
        left: 0;
        right: 0;
        margin: 0 auto;
    }
}
.mfp-video-popup{
    button.mfp-close{
        color: #fff !important;
        top: 0 !important;
        right: 0 !important;
        opacity: 1 !important;
    }    
    .mfp-ifarme{
        border: 30px solid rgba(0,0,0,0.9);
    }

}
.block-organie-app{
    .title{
        text-align: left;
        margin-bottom: 60px;
        h2{
            font-size: 40px;
            font-weight: 900;
            letter-spacing: 0.1em;
            color: #333;
            text-transform: uppercase;
            margin-top: 0;
            margin-bottom: 7px;
        }
        .h4{
            font-size: 16px;
            letter-spacing: 0.2em;
            font-style: italic;
            color: @base-color;
            margin: 0;
        }
    }
    .block-content{
        .box-item{
            display: inline-block;
            width: 100%;
            margin-bottom: 15px;
            .item-title{
                display: inline-block;
                width: 100%;
                h6{
                    display: block;
                    width: 100%;
                    margin: 0;
                    font-size: 15px;
                    font-weight: 700;
                    letter-spacing: 0.05em;
                    padding:17px 14px 17px 30px;
                    line-height: 1;
                    border-radius: 3px;
                    background-color: #f8f7f7;
                    color: #333;
                    .transition(all 0.4s ease 0s);
                    cursor: pointer;
                    span{text-align: right;color: @base-color;font-size: 17px;float: right;}
                }
            }
            .item-content{
                padding: 27px 30px 28px;
                background-color: #f8f7f7;
                border-bottom-left-radius: 3px;
                border-bottom-right-radius: 3px;
                line-height:1.65;
            }
            .item-title:hover{
                h6{
                    color: #fff;
                    background-color: @base-color;
                    border-bottom-left-radius: 0;
                    border-bottom-right-radius: 0;
                    span{color: #fff;}
                }
            }
            &.active .item-title{
                h6{
                    color: #fff;
                    border-bottom-left-radius: 0;
                    border-bottom-right-radius: 0;
                    background-color: @base-color;                    
                    span{color: #fff;
                         &:before{
                             content:"\f207";
                         }
                    }
                }

            }
        }
    }
}
//HOMEPAGE PLANT 2
.block-plant-about-2{
    .box-layer-left,.box-layer-right{
        position: absolute;
        z-index: 100;
    }
    .box-layer-left{
        left: 0;
        top: 295px;
    }
    .box-layer-right{
        right: 0;
        top: 130px;
    }
    .block-content{
        text-align: center; 
        .title-about{
            h3{
                font-size: 120px;
                font-weight: 900;
                color: @base-color;
                letter-spacing: 0.1em; 
                margin: 0;
                display: inline-block;
                line-height: 1;
                span{
                    display: inline-block;
                    float: left;
                    font-style: italic;
                    color: #333;
                    font-weight: 400;
                    font-size: 72px;
                    margin-left: 110px;
                    width: 100%;
                    letter-spacing: 0.1em;
                }
            }       

        }
        .desc{
            font-size: 18px;
            letter-spacing: 0.1em;
            line-height: 2;
            max-width: 720px;
            display: block;
            margin: 60px auto 55px;
        }
        .h2{
            font-size: 14px;
            font-weight: 900;
            text-transform: uppercase;
            letter-spacing: 0.2em;
            margin: 0;
            line-height: 1.2;
            color: #333;
        }
        .section-1{
            padding-bottom: 90px;
            display: block;
            position: relative;
            &:after{
                content:"";
                width: 1px;
                height: 100px;
                background-color: #333;
                position: absolute;
                left: 0;
                right: 0;
                margin: 0 auto;
                bottom: -55px;
            }
        }
        .section-2{
            background-color: #f8f7f7;
            padding: 125px 0 95px;
            .item{
                display: inline-block;
                text-align: center;
                margin-bottom: 20px;
                .plant{
                    display: inline-block;
                    width: 150px;
                    height: 150px;
                    border-radius: 50%;
                    background-color: #fff;
                    color: @base-color;
                    font-size: 72px;
                    padding: 0;
                    margin: 0 auto;
                    text-align: center;
                    line-height: 150px;
                    padding-left: 30px;
                }
                h4{
                    font-size: 24px;
                    color: #333;
                    font-weight: 700;
                    letter-spacing: 0.1em;
                    margin-top: 43px;
                    margin-bottom: 24px;
                }
                p{margin-bottom: 14px;}
                a{
                    font-weight: 700;
                    font-size: 14px;
                    color: #696969;
                    letter-spacing: 0.1em;
                    text-decoration: underline; 
                    margin: 0;line-height: 1;
                    font-style: italic;
                    &:hover{
                        color: @base-color;
                    }
                }

            }
        }
    }
}
.title-no-bg{
    .title-block{
        background: none;
        margin-bottom: 50px;
    }
}
.custom-testimonial-layout1{
    .testimonial-block{
        max-width: 965px;
        width: 100%;
        float: right;
        text-align: center;
        margin: 0 auto;
        .mgs-testimonial{
            padding-left: 90px;
            padding-right: 90px;
            .owl-carousel{
                .testimonial-item{
                    background-color: #fff;
                    padding: 50px 35px;
                    min-height: 421px;
                    .img-author{
                        margin-top: 0;
                        margin-bottom: 24px;
                    }
                    .content{
                        p.h5{
                            margin-top: 0;
                            letter-spacing: 0.05em;
                            line-height: 30px;
                        }
                    }
                }
            }

        }
        .owl-carousel{
          
                .owl-nav{
                    .owl-prev{left: -90px;}
                    .owl-next{right: -90px;}
                }
           
        }
    }
}
.block-flower-collection{
    padding-top: 102px;
    padding-bottom: 80px;
    display: block;
    width: 100%;
    position: relative;
    &:before{
        content:"";
        display: block;
        width: 1px;
        height: 100px;
        background-color: #333;
        position: absolute;
        top: -50px;
        margin: 0 auto;
        z-index: 3;
        left: 0;
        right: 0;
    }
    a.btn{
        width: 148px;
    }
    .box-text-spring{
        display: block;
        width: 100%;
        text-align: center;
        padding-top: 45px;
        padding-bottom: 112px;
        .sub-title{
            font-size: 14px;
            font-weight: 700;
            letter-spacing: 0.2em;
            margin-bottom: 24px;
            display: block;
            text-transform: uppercase;
            line-height: 1;
            margin-top:17px;
        }
        h3{
            font-size: 40px;
            letter-spacing: 0.1em;
            font-style: italic;
            color:#333;
            line-height: 48px;
            margin-bottom:35px;
            margin-top: 0;
            text-transform: capitalize;
        }
        p{
            max-width: 500px;
            margin: 0 auto 35px;
        }
    }
    .box-img-1{
        display: inline-block;
        width: 100%;
        position: relative;
        z-index: 1;
        h4{
            font-size: 40px;
            font-weight: 700;
            font-style: italic;
            letter-spacing: 0.1em;
            line-height: 1.4;
            color: #333;
            max-width: 215px;
            position: absolute;
            bottom: 87px;
            left: 0;
            z-index: 2;
            
        }
        img{
            position: relative;
            left: -50px;
            z-index: 1;
        }
        span{
            display: inline-block;
            position: relative;
            &:after{
                content:"";
                display: block;
                width: 100%;
                height: 100%;
                border: 1px solid #333;
                position: absolute;
                top: 30px;
                right: 10px;
                max-width: 370px;
                max-height: 540px;
                z-index: 0;
            }
        }
    }
    .box-img-2{
        text-align: right;
        h4{
            font-size: 40px;
            font-weight: 700;
            letter-spacing: 0.1em;
            font-style: italic;
            color: #333;
            max-width: 210px;
            margin: 0 auto;
            text-align: left;
            z-index: 2;
            position: relative;
            line-height: 56px;
            padding-left: 25px;
        }
        img{
            margin-top: -23px;
            z-index: 1;
            margin-left: auto;
        }
    }
    .box-text-organie{
        display: block;
        width: 100%;
        padding-top: 168px;
        text-align: center;
        .h4{
            margin-top: 0;
            font-size: 18px;
            letter-spacing: 0.2em;
            font-style: italic;
            margin-bottom: 33px;
            z-index: 2;
            line-height: 1;
            display: block;
        }
        h2{
            font-weight: 900;
            color: #333;
            letter-spacing: 0.2em;
            line-height: 62px;
            margin-top: 0;
            margin-bottom: 42px;
            font-size: 72px;
            text-transform: uppercase;
            padding-left: 15px;
            float: left;
            width: 100%;
            span{
                font-size: 40px;
                width: 100%;
                float: left;  
                padding-top: 12px;
                letter-spacing: 0.2em;
            }
        }
        p{
            max-width: 500px;
            margin: 0 auto 35px;
        }
        
    }
}
.custom-col-flower{
    .col-md-5{width: 45.3%;}
    .col-md-7{width: 54.7%;}
}
.block-deal-flower{
    padding-left: 100px;
    .transition(all 0.4s ease 0s);
    img{
        .transition(all 0.4s ease 0s);
    }
    .box-content{
        display: block;
        width: 100%;
        position: relative;
        overflow: hidden;
    }
    .box-text{
        position: absolute;
        left: 50%;
        margin: 0 auto;
        z-index: 2;
        top: 50%;
        .transform(translate(-50%,-50%));
        text-align: center;
        
        h2{
            font-size: 24px;
            text-transform: uppercase;
            font-weight: 900;
            color: #333;
            margin-top: 0;
            margin-bottom: 40px;
            line-height: 1;
            letter-spacing: 0.2em;
        }
        .sale{
            font-size: 72px;
            font-weight: 700;
            color: #333;
            line-height: 1;
            margin-bottom: 38px;
            display: block;
            margin-top: 0;
        }
        p{
            letter-spacing: 0.2em;
            color: #696969;
            margin: 0;
            text-transform: uppercase;
        }
        a{
             font-size: 18px;
             font-style: italic;
             font-weight: 700;
             color: #fff;
             line-height: 1;
             letter-spacing: 0.2em;
             padding: 7px 8px;
             max-width: 130px;
             background-color: #333;
             &:hover{
                 background-color: @base-color;
             }
        }
        .box-abs{
            position: absolute;
            top: 0;
            bottom: 0;
            left: 0;
            right: 0;
            margin: 0 auto;
            text-align: center;
            padding: 75px 20px 90px;
            a{
                bottom: 90px;
                position: absolute;
                margin: 0 auto;
                left: 0;
                right: 0;
                z-index: 10;
            }
            &:after{
                content:"";
                display: block;
                left: 20px;
                right: 20px;
                bottom: 20px;
                left: 20px;
                border: 1px solid #696969;
                position: absolute;
                z-index: 9;
                top: 20px;
            }
        }
       
    }
    &:hover{
        .box-content{            
            & > img{
                .transform(scale(1.2));
            }
            
        }
    }
}
.deal-desc-hidden{
    .deal-product-cat-block{
        .single-deal-grid{
            .product-item{
                .product-photo{display: none;}
                .product-item-details{
                    width: 100%;
                    padding: 0;
                    .product-item-name,
                    .short-description,
                    .box-attribute,
                    .product-item-inner{display: none;}
                    
                }
                .deal-timer{
                    margin-top: 36px;
                    margin-bottom: 0;
                    margin-left: 52px;
                    text-align: center;
                    .countdown{
                        max-width: 464px;
                        margin: 0 auto;
                        span{
                            color: #333;
                            margin-bottom: 0;
                            b:not(.timer){
                                margin-bottom: 10px;
                                &:after{
                                    top: 22px;
                                }
                            }
                            .timer{
                                color: @base-color;
                            }
                        }
                    }
                }
            }
        }
    }
}
.title-flower2{
    .title{
        h3{
            font-size: 40px;
            font-weight: 700;
            font-style: italic;
            margin: 0 0 70px;
            color: #333;
            text-transform: capitalize;
            letter-spacing: 0.1em;
        }
    }
}
.custom-box-product-bg{
    .content-block{
         background-color: #f8f7f7;
        padding: 100px 70px 35px;
    }
    .products-grid{
        .owl-carousel{            
                .owl-nav{
                    [class*='owl-']{
                        opacity: 1;
                        .transform(none);
                        visibility: visible;
                        &:hover{
                            .transform(none);
                            
                        }
                    }
                    .owl-prev{left: -60px;margin-top: -90px;}
                    .owl-next{right: -60px;margin-top: -90px;}
                }
            
        }
    }
    
}
.container-panel{
    .sort-block-container{display: inline-block;width: 100%;}
}
.custom-title-top{
    .title-flower2{
        position: relative;
        top: 82px;
        left: 96px;
        z-index: 9;
    }
}
.custom-trending{
    &.custom-title-top{
        .title-flower2{
            top: 62px;
            h3{margin-bottom: 50px;}
        }
    }
}
.box-text-flower{
    padding-top: 44px;
    padding-bottom: 32px;
    text-align: center;
    
    .sub-title{
        font-size: 24px;
        font-weight: 900;
        letter-spacing: 0.5em;
        font-size: 24px;
        line-height: 1.3;
        text-transform: uppercase;
        color: #333;
        margin: 0 auto 37px;
        display: block;
    }
    h3{
        font-size: 80px;
        margin: 0 auto 20px;
        font-weight: 700;
        letter-spacing: 0.5em;
        text-transform: uppercase;
        color: #333;
        margin-left: 30px;
    }
    p{
        font-size: 18px;
        font-weight: 700;
        letter-spacing: 0.7em;
        color: #333;
        text-transform: uppercase;
       
    }
    .box-abs{
        position: absolute;
        top: 50%;
        left: 0;
        right: 0;
        margin: 0 auto;
        .transform(translateY(-50%));
        max-width: 720px;
    }
}
.block-fresh-spring{
    padding-right: 100px;
    .transition(all 0.4s ease 0s);
    .box-content{
        display: block;
        width: 100%;
        position: relative;
        overflow: hidden;
        img{
            .transition(all 0.4s ease 0s);
        }
    }
    h6{
            margin: 0;
            line-height: 1;
            color: #fff;
            font-size: 14px;
            font-weight: 700;
            letter-spacing: 0.3em;
            text-transform: uppercase;
            position: absolute;
           left: 0;
           right: 0;
           text-align: center;
        }
    h6.first{
            top: 12.5%;
            margin-top: -2px;
        }
    h6.last{
            bottom: 12.5%;
            margin-bottom: -3px;
            a{color: #fff;
                  &:hover{
                  color: @base-color;
              }
            }
        }
    .box-text{
        position: absolute;
        top: 50%;
        .transform(translateY(-50%));
        left: 0;
        right: 0;
        max-width: 660px;
        margin: 0 auto;
        
        .box-bg-white{
            background-color: #fff;            
            max-width: 660px;
            padding-top: 95px;
            padding-bottom: 100px;
            position: absolute;
            top: 50%;
            .transform(translateY(-50%));
            left: 0;
            right: 0;
            text-align: center;
            margin: 0 auto;
            .transition(all 0.4s ease 0s);
            img{margin: 0 auto;max-width: 100%;}
            h3{
                font-size: 72px;
                line-height: 1;
                font-weight: 700;
                text-transform: uppercase;
                letter-spacing: 0.4em;
                width: auto;
                margin: 0 auto;
                text-align: center;
                span{
                    background: url(../images/bg-fresh.jpg) center center scroll no-repeat;
                    width: auto;
                    display: inline-block;
                }
            }
            h4{
                font-size: 34px;
                text-transform: uppercase;
                letter-spacing: 0.43em;
                color: #333;
                margin-top: 26px;
                line-height: 1;
                margin-bottom: 0;
                margin-left: 13px;
            }
            &:after{
                content:"";
                display: block;
                position: absolute;
                left: 20px;
                right: 20px;
                bottom: 20px;
                top:20px;
                border: 1px solid #e0e0e0;
                
            }
        }
        
    }
    &:hover{
        .box-content{
            & > img {
                .transform(scale(1.2));
            }
        }
    }
}
.footer2{
    address{font-size: 15px;}
}
.border-title{
    .title-flower2{
        
        .title{
            position: relative;
            width: 100%;
            text-align: center;
            overflow: hidden;
            h3{
                width: auto;
                position: relative;
                display: inline-block;
                margin-bottom: 73px;
                &:after,
                    &:before{
                    content:"";
                    width: 999px;
                    height: 1px;
                    background-color: #696969;
                    display: inline-block;
                    position: absolute;
                    top: 50%;
                    margin-top: 3px;
                }
                &:after{
                   left: 100%;
                   margin-left: 53px;
                }
                &:before{
                    right: 100%;
                    margin-right: 55px;
                }
            }
        }
    }
}
//HOMEPAGE FLOWER 3
.pagination-white{
    .slider_mgs_carousel{
        &.owl-carousel{
            .owl-dots{
                .owl-dot{
                    span{
                        background-color: #fff;
                        border: 1px solid #fff;
                    }
                    &:hover,
                        &.active{
                        span{
                            background-color: transparent;
                            border: 1px solid #fff;
                        }
                    }
                }
            }
        }
    }
}
.block-about-flower3{
    .box-img-main{
        display: inline-block;
        width: 100%;
        position: relative;        
        .img-1{
            position: relative;
            display: table;
            &:before{
                content:"";
                display: block;
                position: absolute;
                width: 200px;
                height: 205px;
                border: 10px solid @base-color;
                position: absolute;
                bottom: -155px;
                left: 72px;
            }
            &:after{
                content:"";
                display: block;
                width: 200px;
                height: 205px;
                border: 5px solid #efefef;
                position: absolute;
                top: 50px;
                right: -56px;
            }
        }
        .img-2{
            position: absolute;
            top: 194px;
            right: 64px;
        }
    }
    .title{
        margin-top: 30px;
        margin-bottom: 90px;
        
        img{margin-left: 86px;}
        h5{
            margin: 0;
            font-size: 18px;
            font-style: italic;
            color: #333;
            letter-spacing: 0.1em;
            line-height: 2;
            margin-top: -80px;
        }
        
    }
    .item-about{
        display: inline-block;
        width: 100%;
        max-width: 380px;
        margin-bottom: 46px;
      
        .h2{
            display: block;
            font-size: 14px;
            font-weight: 700;
            letter-spacing: 0.2em;
            margin-top: 0;
            margin-bottom: 13px;
            color: #333;
            text-transform: uppercase;
            
        }
        p{
            margin: 0;
            line-height: 24px;
        }
    }
}
.custom-title-top-center{
    .title-flower2{
        .title{
            h3{
                margin-top: -30px;
                text-align: center;
                margin-bottom: 122px;
            }
        }
    }
}
.custom-promo-button{
    .promobanner{
        .top-middle{
            top: 40%;
            margin-top: -35px;
        }
        .btn-promo-banner{
            font-size: 18px;
            color: #fff;
            letter-spacing: 0.4em;
            font-weight: bold;
            text-transform: none;
            line-height: 1;
            border: none;
            background-color: #333;
            padding: 0 0 1px;
            border-radius: 0;
            width: 146px;
            text-align: right;
            margin-top: 5px;
            &:hover{
                background-color: @base-color;
            }
        }
    }
}
.block-img-deal{
    display: block;
    width: 100%;
    position: relative;
    text-align: center;
    img{margin: 0 auto;}
    h3{
        font-size: 48px;
        color: #333;
        letter-spacing: 0.2em;
        text-transform: uppercase;
        line-height: 1;
        position: absolute;
        top: -26px;
        left: 0;
        right: 0;
        margin: 0 auto;
        margin-left: 15px;
    }
    p.h2{
        font-size: 24px;
        font-weight: 700;
        letter-spacing: 0.3em;
        color: @base-color;
        position: absolute;
        top: 60px;
        left: 0;
        right: 0;
        margin: 0 auto;
        padding-left: 16px;
    }
}
.fotorama--fullscreen{
    z-index: 1201 !important;
}
.custom-deal-layout-3{
    .single-deal-grid{
        .product-item{
            display: inline-block;
            width: 100%;
            max-width: 500px;
            text-align: center;
            .box-content{
                background-color: #f8f7f7;
                padding: 68px 50px 72px;             
            }
            .box-attribute{
                margin-bottom: 28px;
                dl{
                    margin-bottom: 5px;
                    margin-top: 6px;
                    dt,
                    dd{
                        width: 50%;
                        
                    }
                    dd{
                        padding-left: 10px;
                        text-align: left;
                        .price-box{
                            .price{
                                font-style: italic;
                                font-size: 16px;
                                
                            }
                            .old-price{display: none;}
                            .special-price .price{
                                color: @base-color;
                            }
                        }
                    }
                    dt{
                        padding-right: 20px;
                        text-align: right;
                        
                    }
                    &:first-child{margin-top: 0;}
                }
            }
            .short-description{line-height: 26px;margin-bottom: 42px;}
            .deal-timer{
                margin-top: 16px;
                margin-bottom: 0;
                .countdown{
                    max-width: 450px;
                    span{
                        color: #333;
                        b:not(.timer){
                            &:after{
                                top: 23px;
                            }
                        }
                        .timer{
                            color: @base-color;
                        }
                    }
                }
            }
            .product-item-actions{
                .btn-cart{
                    margin: 0 auto;
                }
            }
        }
    }
}
.background-bottom-center{
    background-position: bottom center;
}
.custom-deal-layout3{
    .deal-product-cat-block{
         width: 100%;
        float: right;
        display: inline-block;
        max-width: 500px;
    }
}
.custom-title-top-deal{
    .title-flower2{
        position: relative;
        bottom: -64px;
        z-index: 4;
        float: right;
        width: 100%;
        max-width: 500px;
        text-align: center;
        .title{
           h3{margin-bottom: 46px;text-transform: none;padding-left: 5px;text-transform: none;}
        }
    }
}
.block-flower-summer{
    width: 100%;
    text-align: center;
    max-width: 500px;
    margin: 0 auto;
    .sub-title{
        display: block;
        font-size: 14px;
        font-weight: 700;
        margin: 0 auto 30px;
        letter-spacing: 0.2em;
        text-transform: uppercase;
    }
    h3{
        font-size: 40px;
        font-style: italic;
        letter-spacing: 0.1em;
        text-transform: capitalize;
        color: #333;
        line-height: 48px;
        margin-bottom: 54px;
        margin-top: 0;
    }
    .btn-default{
        border: none;
        background-color: #fff;
        color: @base-color;
        width: 148px;
        &:hover{
            color: #fff;
            background-color: @base-color;
        }
    }
}
.block-spring-flower{
    display: inline-block;
    width: 100%;
    text-align: center;
    padding: 270px 0 100px;
    position: relative;
    img{
        margin: 0 auto;
    }
    h2{
        font-size: 24px;
        font-weight: 900;
        letter-spacing: 0.3em;
        color: #696969;
        margin: 0 auto 35px;
    }
    h3{
        font-size: 48px;
        letter-spacing: 0.2em;
        color: #333;
        text-transform: uppercase;
        margin: 0 auto;
    }
    a{
        font-size: 18px;
        font-weight: 900;
        letter-spacing: 0.3em; 
        text-transform: uppercase;
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        margin: 0 auto;
    }
    .text{
        position: absolute;
        top: 180px;
        bottom: 34px;
        left: 0;
        right: 0;
    }
}
.no-padding-right{
    padding-right: 0 !important;
}
.no-padding-left{
    padding-left: 0 !important;
}
.block-flower-about{
    width: 100%;
    text-align: center;
    max-width: 740px;
    margin: 0 auto;   img{
        margin: 0 auto;   
        max-width: 100%;
    }
    h3{
        font-size: 24px;
        font-style: italic;
        letter-spacing: 0.1em;
        line-height: 2;
        color: #333;
        margin: 0 auto;
        margin-top: 28px;
    }
}
.custom-promobanner{
    
    .promobanner{
        margin-bottom: 0;
        img{
            width: 100%;
        }
    }
}
.promobanner{
    .box-white{
        font-size: 14px;
        font-weight: 700;
        letter-spacing: 0.2em;
        text-transform: uppercase;
        color: #333;
        background-color: #fff;
        line-height: 1;
        padding: 35px 0;
        width: 212px;
        text-align: center;
        .transition(all 0.4s ease 0s);
        &:hover{
            background-color: @base-color;
            color: #fff;
        }
    }
    .banner-fresh{
        padding: 46px 0;
        text-align: center;
        .sub-title{
            font-size: 14px;
            font-weight: 700;
            letter-spacing: 0.2em;
            color: #333;
            margin-bottom: 120px;
            display: block;
        }
        h3{
            font-size: 40px;
            font-weight: 700;
            letter-spacing: 0.5em;
            color: #333;
            text-transform: uppercase;
            margin: 0;
            line-height: 1;
            margin-bottom: 5px;
            margin-left: 20px;
        }
        p{
            font-size: 24px;
            color: #333;
            letter-spacing: 0.5em;
            text-transform: uppercase;
            margin-bottom: 100px;
            white-space: nowrap;
            margin-left: 10px;
            
        }
        a{
            font-size: 18px;
            
            letter-spacing: 0.2em;
            font-weight: 700;
            
        }
    }
    .banner-wedding{
        padding-right: 38px;
        padding-bottom: 25px;
        h3{
            font-size: 40px;
            font-weight: 900;
            color: #333;
            letter-spacing: 0.15em;
            margin: 0;
            margin-bottom: 10px;
            line-height: 0.8;
            padding-left: 10px;
        }
        p{
            font-size: 14px;
            font-weight: 700;
            letter-spacing: 0.25em;
            text-transform: uppercase;
            margin: 0;
            color: #696969;
        }
    }
    .banner-beautiful{
        padding-right: 37px;
      
        h3{
            font-size: 40px;
            font-weight: 900;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            margin: 0 0 10px;
            color: #333;
            padding-top: 5px;
            margin-right: -5px;
        }
        .h4{
            font-size: 14px;
            font-weight: 700;
            font-style: italic;
            letter-spacing: 0.2em;
            padding-left: 10px;
            padding-right: 5px;
            line-height: 20px;
            min-height: 20px;
            background-color: #fff;
            margin: 0;
            color: #696969;
            float: right;
        }
    }
}
.block-amazing-services{
    .block-content{
        display: inline-block;
        width: 100%;
        padding-top: 20px;
        .col-md-4{
            .box-item-services:first-child{
                margin-top: 68px;
            }
        }
        .box-item-services{
            display: inline-block;
            width: 100%;
            margin-bottom: 87px;
            .icon-flower{
                display: inline-block;
                width: 70px;
                height: 70px;
                text-align: center;
                background-color: #fff;
                padding: 14px 0;
                text-align: center;
                margin-right: 30px;
                border-radius: 50%;
                float: left;
                img{
                    margin: 0 auto;
                }
            }
            .text{
                display: inline-block;
                width: calc(~"100% - 100px");
                h4{
                    font-size: 18px;
                    font-weight: 700;
                    letter-spacing: 0.1em;
                    color: #333;
                    margin-top: 0;
                    margin-bottom: 12px;
                }
                p{
                    line-height: 24px;
                }
               
            }
            &.icon-right{
                .icon-flower{
                    margin-left: 30px;
                    float: right;
                    margin-right: 0;
                }
            }
        }
        .icon-right{
            text-align: right;
            float: right;
        }
        .main-content{
            text-align: center;
            width: 100%;
            display: block;
            img{
                margin: 0 auto;
            }
        }
    }
}
.title-bottom62{
    .title-block{
        margin-bottom: 62px;
    }
}
.title-bottom70{
    .title-block{margin-bottom: 70px;}
}
.mgs-blog-lastest-posts{
    .owl-carousel{
        .owl-nav{
            .owl-next{
                right: -16px;
            }
            .owl-prev{
                left: -16px;
            }
        }
    }
}
.no-margin{
    .promobanner{
        margin: 0 !important;
    }
}
.custom-banner{
    .promobanner{
        display: flex;
         justify-content: center;
        -moz-box-pack: center;
        -webkit-justify-content: center;
        width: 100%;
         flex-grow: 1;
         -webkit-flex-grow: 1;
        -moz-box-flex: 1;
        display: -webkit-flex;
        img{
            height: 100%;
            max-width: 1000px;
        }
    }
}
.onepage-slider{
    .page{
        overflow: hidden;
        width: 100%;
        height: 100%;
    }
}
.block-custom-product{
    display: flex;
    width: 100%;
    position: relative;
    flex-grow: 1;
    -webkit-flex-grow: 1;
    flex-direction: column;
    -moz-box-flex: 1;
    -webkit-direction: column;
    justify-content: center;
    -webkit-justify-content: center;
    -moz-justify-content: center;
    -moz-box-pack: center;
    text-align: center;
    display: -webkit-flex;
    height: 100%;
    img{
        max-width: 100%;
    }
    .box-price{
        font-size: 18px;
        font-weight: 900;
        color: #696969;
        letter-spacing: 0.3em;
        text-transform: uppercase;
        line-height: 1;
        display: block;
        margin-bottom: 28px;
    }
    h3{
        font-size: 48px;
        font-weight: 700;
        letter-spacing: 0.2em;
        color: #333;
        text-transform: capitalize;
        margin: 0 auto 15px;
    }
    a{
        font-size: 18px;
        font-weight: 900;
        letter-spacing: 0.3em;
        text-transform: uppercase;       
        margin: 0 auto;
        display: table;
        
        &:after{
            content:"";
            display: block;
            width: 100%;
            height: 1px;
            background-color: @base-color;
            opacity: 0;
            .transition(all 0.35s ease 0s);
        }
        &:hover{
            &:after{
                opacity: 1;
            }
        }
    }
}
.home-content{
    display: block;
    position: relative;
    overflow: hidden;
    width: 100%;
}
// END HOMEPAGE

.onepage-wrapper {
  width: 100%;
  height: 100%;
  display: block;
  position: relative;
  padding: 0;
  -webkit-transform-style: preserve-3d;
  .section{
       width: 100%;
  height: 100%;
  }
}
.onepage-pagination {
  position: absolute;
  right: 40px;
  top: 50%;
  z-index: 5;
  list-style: none;
  margin: 0;
  padding: 0;
    li{
        padding: 0;
      text-align: center;
        a{
            padding: 15px;
            width: 8px;
            height: 8px;
            display: block;
            .transition(all 0.4s ease 0s);
            &:before{
                content: '';
                position: absolute;
                width: 8px;
                height: 8px;
                background-color: #ababab;
                border-radius: 50%;
                -webkit-border-radius: 50%;
                -moz-border-radius: 50%;
            }
            &.active{
                &:before{
                    width: 12px;
                    height: 12px;
                    background: none;
                    border: 1px solid #333;
                    margin-top: -4px;
                    left: 13px;
                }
            }
        }
    }
}

.disabled-onepage-scroll, 
.disabled-onepage-scroll .wrapper {
  overflow: auto;
}

.disabled-onepage-scroll .onepage-wrapper .section {
  position: relative !important;
  top: auto !important;
  left: auto !important;
}
.disabled-onepage-scroll .onepage-wrapper {
  -webkit-transform: none !important;
  -moz-transform: none !important;
  transform: none !important;
  -ms-transform: none !important;
  min-height: 100%;
}
.disabled-onepage-scroll .onepage-pagination {
  display: none;
}

body.disabled-onepage-scroll, .disabled-onepage-scroll .onepage-wrapper, html {
  position: inherit;
}