/*--------------------------/*

[Table of contents]
[Color codes]
    Background: #ffffff
    Body Color : #666666
    Accent color: #eec15b
[Typography]
    Body:       14px/24px Arimo, sans-serif;
    Heading:    Montserrat, sans-serif;
    Input, textarea: 14px/24px Arimo, sans-serif;

[Component module]

    HEADING SECTION
    HEADER
    PAGE LAYOUT
    PRODUCT ITEM
    SINGLE PRODUCT
    WIDGET
    SHORTCODE
    BLOG
    FOOTER
    HOME SLIDER
    SECTION
    RESPONSIVE

/*--------------------------/*

/*-------------------
COMMON STYLES
---------------------*/
body{
    font-family: 'Arimo', sans-serif;
    font-size: 14px;
    line-height: 24px;
    color: #666666;
    font-weight: 400;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}
img{
    max-width: 100%;
}
h1,h2,h3,h4,h5,h6{
    line-height: 1.3em;
    margin-top: 0;
    color: #444444;
    font-family: 'Montserrat', sans-serif;
}

h1{font-size: 30px;}
h2{font-size: 24px;}
h3{font-size: 20px;}
h4{font-size: 18px;}
h5{font-size: 16px;}
h6{font-size: 14px;}
a{
    color: #eec15b;
    -webkit-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
    text-decoration: none;
}
a:hover, a:focus, a:active{
    text-decoration: none;
    color: inherit;
    outline: none;
}
p{margin-bottom: 24px;}
ul, ol{
    margin: 0;
    padding: 0;
}
ul ul, ol ol, ul ol, ol ul{
    padding-left: 30px
}
blockquote{
    border-width: 3px;
    background-color: transparent;
    font-family: 'Merriweather', serif;
    font-size: 14px;
    font-style: italic;
    color: #333;
}
input[type="text"],
input[type="email"],
textarea,
input[type="password"],
input[type="tel"],
select{
    border: 1px solid #e5e5e5;
    padding: 7px 25px;
}
input[type="text"]:focus,
input[type="email"]:focus,
textarea:focus,
input[type="password"]:focus,
a:focus,
button:focus,
select:focus{
    outline: none;
}
::-webkit-input-placeholder {
   color: #88898c;
   transition: color 0.5s ease 0.1s;
}
:-moz-placeholder { /* Firefox 18- */
   color: #88898c;
    transition: color 0.5s ease 0.1s;
}
::-moz-placeholder {  /* Firefox 19+ */
   color: #88898c;
    transition: color 0.5s ease 0.1s;
}
:-ms-input-placeholder {
   color: #88898c;
    transition: color 0.5s ease 0.1s;
}
table {
    border-collapse: collapse;
    width: 100%;
    margin-bottom: 10px;
}
table, th, td {
    border:1px solid #ececec;
}

th, td{
    padding: 10px;
}
.button,
input[type="submit"],
button{
    color: #444444;
    display: inline-block;
    padding: 8px 35px;
    text-align: center;
    text-transform: uppercase;
    font-size: 10px;
    font-family: 'Montserrat';
    -webkit-transition: all 0.5s ease 0s;
    -o-transition: all 0.5s ease 0s;
    transition: all 0.5s ease 0s;
    position: relative;
    background-color: #fff;
    border: 1px solid #e5e5e5;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -ms-border-radius: 20px;
    -o-border-radius: 20px;
    border-radius: 20px;
}
.button:before,
input[type="submit"]:before,
button:before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    background-color: rgba(255,255,255,0.09);
    width: 0;
    -webkit-transition: all 0.5s ease 0s;
    -o-transition: all 0.5s ease 0s;
    transition: all 0.5s ease 0s;
}
.button:hover:before,
input[type="submit"]:hover:before,
button:hover:before{
    width: 100%;
}
.button:hover,
input[type="submit"]:hover,
button{
    color: #fff;
}
.input-control{
    width: 100%;
}

.button.primary,
.single_add_to_cart_button{
    background-color: #e9c77b;
    color: #fff;
    border-color: #e9c77b;
}

.buynwl_button{
    background-color: #13416a;
    color: #fff;
    border-color: #13416a;
    /*width: 250px;*/
    border-radius: 45px;
}

.buynwl_button:hover{
    background-color: #111;
    color: #fff;
    border-color: #111;
}

.free_button{
    background-color: #13416a;
    color: #fff;
    border-color: #13416a;
    width: 250px;
    border-radius: 45px;
}

.free_button:hover{
    background-color: #111;
    color: #fff;
    border-color: #111;
}
.button.primary:hover,
.single_add_to_cart_button:hover{
    background-color: #111;
    color: #fff;
    border-color: #111;
}

.button.medium{
    padding: 12px 40px;
    -webkit-border-radius: 25px;
    -moz-border-radius: 25px;
    -ms-border-radius: 25px;
    -o-border-radius: 25px;
    border-radius: 25px;
}
.button.big{
    padding: 15px 50px;
    -webkit-border-radius: 30px;
    -moz-border-radius: 30px;
    -ms-border-radius: 30px;
    -o-border-radius: 30px;
    border-radius: 30px;
}
.scroll_top{
    width: 40px;
    height: 40px;
    position: fixed;
    z-index: 99999999999999999;
    right: 13px;
    bottom: 16px;
    display: none;
    color: #fff;
    text-align: center;
    line-height: 40px;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    border-radius: 50%;
}

.scroll_top:hover,
.scroll_top:focus,
.scroll_top:active {
    color: #fff;
    background-color: #111111;
}
.merriweather{
    font-family: 'Merriweather', serif;
    font-size: 12px;
    font-style: italic;
}
.in-stock{
    color: #87af66;
    font-size: 13px;
    font-style: italic;
}
span.line{
    display: block;
    height: 1px;
    background-color: #e8e8e8;
    width: 100%;
}
/* BANNER */
.bannereffect-1{
    display: block;
    position: relative;
    overflow: hidden;
}
.bannereffect-1:before {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255,255,255,0.2);
    content: '';
    -webkit-transition: -webkit-transform .6s;
    transition: transform .6s;
    -webkit-transform: scale3d(1.9,1.4,1) rotate3d(0,0,1,45deg) translate3d(0,100%,0);
    transform: scale3d(1.9,1.4,1) rotate3d(0,0,1,135deg) translate3d(0,100%,0);
    opacity: 0;
    filter: alpha(opacity=0);
    visibility: hidden;
}
.bannereffect-1:hover:before {
    -webkit-transform: scale3d(1.9,1.4,1) rotate3d(0,0,1,45deg) translate3d(0,-100%,0);
    transform: scale3d(1.9,1.4,1) rotate3d(0,0,1,135deg) translate3d(0,-100%,0);
    opacity: 1;
    filter: alpha(opacity=100);
    visibility: initial;
}
.bannereffect-2{
    display: block;
    position: relative;
}
.bannereffect-2:before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    -webkit-transition: all .6s ease-in-out;
    -moz-transition: all .6s ease-in-out;
    -ms-transition: all .6s ease-in-out;
    -o-transition: all .6s ease-in-out;
    transition: all .6s ease-in-out;
}
.bannereffect-2:after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    -webkit-transition: all .6s ease-in-out;
    -moz-transition: all .6s ease-in-out;
    -ms-transition: all .6s ease-in-out;
    -o-transition: all .6s ease-in-out;
    transition: all .6s ease-in-out;
}
.bannereffect-2:hover:before {
    right: 50%;
    left: 50%;
    background: rgba(255,255,255,0.2);
}
.bannereffect-2:hover:after {
    top: 50%;
    bottom: 50%;
    background: rgba(255,255,255,0.2);
}

.bannereffect-3{
    display: block;
    position: relative;
}
.bannereffect-3:before,
.bannereffect-3:after{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    bottom: 0;
    background-color: rgba(0,0,0,0.4);
    -webkit-transition: all 0.8s ease 0s;
    -o-transition: all 0.8s ease 0s;
    transition: all 0.8s ease 0s;
    opacity: 0;
}
.bannereffect-3:after{
    left: inherit;
    right: 0;
    width: 0%;
    background-color: rgba(0,0,0,0.3);
    -webkit-transition: all 0.1s ease 0s;
    -o-transition: all 0.1s ease 0s;
    transition: all 0.1s ease 0s;
}
.bannereffect-3:hover:before{
    width: 0%;
    opacity: 1;
}
.bannereffect-3:hover:after{
    width: 100%;
}
.bannereffect-4{
    display: block;
    position: relative;
}
.bannereffect-4:before{
    content: "";
    position: absolute;
    top: 25px;
    left: 25px;
    bottom: 25px;
    right: 25px;
    z-index: 9;
    border-top: 1px solid rgba(255, 255, 255, 0.8);
    border-bottom: 1px solid rgba(255, 255, 255, 0.8);
    transform: scale(0, 1);
}
.bannereffect-4:after {
    content: "";
    position: absolute;
    top: 25px;
    left: 25px;
    bottom: 25px;
    right: 25px;
    z-index: 9;
    border-left: 1px solid rgba(255, 255, 255, 0.8);
    border-right: 1px solid rgba(255, 255, 255, 0.8);
    transform: scale(1, 0);
}
.bannereffect-4:hover:before,
.bannereffect-4:hover:after{
    transform: scale(1);
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
}
/* OWL */
.owl-carousel{
    z-index: 0;
}
.owl-carousel .owl-prev,
.owl-carousel .owl-next{
    display: inline-block;
    width: 58px;
    height: 58px;
    text-align: center;
    line-height: 58px;
    background-color: rgba(0,0,0,0.3);
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    border-radius: 50%;
    font-size: 20px;
    font-weight: bold;
    color: #fff;
}
.nav-center .owl-prev,
.nav-center .owl-next{
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    -webkit-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
    opacity: 0;
    filter: alpha(opacity=0);
    visibility: hidden;
    z-index: 10;
}
.nav-center .owl-next{
    right: -60px;
}
.nav-center .owl-prev{
    left: -60px;
}
.nav-center:hover .owl-next,
.nav-center:hover .owl-prev{
    opacity: 1;
    filter: alpha(opacity=100);
    visibility: inherit;
}
.nav-center:hover .owl-next{
    right: -29px;
}
.nav-center:hover .owl-prev{
    left: -29px;
}

.nav-style-1 .owl-prev,
.nav-style-1 .owl-next{
    width: 48px;
    height: 48px;
    line-height: 48px;
    font-size: 18px;
}
.nav-center.nav-style-1:hover .owl-next{
    right: -24px;
}
.nav-center.nav-style-1:hover .owl-prev{
    left: -24px;
}

.nav-style-2 .owl-prev,
.nav-style-2 .owl-next{
    width: 30px;
    height: 30px;
    line-height: 30px;
    font-size: 14px;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0;
    border-radius: 0;
}

.nav-center.nav-style-2:hover .owl-next{
    right: -15px;
}
.nav-center.nav-style-2:hover .owl-prev{
    left: -15px;
}

.owl-carousel-mobile.owl-carousel{
    margin: 0;
}
.owl-carousel-mobile.owl-carousel .item-owl-mobile{
    padding: 0;
    margin-bottom: 0;
}

.nav-style-3 .owl-prev,
.nav-style-3 .owl-next{
    width: 35px;
    height: 35px;
    line-height: 35px;
    font-size: 14px;
    color: #fff;
    background-color: rgba(255,255,255,0.2);
}
.nav-center.nav-style-3:hover .owl-next{
    right: -17px;
}
.nav-center.nav-style-3:hover .owl-prev{
    left: -17px;
}

.nav-style-4 .owl-prev,
.nav-style-4 .owl-next{
    width: 40px;
    height: 40px;
    line-height: 40px;
    font-size: 16px;
    color: #aaa;
    background-color:#fff;
}
.owl-carousel.nav-style-4 .owl-prev:hover,
.owl-carousel.nav-style-4 .owl-next:hover{
    background-color: #737373;
    color: #fff;
}

.nav-center.nav-style-4:hover .owl-next{
    right: -20px;
}
.nav-center.nav-style-4:hover .owl-prev{
    left: -20px;
}

.nav-style-5 .owl-prev,
.nav-style-5 .owl-next{
    width: 50px;
    height: 50px;
    line-height: 50px;
    font-size: 14px;
    color: #fff;
    background-color: rgba(0,0,0,0.2);
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0;
    border-radius: 0;
}


.nav-style-6 .owl-prev,
.nav-style-6 .owl-next{
    width: auto;
    height: 24px;
    line-height: 24px;
    font-size:14px;
    color: #444;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0;
    border-radius: 0;
    background-color: transparent;
    margin: 0 8px;
}
.nav-style-6 .owl-next{
    margin-right: 0;
}
.nav-style-6 .owl-prev{
    margin-left: 0;
}

.nav-style-7 .owl-prev,
.nav-style-7 .owl-next{
    width: 40px;
    height: 40px;
    line-height: 38px;
    font-size: 16px;
    color: #d4d4d4;
    background-color: transparent;
    border: 1px solid #d4d4d4;
}
.nav-style-7 .owl-prev:hover,
.nav-style-7 .owl-next:hover{
    color: #fff;
}
.nav-center.nav-style-7:hover .owl-prev{
    left: 10px;
}
.nav-center.nav-style-7:hover .owl-next{
    right: 10px;
}

.nav-center.nav-style-5:hover .owl-next{
    right: 0;
}
.nav-center.nav-style-5:hover .owl-prev{
    left: 0;
}


.nav-style-8 .owl-prev,
.nav-style-8 .owl-next{
    width: 25px;
    height: 30px;
    text-align: center;
    line-height: 28px;
    border: 1px solid #e6e6e6;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0;
    border-radius: 0;
    background-color: #fff;
    color: #666;
    font-size: 14px;

}

.nav-style-8 .owl-prev:hover,
.nav-style-8 .owl-next:hover{
    color: #666;
    background-color: #fff!important;
}
.nav-top-left .owl-nav{
    position: absolute;
    top: -50px;
    left: 0;
}
.nav-top-right .owl-nav{
    position: absolute;
    top: -50px;
    right: 0;
}
.nav-top-center .owl-nav{
    position: absolute;
    top: -50px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    transform: translateX(-50%);
}

/* TAB */
.tab-container {
    position: relative;
}
.tab-container .tab-panel {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    visibility: hidden;
}
.tab-container .tab-panel.active {
    opacity: 1;
    visibility: inherit;
    position: inherit;
    -vendor-animation-duration: 0.3s;
    -vendor-animation-delay: 1s;
    -vendor-animation-iteration-count: infinite;
}
.bg-parallax {
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    position: relative;
}
/*----------------
HEADING SECTION
----------------*/
.heading-section{
    margin-bottom: 30px;
}
.heading-section .title{
    text-transform: uppercase;
    margin-bottom: 0;
}
.heading-section:after {
    display: block;
    font-family: 'FontAwesome';
    content: "\f106\f106\f106\f106\f106\f106\f106\f106";
    margin-top: 3px;
    font-size: 12px;
}

.heading-section.style2{
    margin-bottom: 30px;
}
.heading-section.style2 .title{
    font-size: 18px;
    color: #222;
    margin-bottom: 5px;
}
.heading-section.style2:after{
    display: none;
}
.heading-section.style2 .subtitle{
    font-family: 'Merriweather', serif;
    font-style: italic;
    font-size: 12px;
    color: #888;
}
.heading-section.style3{
    border-bottom: 1px solid #e8e8e8;
}
.heading-section.style3 .title{
    font-weight: 700;
    display: inline-block;
}
.heading-section.style3 .title:after{
    content: "";
    display: block;
    height: 1px;
    background-color: #000;
    margin-top: 5px;
}
.heading-section.style3:after{
   display: none;
}

.heading-section.style4 .title{
    font-size: 15px;
    color: #333333;
}
.heading-section.style4:after{
    display: none;
}
.heading-section.style4 .title:after{
    content: '';
    display: block;
    height: 2px;
    width: 40px;
    margin-top: 10px;
}
/*----------------
HEADER
----------------*/
#header-ontop {
/*    position: absolute;
    visibility: hidden;
    opacity: 0;*/
    left: 0;
    right: 0;
    top: 0;
}
#header-ontop.on-sticky {
    visibility: inherit;
    opacity: 1;
}
.header.ontop {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    -webkit-transition: all 0.5s ease 0s;
    -o-transition: all 0.5s ease 0s;
    transition: all 0.5s ease 0s;
    background-color: #fff;
}
.top-bar{
    background-color: #212121;
}
.top-bar-left{
    display: table;
    float: left;
}
.top-bar-left .logo,
.top-bar-left .form-search-wapper{
    display: table-cell;
    padding: 47px 0;
    border-left-width:1px;
    border-left-style: solid;
    border-left-color: rgba(56,56,56,0.6);
}
.top-bar-left .logo{
    padding-left: 100px;
    padding-right: 100px;
    background-color: #1d1d1d;
}
.top-bar-left .form-search-wapper{
    padding-left: 60px;
    padding-right: 20px;
}
.top-bar-left .form-search{
    position: relative;
}
.top-bar-left .form-search .input{
    width: 100%;
    background-color: transparent;
    padding: 10px 0;
    border: none;
    padding-left: 45px;
    font-family: 'Merriweather', serif;
    font-size: 12px;
    font-style: italic;
}
.top-bar-left .btn-search{
    position: absolute;
    top: 0;
    left: 0;
    padding: 0;
    background-color: transparent;
    border: none;
    width: 44px;
    height: 44px;
    font-size: 18px;
    color: #b0b0b0;
}
.top-bar-left .btn-search:before{
    display: none;
}
.top-bar-right{
    display: inline-block;
    float: right;
}

.top-bar-menu{
    padding: 0;
    margin: 0;
    display: table;
    border-right-width:1px;
    border-right-style: solid;
    border-right-color: rgba(56,56,56,0.6);
    float: left;
}
.top-bar-menu.right{
    float: right;
    font-family: "montserrat",sans-serif;
}
.top-bar-menu li{
    list-style: none;
    position: relative;
}
.top-bar-menu>li{
    display: inline-block;
    float: left;
}
.top-bar-menu>li>a{
    display: inline-block;
    padding: 57px 60px;
    border-left-width:1px;
    border-left-style: solid;
    border-left-color: rgba(56,56,56,0.6);
    font-size: 11px;
    color: #eee;
    font-family: 'Montserrat';
}
.top-bar-menu>li>a .menu-icon{
    font-size: 14px;
    line-height: inherit;
}
.top-bar-menu .sub-menu{
    position: absolute;
    left: 0;
    top: 100%;
    background-color: #fff;
    min-width: 225px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
    -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
    padding: 0;
    margin: 0;
    visibility: hidden;
    opacity: 0;
    filter: alpha(opacity=0);
    -webkit-transition: opacity 0.4s ease, -webkit-transform 0.4s ease, visibility 0.4s linear 0s;
    -moz-transition: opacity 0.4s ease, -moz-transform 0.4s ease, visibility 0.4s linear 0s;
    -ms-transition: opacity 0.4s ease, -ms-transform 0.4s ease, visibility 0.4s linear 0s;
    -o-transition: opacity 0.4s ease, -o-transform 0.4s ease, visibility 0.4s linear 0s;
    transition: opacity .4s ease, transform .4s ease, visibility .4s linear 0s;
    z-index: 10;
}
.top-bar-menu .show-submenu>.sub-menu{
    visibility: inherit;
    opacity: 1;
    filter: alpha(opacity=100);
}
.top-bar-menu .sub-menu>li{
    padding: 0 30px;
}
.top-bar-menu .sub-menu>li>a{
    display: inline-block;
    border-bottom: 1px solid #e8e8e8;
    padding: 13px 20px;
    width: 100%;
    font-size: 14px;
    color: #666;
    text-align: left;
}
.top-bar-menu>li:nth-last-child(1) .sub-menu,
.top-bar-menu>li:nth-last-child(2) .sub-menu{
    right: 0;
    left:inherit;
}
.top-bar-menu .sub-menu>li>a .menu-icon{
    color: #bbbbbb;
    margin-right: 15px;
}

.top-bar-menu>li>.cart-link{
    padding: 57px 40px;
}
.topbar-bar{
    position: absolute;
    top: 0;
    left: 0;
    display: none;
    width: 35px;
    height: 35px;
    background-color: #000;
    color: #fff;
    text-align: center;
    z-index: 3;
    line-height: 35px;
}
/* Mini cart */
.mini-cart{
    position: relative;
}
.mini-cart .mini-cart-content{
    padding: 22px;
    position: absolute;
    right: 0;
    top: 100%;
    left: inherit;
    background-color: #fff;
    min-width: 290px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
    -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
    visibility: hidden;
    opacity: 0;
    filter: alpha(opacity=0);
    -webkit-transition: opacity 0.4s ease, -webkit-transform 0.4s ease, visibility 0.4s linear 0s;
    -moz-transition: opacity 0.4s ease, -moz-transform 0.4s ease, visibility 0.4s linear 0s;
    -ms-transition: opacity 0.4s ease, -ms-transform 0.4s ease, visibility 0.4s linear 0s;
    -o-transition: opacity 0.4s ease, -o-transform 0.4s ease, visibility 0.4s linear 0s;
    transition: opacity .4s ease, transform .4s ease, visibility .4s linear 0s;
    z-index: 10;
}
.mini-cart:hover .mini-cart-content{
    visibility: inherit;
    opacity: 1;
    filter: alpha(opacity=100);
}
.mini-cart .cart-link>span{
    display: inline-block;
    padding: 0 2px;
}
.mini-cart .cart-link .menu-icon{
    margin-right: 5px;
}
.mini-cart-content .box-title{
    font-size: 12px;
    font-family: 'Merriweather', serif;
    color: #888;
    font-style: italic;
    border-bottom: 1px solid #e8e8e8;
    margin-bottom: 0;
    padding-bottom: 20px;
}
.mini-cart-content .box-title .count{
    color: #333;
}
.mini-cart-content .list-item-cart{
    padding: 0;
    margin: 0;
}
.mini-cart-content .list-item-cart .item-cart{
    list-style: none;
    border-bottom: 1px solid #e8e8e8;
    padding: 30px 0;
    overflow: hidden;
}
.mini-cart-content .item-cart .thumb{
    width: 100px;
    float: left;
}
.mini-cart-content .item-cart .product-info{
    margin-left: 120px;
    position: relative;
}
.mini-cart-content .item-cart .product-name{
    margin-bottom: 0;
}
.mini-cart-content .item-cart .product-name a{
    font-size: 12px;
    font-family: 'Merriweather', serif;
    color: #888;
    font-style: italic;
}
.mini-cart-content .item-cart .price{
    font-family: 'Montserrat';
    font-size: 14px;
    color: #333;
}
.mini-cart-content .item-cart .remove-item{
    font-size: 14px;
    color: #ccc;
    position: absolute;
    top: 0;
    right: 0;
}
.mini-cart-content .item-cart .remove-item:hover{
    color: red;
}
.mini-cart-content .subtotal{
    padding: 15px 0;
    margin-bottom: 10px;
    color: #888;
    font-size: 14px;
}
.mini-cart-content .subtotal .amout{
    color: #333;
    font-family: 'Montserrat';
    text-decoration: underline;
}

/* BOX SETTING */
.box-setting .box-setting-content{
    min-width: 285px;
    padding: 40px 30px 30px 30px;
}
.box-setting-content .box-section .title{
    font-size: 12px;
    font-family: 'Merriweather', serif;
    color: #666;
    font-style: italic;
    border-bottom: 1px solid #e8e8e8;
    padding-bottom: 20px;
    margin: 0;
}
.box-setting-content .box-section .inner{
    padding: 30px 0;
    overflow: hidden;
}
.box-setting-content .box-section .inner a{
    display: inline-block;
    margin-right: 20px;
    float: left;
}
.box-setting-content .box-section .inner a:last-child{
    margin-right: 0;
}
.box-setting-content .box-section.currency .inner a{
    width: 39px;
    height: 39px;
    background-color: #aaa;
    color: #fff;
    font-size: 18px;
    text-align: center;line-height: 39px;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    border-radius: 50%;
}
/* Main header */
.main-header{
    -webkit-box-shadow: 1px 5px 5px 0px rgba(0,0,0,0.09);
    -moz-box-shadow: 1px 5px 5px 0px rgba(0,0,0,0.09);
    box-shadow: 1px 5px 5px 0px rgba(0,0,0,0.09);
    position: relative;
    z-index: 2;
}
.main-menu{
    padding: 0;
    margin: 0;
    display: table;
    width: 100%;
    table-layout: fixed;
}
.main-menu li{
    list-style: none;
    position: relative;
}
.main-menu>li{
    display: table-cell;
}
.main-menu>li>a{
    display: inline-block;
    padding: 15px 0;
    width: 100%;
    text-align: center;
    border-left-width: 1px;
    border-left-style: solid;
    border-left-color: rgba(56,56,56,0.1);
    font-size: 12px;
    text-transform: uppercase;
    color: #333;
    font-family: 'Montserrat';
}
.main-menu>li:last-child>a{
    border-right-width: 1px;
    border-right-style: solid;
    border-right-color: rgba(56,56,56,0.1);
}

.main-menu .sub-menu{
    position: absolute;
    left: 0;
    top: 100%;
    background-color: #fff;
    min-width: 225px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
    -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
    padding: 0;
    margin: 0;
    visibility: hidden;
    opacity: 0;
    filter: alpha(opacity=0);
    -webkit-transition: opacity 0.4s ease, -webkit-transform 0.4s ease, visibility 0.4s linear 0s;
    -moz-transition: opacity 0.4s ease, -moz-transform 0.4s ease, visibility 0.4s linear 0s;
    -ms-transition: opacity 0.4s ease, -ms-transform 0.4s ease, visibility 0.4s linear 0s;
    -o-transition: opacity 0.4s ease, -o-transform 0.4s ease, visibility 0.4s linear 0s;
    transition: opacity .4s ease, transform .4s ease, visibility .4s linear 0s;
    z-index: 100;
}
.main-menu .show-submenu>.sub-menu{
    visibility: inherit;
    opacity: 1;
    filter: alpha(opacity=100);
}
.main-menu .sub-menu>li{
    padding: 0 20px;
}
.main-menu .sub-menu>li>a{
    display: inline-block;
    width: 100%;
    border-bottom: 1px solid #e8e8e8;
    padding: 13px 0;
    font-size: 14px;
    color: #666;
}
.main-menu .sub-menu>li:last-child>a{
    border-bottom: none;
}

.main-menu .sub-menu .sub-menu{
    left: 100%;
    top: 0;
}
.main-menu>li:nth-last-child(1) .sub-menu,
.main-menu>li:nth-last-child(2) .sub-menu{
   /* right: 0;*/
    left:inherit;
}
.main-menu>li:nth-last-child(1) .sub-menu .sub-menu,
.main-menu>li:nth-last-child(2) .sub-menu .sub-menu{
    left: inherit;
    right: 100%;
}
.main-menu .megamenu{
    padding: 30px;
}
.megamenu .widget{
    margin-bottom: 30px;
}
.megamenu .widget:last-child{
    margin-bottom: 0;
}
.megamenu .widget .widgettitle{
    font-size: 14px;
    text-transform:uppercase;
    margin-bottom: 20px;
}
.megamenu .widget_nav_menu ul{
    padding: 0;
}
.megamenu .widget_nav_menu li{
    list-style: none;
}
.megamenu .widget_nav_menu li>a{
    color: #666;
    display: inline-block;
    width: 100%;
    padding: 13px 0;
    border-bottom: 1px solid #e8e8e8;
}
.megamenu .widget_nav_menu li:last-child>a{
    border: none;
}
/* HEADER STYLE 2*/
.header.style2 .top-bar{
    -webkit-box-shadow: 1px 5px 5px 0px rgba(0,0,0,0.09);
    -moz-box-shadow: 1px 5px 5px 0px rgba(0,0,0,0.09);
    box-shadow: 1px 5px 5px 0px rgba(0,0,0,0.09);
    position: relative;
    z-index: 2;
    background-color: #fff;
}
.header.style2 .top-bar-menu>li>a{
    padding: 15px 30px;
    border-color: #eee;
    color: #666;
}
.header.style2 .top-bar-menu{
    border-color: #eee;
}
.header.style2 .main-header{
    padding-top: 60px;
    background-color: #fcfcfc;
    -webkit-box-shadow: 1px 5px 5px 0px rgba(0,0,0,0);
    -moz-box-shadow: 1px 5px 5px 0px rgba(0,0,0,0);
    box-shadow: 1px 5px 5px 0px rgba(0,0,0,0);
    z-index: 1;
}
.header.style2 .logo{
    display: inline-block;
    float: left;
}
.header.style2 .main-menu{
    table-layout: inherit;
    padding-left: 80px;
    display: inline-block;
    float: left;
    width: auto;
}
.header.style2 .main-menu>li{
    padding: 10px 0;
    display: inline-block;
}
.header.style2 .main-menu>li>a{
    padding: 0 25px;
    line-height: 16px;
}
.header.style2 .main-menu>li:first-child>a{
    border: none;
}
.header.style2 .main-menu>li:last-child>a{
    border-right: none;
}
.header.style2 .main-header .mini-cart{
    float: right;
}
.header.style2 .main-header .mini-cart .cart-link{
    display: inline-block;
    background-color: #f5f5f5;
    color: #666666;
    padding: 12px 30px;
    -webkit-border-radius: 30px;
    -moz-border-radius: 30px;
    -ms-border-radius: 30px;
    -o-border-radius: 30px;
    border-radius: 30px;
}
.header.style2 .top-bar-menu>li>a .menu-icon{
    color: #444;
}

.header-control{
    display: table;
    width: 100%;
    margin-top: 50px;
    float: left;
}
.header-control .vertical-menu-wapper,
.header-control .box-serach-wapper{
    display: table-cell;
    vertical-align: top;
}
.header-control .vertical-menu-wapper{
    width: 25%;
}
.header-control .box-serach-wapper{
    background-color: #e5e5e5;
    padding: 5px;
}

.advanced-search{
    display: table;
    width: 100%;
    background-color: #fff;
    padding: 9px 0 8px 0;
}
.advanced-search .category-dropdwon,
.advanced-search .search-text-box{
    display: table-cell;
    vertical-align: top;
}
.advanced-search .category-dropdwon{
    width: 155px;
    border-right: 1px solid #eeeeee;
    font-family: 'Merriweather', serif;
    font-size: 12px;
    font-style: italic;
}
.advanced-search .chosen-container-single .chosen-single{
    border: none;
    padding: 5px 30px;
    margin: 0;
}
.advanced-search .chosen-container-single .chosen-single span{
    margin-right: 0;
}
.advanced-search .chosen-container-single .chosen-single div b:before{
    font-style: normal;
}
.advanced-search .search-text-box{
    padding-left: 75px;
    position: relative;
}
.advanced-search .search-text-box .input{
    width: 100%;
    padding: 5px 0;
    border: none;
    font-family: 'Merriweather', serif;
    font-size: 12px;
    font-style: italic;
    color: #aaa;
}
.advanced-search .search-text-box .btn-search{
    position: absolute;
    top: -9px;
    right: 0;
    width: 51px;
    height: 51px;
    margin: 0;
    padding: 0;
    text-align: center;
    line-height: 51px;
    font-size: 16px;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0;
    border-radius: 0;
    border:none;
}

.box-vertical-megamenus{
    position: relative;
}
.box-vertical-megamenus .flash {
    display: inline-block;
    width: 96px;
    height: 96px;
    position: absolute;
    top: 0;
    right: 0;
    /*background-image: url("../images/icons/5.png");*/
    z-index: 1;
    font-size: 0;
}
.box-vertical-megamenus .title{
    background-color: #4e4e4e;
    color: #fff;
    padding: 19px 30px;
    font-size: 18px;
    margin: 0;
    cursor: pointer;
}
.box-vertical-megamenus .title .bar{
    float: right;
    display: none;
}
.verticalmenu-content{
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    max-width: 320px;
    min-width: 290px;
    border: 1px solid #f0f0f0;
    background-color: #fff;
    z-index: 10;
}
.verticalmenu-list{
    padding: 0;
    margin: 0;
}
.verticalmenu-list li{
    position: relative;
}
.verticalmenu-list>li{
    list-style: none;
    padding: 0 30px;
}
.verticalmenu-list>li>a{
    display: inline-block;
    padding: 13px 0;
    border-bottom: 1px solid #f0f0f0;
    width: 100%;
    color: #666;
}
.verticalmenu-list>li>a .menu-icon{
    display: inline-block;
    min-width: 30px;
}
.verticalmenu-list>li.orther-link{
    display: none;
}
.verticalmenu-content .viewall{
    padding: 19px 30px;
    border-top: 1px solid #f0f0f0;
    margin-top: -1px;
    width: 100%;
    font-family: 'Merriweather', serif;
    font-size: 13px;
    font-style: italic;
    color: #888;
    text-decoration: underline;
    display: none;
}
.box-vertical-megamenus.show-button-all  .verticalmenu-content .viewall{
    display: inline-block;
}
.box-vertical-megamenus.hiden-button-all .verticalmenu-list>li:last-child>a{
    border: none;
}

.verticalmenu-list .sub-menu{
    position: absolute;
    left: 100%;
    top: 0;
    background-color: #fff;
    min-width: 225px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
    -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
    padding: 0;
    margin: 0;
    visibility: hidden;
    opacity: 0;
    filter: alpha(opacity=0);
    -webkit-transition: opacity 0.4s ease, -webkit-transform 0.4s ease, visibility 0.4s linear 0s;
    -moz-transition: opacity 0.4s ease, -moz-transform 0.4s ease, visibility 0.4s linear 0s;
    -ms-transition: opacity 0.4s ease, -ms-transform 0.4s ease, visibility 0.4s linear 0s;
    -o-transition: opacity 0.4s ease, -o-transform 0.4s ease, visibility 0.4s linear 0s;
    transition: opacity .4s ease, transform .4s ease, visibility .4s linear 0s;
    z-index: 10;
}
.verticalmenu-list .megamenu{
    padding: 25px 30px;
    background-repeat: no-repeat;
    background-position: bottom right;
}

.verticalmenu-list .show-submenu>.sub-menu{
    visibility: inherit;
    opacity: 1;
    filter: alpha(opacity=100);
}
.verticalmenu-list .sub-menu>li{
    list-style: none;
    padding: 0 20px;
}
.verticalmenu-list .sub-menu>li>a {
    display: inline-block;
    width: 100%;
    border-bottom: 1px solid #e8e8e8;
    padding: 13px 0;
    font-size: 14px;
    color: #666;
}
.verticalmenu-list .menu-item-has-children>a:after{
    content: "\f105";
    font-family: 'FontAwesome';
    float: right;
}
.verticalmenu-list .megamenu .widget .widgettitle{
    text-transform: none;
    margin-bottom: 10px;
}
.verticalmenu-list .megamenu .widget_nav_menu li>a{
    border: none;
    padding: 3px 0;
}
/* HEADER STYLE 3*/
.header.style3  .box-serach-wapper{
    display: inline-block;
    float: left;
    padding-left: 60px;
}
.header.style3 form.advanced-search{
    border: 3px solid #e5e5e5;
    width: 680px;
    padding: 11px 0 10px 0;
}
.header.style3 .advanced-search .search-text-box .btn-search{
    right: 2px;
}
.header.style3 .main-header{
    padding-top: 45px;
}
.header.style3 .logo{
    padding-top: 15px;
}
.header.style3 .main-header .mini-cart{
    margin-top: 7px;
}
.header.style3 .main-menu{
    display: table;
    width: 100%;
    background-color: #3d3d3d;
    padding: 0;
    margin: 0;
    margin-top: 45px;
}
.header.style3 .main-menu>li{
    padding: 0;
}
.header.style3 .main-menu>li>a{
    padding: 25px 40px;
    color:#fff;
}
.header.style3 .main-menu>li>a:hover,
.header.style3 .main-menu>li.active>a{
    color: #fff;
}
/* HEADER STYLE 4 */
.header.style4{
    background-color: #fff;
    padding-bottom: 15px;
}
.header.style4 .top-bar{
    background-color: #3d3d3d;
    -webkit-box-shadow: 1px 5px 5px 0px rgba(0,0,0,0);
    -moz-box-shadow: 1px 5px 5px 0px rgba(0,0,0,0);
    box-shadow: 1px 5px 5px 0px rgba(0,0,0,0);
}
.header.style4 .top-bar-menu>li>a,
.header.style4 .top-bar-menu>li>a .menu-icon{
    border: none;
    color: #aaaaaa;
}
.header.style4 .top-bar-menu{
    border: none;
}
.header.style4 .main-header{
    background-color: #fff;
}
.header.style4 .logo{
    width: 100%;
    text-align: center;
    padding-bottom: 60px;
}
.header.style4 .main-menu{
    padding-left: 0;
}
.header.style4 .main-menu>li>a{
    border: none;
    font-size: 14px;
}
.header.style4 .main-menu>li:first-child>a{
    padding-left: 0;
}
.header.style4 .main-menu>li:last-child>a{
    padding-right: 0;
}
.header.style4 .main-header .mini-cart .cart-link{
    background-color: transparent;
    padding: 10px 30px;
    padding-right: 0;
}

.topbar-search{
    display: inline-block;
    float: right;
}
.topbar-search form{
    position: relative;
}
.topbar-search .icon{
    color: #aaa;
    font-family: 'Montserrat';
    display: inline-block;
    padding-top:14px;
    padding-bottom:0px;
    padding-right:15px;
    padding-left:0px;
    cursor: pointer;
}
.topbar-search .inner{
   position: absolute;
   top: 100%;
   right: 0;
   display: none;
   z-index: 10;
}
.topbar-search .inner input[type="text"]{
    min-width: 290px;
}
/* HEADER STYLE 5*/
.header.style5 .top-bar{
    background-color: #f6f6f6;
    -webkit-box-shadow: 1px 5px 5px 0px rgba(0,0,0,0);
    -moz-box-shadow: 1px 5px 5px 0px rgba(0,0,0,0);
    box-shadow: 1px 5px 5px 0px rgba(0,0,0,0);
    padding: 7px 0;
}
.header.style5 .top-bar-menu>li>a{
    padding: 0 15px;
    border-color: #666;
    line-height: 10px;
    font-family: inherit;
    color: #666;
}
.header.style5 .top-bar-menu>li:first-child>a{
    padding-left: 0;
    border: none;
}
.header.style5 .top-bar-menu>li:last-child>a{
    padding-right: 0;
}
.header.style5 .top-bar-menu>li>a .menu-icon{
    color: inherit;
}
.main-header-menu{
    padding: 0;
    margin: 0;
    display: table;
    width: 100%;
    margin-bottom: 10px;
}
.main-header-menu li{
    list-style: none;
    display: inline-block;
    float: left;
}
.main-header-menu li a{
    display: inline-block;
    padding: 0 10px;
    border-right: 1px solid #666;
    color: #666;
    font-size: 13px;
    line-height: 13px;
}
.main-header-menu li:last-child a{
    padding-right: 0;
    border: none;
}
.main-header-menu li:first-child a{
    padding-left: 0;
}
.header.style5 .advanced-search{
    display: inline-block;
    float: left;
    width: 680px;
    border-width: 2px;
    border-style: solid;
    padding: 0;
}
.header.style5 .advanced-search .category-dropdwon{
    width: 200px;
    padding: 7px 0;
    min-width: 200px;
    border: none;
}
.header.style5 .advanced-search .category-dropdwon select{
    width: 100%;
}
.header.style5 .advanced-search .search-text-box{
    width: 100%;
    padding: 0 15px;
    padding-right: 50px;
}
.header.style5 .advanced-search .search-text-box .input{
    padding: 7px 0;text-transform: none
}
.header.style5 .advanced-search .search-text-box .btn-search{
    width: 40px;
    height: 38px;
    line-height: 42px;
    top: 0;
    right: -2px;
}

.header.style5 .advanced-search .chosen-container-single .chosen-single{
    line-height: 20px;
    border-right: 1px solid #d1d1d1;
    padding: 0 15px;
}
.header.style5 .advanced-search .chosen-container-single .chosen-single div b:before{
    content: "\f107";
}
.header.style5 .main-header .mini-cart{
    width: 170px;
    border: 1px solid #eaeaea;
}
.header.style5 .main-header .mini-cart .cart-link{
    background-color: #fff;
    padding: 5px 0;
    width: 100%;
    position: relative;
    padding-left: 10px;
    text-transform: uppercase;
    font-family: 'Montserrat';
}
.header.style5 .main-header .mini-cart .cart-link .count{
    position: absolute;
    display: inline-block;
    background-color: #e09903;
    font-size: 12px;
    color: #fff836;
    left: 22px;
    top: -10px;
    line-height: 16px;
    padding: 0 10px;

}
.header.style5 .mini-cart .cart-link>span{
    vertical-align: middle;
}

.header.style5 .main-header{
    padding-top: 30px;
    background-color: #fff;
}
.header.style5 .header-control{
    margin-top: 30px;
}
.header.style5 .logo{
    padding-top: 15px;
}
.header.style5 .box-vertical-megamenus .title{
    padding: 11px 20px;
    text-transform: uppercase;
    font-size: 14px;
}
.header.style5 .box-vertical-megamenus .title .bar{
    display: inline-block;
}
.header.style5 .header-control .box-serach-wapper{
    background-color: #f6f6f6;
    padding: 0;
}
.header.style5 .main-menu{
    padding: 0;
}
.header.style5 .main-menu>li>a{
    font-weight: normal;
    font-size: 13px;
    border: none;
}
.header.style5 .main-menu>li{
    padding: 8px 0;
}
.header.style5 .verticalmenu-list>li{
    padding: 0 20px;
}
.header.style5 .verticalmenu-list>li>a{
    padding: 8px 0;
}
.header.style5 .verticalmenu-list{
    margin: 0;
}
.header.style5 .verticalmenu-content .viewall{
    padding: 17px 0;
    text-align: center;
    text-decoration: none;
}
.header.style5 .mini-cart .cart-link .menu-icon{
    font-size: 30px;
    line-height: normal;
}
/* HEADER STYLE 6 */
.banner-header{
    /*background-image: url("../images/banner-header.jpg");*/
    background-position: top center;
    background-repeat: no-repeat;
}
.banner-header .inner{
    position: relative;
    text-align: center;
    padding: 18px 0;
    padding-bottom: 19px;
}
.banner-header .inner .text{
    color: #cc3333;
    font-weight: 700;
    font-size: 18px;
    margin: 0;
}
.banner-header .inner .close-banner{
    display: inline-block;
    width: 30px;
    height: 30px;
    line-height: 30px;
    text-align: center;
    position: absolute;
    top: 15px;
    right: -30px;
    color: #000;
    cursor: pointer;
    border: 1px solid #000;
}
.header.style6{
    background-color: #fff;
}
.header.style6 .top-bar {
    background-color: #233242;
    color: #fff !important;
    -webkit-box-shadow: 1px 5px 5px 0px rgba(0,0,0,0);
    -moz-box-shadow: 1px 5px 5px 0px rgba(0,0,0,0);
    box-shadow: 1px 5px 5px 0px rgba(0,0,0,0);
    padding: 2px 0;
    font-family: "Montserrat", sans-serif;
}
.header.style6 .header-msg{
    display: inline-block;
    float: left;
    padding-right: 85px;
}
.header.style6 .top-bar-menu{
    border: none;
}
.advanced-search{ border: none !important;}
.header.style6 .top-bar-menu>li>a{
    padding: 0 10px;
    line-height: 12px;
    font-family: inherit;
    color: #fff;
    font-size: 13px;
}
.header.style6 .top-bar-menu>li:first-child>a{
    border: none;
    padding-left: 0;
}
.header.style6 .top-bar-menu>li:last-child>a{
    padding-right: 0;
}
.header.style6 .top-bar-menu .menu-item-has-children>a:after {
    content: "\f0d7";
    font-family: 'FontAwesome';
    margin-left: 5px;
    line-height: normal;
    display: inline-block;
}
.header.style6 .top-bar-menu.right>li>a{
    padding: 0 12px;
    border: none;
}
.header.style6 .top-bar-menu .sub-menu>li{
    padding: 0 10px;
}
.header.style6 .top-bar-menu .sub-menu>li>a{
    padding: 6px 10px;
}
.header.style6 .top-bar-menu .sub-menu{
    min-width: 100px;
}
.header.style6 .main-header{
  background-color: #ffffff;
   margin-bottom: 0px;
   padding-bottom: 15px;
   padding-top: 15px;

}
.header.style6 .advanced-search{
    border: 1px solid #e8e8e8;
    max-width: 588px;
    padding: 10px 0;
    position: relative;
    padding-right: 50px;
    float: left;
    margin-left: 60px;
}
.header.style6 .advanced-search .search-text-box{
    padding: 0;
}
.header.style6 .advanced-search .search-text-box .input{
    padding: 3px 20px;
    font-style: inherit;
    font-family: inherit;
    color: #999;
    background-color: #ffffff;
}
.header.style6 .advanced-search .category-dropdwon{
    font-family: inherit;
}
.header.style6 .advanced-search .btn-search{
    position: absolute;
    width: 50px;
    height: 50px;
    padding: 0;
    top: 0;
    right: 0;
    text-align: center;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0;
    border-radius: 0;
    font-size: 14px;
    background: #13416a;
    border: 1px solid #fff;
}
.header.style6 .advanced-search .category-dropdwon{
    border-left: 1px solid #e8e8e8;
    font-style: inherit;
}
.header.style6 .advanced-search .category-dropdwon,
.header.style6 .advanced-search .search-text-box{
    vertical-align: middle;
}
.header.style6 .advanced-search .chosen-container-single .chosen-single{
    padding: 3px 30px;
    color: #999;
}
.header.style6 .main-header .mini-cart .cart-link{
    padding: 0;
    background-color: #fff;
}
.header.style6 .header-control{
    margin-top: 0;
}
.header.style6 .box-vertical-megamenus .title{
    padding: 16px 20px;
    font-size: 14px;
    text-transform: uppercase;
    margin-top: -1px;
    padding-bottom: 17px;
}
.header.style6 .box-vertical-megamenus .title .bar{
    display: inline-block;
    float: none;
    margin-right: 10px;
}
.header.style6 .header-control .box-serach-wapper{
    background-color: #fff;
    padding: 0;
}
.header.style6 .main-menu{
    padding: 0;
}
.header.style6 .main-menu>li{
    padding: 0;
    float: left;
}
.header.style6 .main-menu>li>a{
    line-height: 24px;
    font-size: 15px;
    color: #333;
    font-weight: 700;
    border: none;
    padding: 13px 22px;
    text-transform: none;
    margin-top: -1px;
    padding-bottom: 14px;
}
.header.style6 .main-menu>li:hover>a,
.header.style6 .main-menu>li.active>a{
    color: #fff;
}
.header.style6 .main-header-menu-wapper{
    border-top: 1px solid #eee;
}
.header.style6 .header-line{
    height: 3px;
    display: block;
    width: 100%;
    float: left;
}
.header.style6 .verticalmenu-content{
    border: none;
    border-top: 3px solid #e8e8e8;
}
.header.style6 .verticalmenu-list>li>a{
    padding: 10px 0;
    border-color: #eeeeee;
    color: #333;
}
.header.style6 .verticalmenu-list>li{
    padding: 0 20px;
}
.header.style6 .verticalmenu-content .viewall{
    padding: 0px 20px;
    border: none;
    font-family: inherit;
    font-size: 11px;
    color: #666;
}
.header.style6 .verticalmenu-content .viewall .text{
    display: inline-block;
    border: 1px solid #eee;
    width: 100%;
    text-align: center;
    text-transform: uppercase;
    font-style: normal;
    text-decoration: none;
    padding: 8px 0;
}
.header.style6 .verticalmenu-content .viewall .text:after{
    font-family: 'FontAwesome';
    display: inline-block;
    margin-left: 15px;
    content: "\f0da";

}
.header.style6 .verticalmenu-list .menu-item-has-children>a:after{
    content: "\f0da";
}
.header.style6 .verticalmenu-list>li>a .menu-icon {
    margin-top: -3px;
    display: inline-block;
    float: left;
    color: #666;
}
.header.style6 .header-right{
    width: 200px;
    display: table;
    float: right;
}
.header.style6 .header-account {
  color: #fff;
  display: table-cell;
  vertical-align: top;
  width: 115px;
  font-family: "montserrat",sans-serif;
}

.header.style6 .mini-cart{
    display: table-cell;
    width: auto;
    vertical-align: top;
}
.header.style6 .mini-cart .icon {
    font-size: 35px;
    margin: 0;
    padding: 11px;
}
.header.style6 .mini-cart .cart-link{
    position: relative;
}
.header.style6 .mini-cart .cart-link .count{
    position: absolute;
    top: 0;
    right: 0;
    width: 20px;
    height: 20px;
    color: #fff;
    text-align: center;
    line-height: 20px;
    color: #fff;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    border-radius: 50%;
}

.header.style6 .mini-cart .text,
.header.style6 .mini-cart .kak,
.header.style6 .mini-cart .subtotal{
    display: none;
}
.header.style6 .menu-account{
    display: block;
    margin: 0;
    padding: 0;
}
.header.style6 .menu-account li{
    list-style: none;
    position: relative;
}
.header.style6 .menu-account>li>a{
    color: #fff;
    font-weight: 700;
}
.header.style6 .menu-account .sub-menu{
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #fff;
    min-width: 150px;
    padding: 0;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
    -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
    visibility: hidden;
    opacity: 0;
    filter: alpha(opacity=0);
}
.header.style6 .menu-account .show-submenu .sub-menu{
    visibility: inherit;
    opacity: 1;
    filter: alpha(opacity=100);
}
.header.style6 .menu-account .menu-item-has-children>a{
    display: block;
}
/*.header.style6 .menu-account .menu-item-has-children>a:after{
    display: inline-block;
    font-family: 'FontAwesome';
    float: right;
    content: "\f0d7";
    color: #ccc;
}*/

.header.style6 .menu-account .sub-menu li>a{
    display: inline-block;
    border-bottom: 1px solid #eeeeee;
    padding: 10px 15px;
    width: 100%;
    color: #333;
}
.header.style6 .menu-account .sub-menu li:last-child>a{
    border: none;
}
/* HEADER STYLE 7 */
.header.style7 .top-bar{
    -webkit-box-shadow: 1px 5px 5px 0px rgba(0,0,0,0);
    -moz-box-shadow: 1px 5px 5px 0px rgba(0,0,0,0);
    box-shadow: 1px 5px 5px 0px rgba(0,0,0,0);
    border-bottom: 1px solid #f1f1f1;
}
.header.style7 .top-bar-menu>li{
    padding: 9px 0;
}
.header.style7 .top-bar-menu>li>a{
    padding: 0 15px;
    line-height: 10px;
    border-color: #b7b7b7;
    color: #666;
    font-family: inherit;

}
.header.style7 .top-bar-menu>li>a .menu-icon{
    color: inherit;
    font-size: 20px;
    line-height: 10px;
    display: inline-block;
    float: left;
    margin-right: 10px;
}
.header.style7 .top-bar-menu>li:first-child>a{
    padding-left: 0;
    border: none;
}
.header.style7 .top-bar-menu>li:last-child>a{
    padding-right: 0;
}
.header.style7 .top-bar-menu{
    border: none;
}
.header.style7 .main-header{
    padding-top: 20px;
    background-color: #fff;
}
.header.style7 .advanced-search{
    width: 620px;
    float: left;
    border-style: solid;
    border-width: 2px;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -ms-border-radius: 20px;
    -o-border-radius: 20px;
    border-radius: 20px;
    padding: 1px 20px;
    padding-right: 60px;
    position: relative;
    margin-left: 30px;
}
.header.style7 .main-header-menu{
    padding-left: 30px;
}
.header.style7 .advanced-search .search-text-box{
    position: static;
    padding: 0;
}
.header.style7 .advanced-search .search-text-box .btn-search{
    height: 40px;
    width: 60px;
    top: -2px;
    right: 0;
    line-height: 45px;
    font-size: 25px;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -ms-border-radius: 20px;
    -o-border-radius: 20px;
    border-radius: 20px;
    border-top-left-radius:0;
    border-bottom-left-radius:0;
}
.header.style7 .header-right-control{
    display: inline-block;
    float: right;
}
.header.style7 .header-right-control .compare,
.header.style7 .header-right-control .wishlist{
    display: inline-block;
    padding: 7px 10px;
    color: #444;
    font-size: 24px;
    line-height: 24px;
}
.header.style7 .main-header .mini-cart .cart-link{
    background-color: transparent;
    padding: 7px 10px;
    padding-right: 0;
    font-size: 15px;
    color: #666;
}
.header.style7 .main-header .mini-cart .cart-link .icon {
    font-size: 24px;
}
.header.style7 .main-header .mini-cart .cart-link .text,
.header.style7 .main-header .mini-cart .cart-link .kak{
    display: none;
}
.header.style7 .main-header .mini-cart .cart-link .count{
    width: 20px;
    height: 20px;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    border-radius: 50%;
    color: #fff;
    position: absolute;
    top: 12px;
    left: 25px;
    text-align: center;
    line-height: 20px;
    font-size: 12px;
    font-weight: 700;
}
.header.style7 .main-header .mini-cart .cart-link>span{
    vertical-align: middle;
}
.header.style7 .header-control{
    margin-top: 45px;
}
.header.style7 .box-vertical-megamenus .title{
    padding: 10px 20px;
    color: #fff;
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 700;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}
.header.style7 .box-vertical-megamenus .title .bar{
    display: inline-block;
}
.header.style7 .main-menu{
    padding: 0;
}
.header.style7  .header-control .box-serach-wapper{
    padding: 0;
    background-color: #fff;
}
.header.style7 .main-menu>li {
    padding: 8px 0;
    display: inline-block;
}
.header.style7 .main-menu>li>a{
    border: none;
    padding: 0 20px;
}
.header.style7 .verticalmenu-list>li{
    padding: 0 20px;
}
.header.style7 .verticalmenu-list>li>a{
    padding: 8px 0;
}
.header.style7 .verticalmenu-list{
    margin: 0;
}
.header.style .logo{
    padding-top: 20px;
}

/* STYLE 9 */
.header.style9 .top-bar{
    border-bottom: 1px solid #e5e5e5;
    -webkit-box-shadow: 1px 5px 5px 0px rgba(0,0,0,0);
    -moz-box-shadow: 1px 5px 5px 0px rgba(0,0,0,0);
    box-shadow: 1px 5px 5px 0px rgba(0,0,0,0);
}
.header.style9 .top-bar-menu>li>a{
    padding: 0 15px;
    line-height: 10px;
    font-size: 13px;
    color: #666;
    border-right: 1px solid #e5e5e5;
    font-family: inherit;
    border-left: none;
}
.header.style9 .top-bar-menu>li:last-child>a{
    border: none;
    padding-right: 0;
}
.header.style9 .top-bar-menu>li:first-child>a{
    padding-left: 0;
}
.header.style9 .top-bar-menu{
    border: none;
}
.header.style9 .top-bar-menu>li{
    padding: 8px 0;
}
.header.style9 .top-bar-menu>li>a .menu-icon{
    font-size: 18px;
    float: left;
    margin-right: 5px;
    color: inherit;
}
.header.style9 .main-header{
    padding: 30px 0;
    background-color: #fff;
}
.header.style9 .main-header .advanced-search{
    width: 640px;
    border: 1px solid #e5e5e5;
    padding: 0;
    float: left;
}
.header.style9 .advanced-search .chosen-container-single .chosen-single {
    padding: 8px 30px;
    background-color: #f5f5f5;
}
.header.style9 .advanced-search .category-dropdwon{
    font-family: inherit;
    font-style: normal;
    border: none;
}
.header.style9 .advanced-search .search-text-box{
    padding: 0;
}
.header.style9 .advanced-search .search-text-box .input{
    padding: 8px 20px;
    padding-right: 40px;
    font-family: inherit;
    font-style: normal;
}
.header.style9 .advanced-search .search-text-box .btn-search{
    width: 42px;
    height: 42px;
    line-height: 42px;
    top: -1px;
    right: -1px;
}
.header.style9 .main-header .mini-cart .cart-link{
    border: 1px solid #e5e5e5;
    background-color: #fff;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0;
    border-radius: 0;
    padding: 0;
    padding-left: 10px;
    line-height: 40px;
    width: 100%;
}
.header.style9 .mini-cart .cart-link .icon {
    width: 41px;
    height: 41px;
    line-height: 41px;
    text-align: center;
    display: inline-block;
    position: relative;
    color: #fff;
    float: right;
    margin: 0;
    font-size: 24px;
    margin-left: 10px;
}
.header.style9 .mini-cart .cart-link .count{
    width: 20px;
    height: 20px;
    text-align: center;
    line-height: 20px;
    background-color: #555555;
    color: #fff;
    position: absolute;
    top: -10px;
    left: -10px;
    font-size: 13px;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    border-radius: 50%;
}
.header.style9 .main-header .mini-cart{
    width: 195px;
}
.header.style9 .header-control{
    margin: 0;
    border-bottom: 2px solid #f75757;
    background-color: #f6f6f6;
}
.header.style9 .box-vertical-megamenus .title{
    padding: 15px 20px;
    font-size: 14px;
    text-transform: uppercase;
    background-color: #333;
}
.header.style9 .box-vertical-megamenus .title .bar{
    display: inline-block;
}
.header.style9 .main-menu{
    padding: 0;
}
.header.style9 .main-menu>li{
    padding: 0;
    float: left;
}
.header.style9 .main-menu>li>a{
    padding: 16px 25px;
    font-size: 12px;
    color: #555;
    font-family: 'Montserrat';
    border: none;
}
.header.style9 .main-menu>li:hover>a,
.header.style9 .main-menu>li.active>a{
    color: #fff;
}
.header.style9 .verticalmenu-list>li{
    padding: 0 20px;
}
.header.style9 .verticalmenu-content{
    border: none;
}
.header.style9 .verticalmenu-list{
    margin: 0;
    border-top-width: 2px;
    border-top-style: solid;
}
.header.style9 .verticalmenu-list>li>a{
    padding: 8px 0;
}
.header.style9 .verticalmenu-content .viewall{
    padding: 15px 0;
    text-align: center;
    font-family: inherit;
    font-size: 12px;
    color: #aaaaaa;
    text-decoration: none;

}

/* STYLE 10 */
.header.style10 .top-bar{
    border-bottom: 1px solid #e5e5e5;
    -webkit-box-shadow: 1px 5px 5px 0px rgba(0,0,0,0);
    -moz-box-shadow: 1px 5px 5px 0px rgba(0,0,0,0);
    box-shadow: 1px 5px 5px 0px rgba(0,0,0,0);
}
.header.style10 .top-bar-menu>li>a{
    padding: 0 15px;
    line-height: 10px;
    font-size: 13px;
    color: #666;
    border-right: 1px solid #e5e5e5;
    font-family: inherit;
    border-left: none;
}
.header.style10 .top-bar-menu>li:last-child>a{
    border: none;
    padding-right: 0;
}
.header.style10 .top-bar-menu>li:first-child>a{
    padding-left: 0;
}
.header.style10 .top-bar-menu{
    border: none;
}
.header.style10 .top-bar-menu>li{
    padding: 8px 0;
}
.header.style10 .top-bar-menu>li>a .menu-icon{
    font-size: 18px;
    float: left;
    margin-right: 5px;
    color: inherit;
}
.header.style10 .main-header{
    padding: 30px 0;
    background-color: #fff;
}
.header.style10 .main-header .advanced-search{
    width: 630px;
    border: 2px solid #e5e5e5;
    padding: 0;
    float: left;
}
.header.style10 .advanced-search .chosen-container-single .chosen-single {
    padding: 8px 30px;
}
.header.style10 .advanced-search .category-dropdwon{
    font-family: inherit;
    font-style: normal;
    border: none;
}
.header.style10 .advanced-search .chosen-container-single .chosen-single div b:before{
    content: "\f107";
}
.header.style10 .advanced-search .search-text-box{
    padding: 0;
}
.header.style10 .advanced-search .search-text-box .input{
    padding: 8px 20px;
    padding-right: 40px;
    font-family: inherit;
    font-style: normal;
}
.header.style10 .advanced-search .search-text-box .btn-search{
    width: 42px;
    height: 42px;
    line-height: 42px;
    top: -1px;
    right: -1px;
}
.header.style10 .header-right{
    min-width: 185px;
    display: inline-block;
    float: right;
    padding: 7px 0px;
}
.header.style10 .header-right:before,
.header.style10 .header-right:after{
    content: '';
    display: table;
}
.header.style10 .header-right:after{
    clear: both;
}
.header.style10 .block-wislist-compare{
    display: inline-block;
    float: left;
}
.header.style10 .block-wislist-compare>a{
    font-size: 24px;
    color: #444444;
    display: inline-block;
    margin-right: 20px;
}
.header.style10 .main-header .mini-cart .cart-link{
    padding: 0;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0;
    border-radius: 0;
    background-color: transparent;
}
.header.style10 .mini-cart .cart-link .menu-icon{
    font-size: 24px;
    color: #444444;
    position: relative;
    float: left;
    margin-right: 20px;
}
.header.style10 .mini-cart .cart-link .count{
    width: 20px;
    height: 20px;
    text-align: center;
    line-height: 20px;
    font-size: 13px;
    color: #fff;
    display: inline-block;
    position: absolute;
    bottom: -4px;
    right: -9px;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    border-radius: 50%;
}
.header.style10 .header-control{
    margin: 0;
    background-color: #525252;
}
.header.style10 .box-vertical-megamenus .title{
    padding: 15px 20px;
    font-size: 14px;
    text-transform: uppercase;
    background-color: #333;
}
.header.style10 .box-vertical-megamenus .title .bar{
    display: inline-block;
}
.header.style10 .main-menu{
    padding: 0;
}
.header.style10 .main-menu>li{
    padding: 0;
    float: left;
}
.header.style10 .main-menu>li>a{
    padding: 16px 25px;
    font-size: 12px;
    color: #fff;
    font-family: 'Montserrat';
    border: none;
}
.header.style10 .main-menu>li:hover>a,
.header.style10 .main-menu>li.active>a{
    color: #fff;
}
.header.style10 .verticalmenu-list>li{
    padding: 0 20px;
}
.header.style10 .verticalmenu-content{
    border: none;
}

.header.style10 .verticalmenu-list>li>a{
    padding: 8px 0;
}
.header.style10 .verticalmenu-content .viewall{
    padding: 15px 0;
    text-align: center;
    font-family: inherit;
    font-size: 12px;
    color: #aaaaaa;
    text-decoration: none;

}
.header.style10 .main-menu>li:hover,
.header.style10 .main-menu>li.active{
    color: #fff;
}
/* HEADER ONTOP */
.header.ontop .top-bar{
    display: none;
}
.header.style2.ontop{
    padding: 5px 0;
    -webkit-box-shadow: 1px 5px 5px 0px rgba(0,0,0,0.09);
    -moz-box-shadow: 1px 5px 5px 0px rgba(0,0,0,0.09);
    box-shadow: 1px 5px 5px 0px rgba(0,0,0,0.09);
    background-color: #fff;
}
.header.style2.ontop .main-header{
    padding-top: 0;
}
.header.style2.ontop .logo{
    display: none;
}
.header.style2.ontop .header-control{
    display: none;
}
.header.style2.ontop .main-menu{
    padding-left: 0;
}
.header.style2.ontop .main-menu>li:first-child>a{
    padding-left: 0;
}
.header.style2.ontop .main-header .mini-cart .cart-link{
    padding:12px 0;
    background-color: transparent;
}
.header.style3.ontop .box-serach-wapper,
.header.style3.ontop .main-header .mini-cart{
    display: none;
}
.header.style3.ontop .main-header{
    background-color: transparent;
}
.header.style3.ontop{
    background-color: #3d3d3d;
    padding: 0;
}
.header.style3.ontop .main-menu{
    margin: 0;
}
.header.style3.ontop .main-menu>li>a{
    padding: 20px 40px;
}
.header.style3.ontop .main-menu>li:first-child>a{
    padding-left: 40px;
}

.header.style5.ontop .header-control{
    display: block;
    margin: 0;
}
.header.style5.ontop .main-header-wapper{
    display: none;
}
.header.style5.ontop{
    padding: 0;
}
.header.style5.ontop .header-control .box-serach-wapper{
    background-color: transparent;
    width: 100%;
}
.header.style5.ontop .main-menu{
    padding-left: 25px;
}
.header.style5.ontop .verticalmenu-content{
    display: none;
}
.header.style5.ontop .header-control .vertical-menu-wapper{
    width: 40px;
}
.header.style5.ontop .box-vertical-megamenus .title{
    padding: 0;
    width: 40px;
    height: 40px;
    text-align: center;
    line-height: 40px;
}
.header.style5.ontop .box-vertical-megamenus .title .text{
    display: none;
}
.header.style5.ontop .box-vertical-megamenus .title .bar{
    float: none;
}
.header.style6.ontop .main-header{
    display: none;
}
.header.style6.ontop .main-header-menu-wapper{
    border: none;
}
.header.style6.ontop .header-control{
    display: block;
}
.header.style6.ontop{
    padding: 0;
}
.header.style6.ontop .header-control .vertical-menu-wapper{
    width: 51px;
    min-width: 51px;
}
.header.style6.ontop .box-vertical-megamenus .title{
    padding: 0;
    text-align: center;
    line-height: 50px;
    margin: 0;
}
.header.style6.ontop .header-control .box-serach-wapper{
    width: 100%;
}
.header.style6.ontop .box-vertical-megamenus .title .text{
    display: none;
}
.header.style6.ontop .box-vertical-megamenus .title .bar{
    margin: 0;
}
.header.style6.ontop .verticalmenu-content{
    display: none;
}
.header.style6.ontop .main-menu>li:first-child>a{
    padding-left: 25px;
}
.header.style7.ontop .header-control{
    display: table;
    margin: 0;
}
.header.style7.ontop .main-header-wapper{
    display: none;
}
.header.style7.ontop{
    padding: 0;
}
.header.style7.ontop .main-menu>li:first-child>a{
    padding-left: 20px;
}
.header.style7.ontop .box-vertical-megamenus .title{
    width: 40px;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
    padding: 0;
    height: 40px;
    text-align: center;
    line-height: 40px;
}
.header.style7.ontop .box-vertical-megamenus .title .text{
    display: none;
}
.header.style7.ontop .box-vertical-megamenus .title .bar{
    float: none;
}
.header.style7.ontop .verticalmenu-content{
    display: none;
}
.header.style7.ontop .header-control .vertical-menu-wapper{
    width: 40px;
}
.header.style9.ontop .main-header{
    display: none;
}
.header.style9.ontop .header-control{
    display: table;
    border: none;
}
.header.style9.ontop{
    padding: 0;
    background-color: #f6f6f6;
}
.header.style9.ontop .verticalmenu-content{
    display: none;
}
.header.style9.ontop .main-menu>li:first-child>a{
    padding-left: 25px;
}
.header.style9.ontop .header-control .vertical-menu-wapper{
    width: 48px;
}
.header.style9.ontop .box-vertical-megamenus .title{
    height: 48px;
    line-height: 48px;
    padding: 0;
    text-align: center;
}
.header.style9.ontop .box-vertical-megamenus .title .text{
    display: none;
}
.header.style9.ontop .box-vertical-megamenus .title .bar{
    float: none;
}


.header.style10.ontop .main-header{
    display: none;
}
.header.style10.ontop .header-control{
    display: table;
    border: none;
}
.header.style10.ontop{
    padding: 0;
    background-color: #525252;
}
.header.style10.ontop .verticalmenu-content{
    display: none;
}
.header.style10.ontop .main-menu>li:first-child>a{
    padding-left: 25px;
}
.header.style10.ontop .header-control .vertical-menu-wapper{
    width: 48px;
}
.header.style10.ontop .box-vertical-megamenus .title{
    height: 48px;
    line-height: 48px;
    padding: 0;
    text-align: center;
}
.header.style10.ontop .box-vertical-megamenus .title .text{
    display: none;
}
.header.style10.ontop .box-vertical-megamenus .title .bar{
    float: none;
}
/*--------------
 PAGE LAYOUT
---------------*/
.page-banner{
    min-height: 160px;
    /*background-image: url('../images/banners/1.jpg');*/
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-position: center center;
}
.main-container{
    padding: 25px 0 0 0;
    overflow: hidden;
}
.main-container.no-padding{
    padding-bottom: 0;
}
.left-sidebar .main-content{
    float: right;
}

/* ------------
 PRODUCT ITEM
--------------*/
.product-item{
    list-style: none;
}
.product-item .thumb{
    position: relative;
    overflow: hidden;
    text-align: center;
}
.product-item .button.quick-view{
    position: absolute;
    top: -100px;
    left: 10px;
    padding: 0 10px;
    background-color: #aaaaaa;
    color: #fefefe;
    font-size: 10px;
    font-family: 'Merriweather', serif;
    font-style: italic;
    text-transform: none;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    -ms-border-radius: 4px;
    -o-border-radius: 4px;
    border-radius: 4px;
    border: none;
    -webkit-transition: all 0.5s ease 0s;
    -o-transition: all 0.5s ease 0s;
    transition: all 0.5s ease 0s;
    z-index: 2;
}
.product-item:hover .button.quick-view{
    top: 10px;
}
.product-item .flash{
    position: absolute;
    top: 10px;
    right: 7px;
    z-index: 2;
}
.product-item .flash>span{
    padding: 0 10px;
    font-size: 10px;
    font-family: 'Montserrat';
    color: #fff;
    background-color: #83ccd5;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    -ms-border-radius: 4px;
    -o-border-radius: 4px;
    border-radius: 4px;
    display: inline-block;
    text-transform: uppercase;
    float: left;
    margin: 0 3px;
}
.product-item .flash .sale{
    background-color: #e9c77b;
}

.product-item .group-button{
    position: absolute;
    bottom: 30px;
    left: 0;
    text-align: center;
    width: 100%;
    z-index: 2;
}
.product-item .wishlist,
.product-item .add_to_cart_button,
.product-item .compare{
    width: 40px;
    height: 40px;
    text-align: center;
    line-height: 40px;
    font-size: 0;
    padding: 0;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    border-radius: 50%;
    border: none;
    background-color: #aaaaaa;
    color: #fff;
    display: inline-block;
    margin: 0;
    vertical-align: middle;
    -webkit-transition: all 0.5s ease 0s;
    -o-transition: all 0.5s ease 0s;
    transition: all 0.5s ease 0s;
    transform: scale(0.5);
    visibility: hidden;
    opacity: 0;
    filter: alpha(opacity=0);
    margin: 0 3px;
}
.product-item .wishlist:after,
.product-item .add_to_cart_button:after,
.product-item .compare:after{
    font-family: "Flaticon";
    font-size: 14px;
}
.product-item .wishlist:after{
    content: "\e001";
}
.product-item .add_to_cart_button:after{
    content: "\e008";
}
.product-item .compare:after{
    content: "\e00a";
}

.product-item:hover .group-button .wishlist,
.product-item:hover .group-button .add_to_cart_button,
.product-item:hover .group-button .compare{
    transform: scale(1);
    visibility: inherit;
    opacity: 1;
    filter: alpha(opacity=100);
}

.product-item .info{
    padding: 5px 10px;
	font-family: 'Montserrat', sans-serif;
}
.product-item .info a:hover{
    color: #1a5276  ;
}
.product-item .product-name{
    margin-bottom: 7px;
    line-height: normal;
    height: 40px;
}

.product-item .product-title{
    margin-bottom: 7px;
    line-height: normal;
    height: 50px;
    overflow: hidden;
    color: #00a072;
}

.product-item .product-title a{
    font-family: 'Montserrat', serif;
    font-size: 13px;
    color: #00a072;
    font-weight: 600;
}

.product-item .product-name a{
    font-family: 'Montserrat', serif;
    font-size: 13px;
    color: #333;
}
.product-item .product-name.short {
  height: 48px;
 overflow: hidden;
 text-overflow: ellipsis;
}
.sLogo .owl-item {
    -moz-user-select: none;
    backface-visibility: hidden;
    float: left;
    height: 80px !important;
    min-height: 1px;
    position: relative;
}

.product-item .price{
    color: #333;
    font-family: 'Montserrat';
    font-size: 14px;
}

.product-item .price ins{
    float: left;
    margin-right: 5px;
    text-decoration: none;
    color: #ec5858;
}
.product-item .price del{
    color: #aaa;
}

.product-item.style2 .info{
    text-align: center;
}
.product-item.style2 .price{
    display: table;
    margin: 0 auto;
}

.product-item.style3 .info{
    text-align: center;
    padding: 0;
    padding-top: 10px;
}
.product-item.style3 .price{
    display: table;
    margin: 0 auto;
}
.product-item.style3 .product-inner{
    padding: 10px;
}
.product-item.style3{
    border-right: 1px solid #f0f0f0;
    border-bottom: 1px solid #f0f0f0;
}

/*.owl-carousel .product-item{
    padding: 1px;
}*/
.product-item.style4 .product-inner{
    padding: 10px;
    overflow: hidden;
    border-right: 1px solid #f0f0f0;
    border-bottom: 1px solid #f0f0f0;
}
.product-item.style4 .product-name{
    line-height: normal;
    white-space: inherit;
    overflow: inherit;
}
.product-item.style4 .thumb,
.product-item.style4 .info{
    padding: 0;
}
.product-item.style4 .info{
    padding: 30px 10px;
    padding-bottom: 0;
}
.product-item.style4 .button.quick-view{
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%,-50%);
    -ms-transform: translate(-50%,-50%);
    -o-transform: translate(-50%,-50%);
    transform: translate(-50%,-50%);
    opacity: 0;
    filter: alpha(opacity=0);
    visibility: hidden;
}
.product-item.style4:hover .button.quick-view{
    opacity: 1;
    filter: alpha(opacity=100);
    visibility: inherit;
}
.product-item.style4 .group-button{
    position: static;
    text-align: left;
    padding-top: 22px;
}
/* PRODUCT STYLE 5 */
.product-item.style5 .info{
    text-align: center;
    padding: 0;
    padding-top: 10px;
}
.product-item.style5 .price{
    display: table;
    margin: 0 auto;
}
.product-item.style5 .product-inner{
    padding: 10px;
    padding-bottom: 35px;
}
.product-item.style5{
    border-right: 1px solid #f0f0f0;
    border-bottom: 1px solid #f0f0f0;
}
/* STYLE 6 */
.product-item.style6 .product-inner{
    padding: 0;
    border: 1px solid #e6e6e6;
    width: 99.99999999%;

    margin: 0 auto;
    position: relative;
    z-index: 999;
}
.product-item.style6 .info{
    padding: 10px;
    text-align: center;
    padding-top: 0;
    padding-bottom: 19px;
}
.product-item.style6 .price{
    display: table;
    margin: 0 auto;
    font-size: 14px;
    color: #333;
    font-weight: 700;
    font-family: inherit;
}
.product-item.style6 .price del{
    color: #666;
    font-weight: normal;
}
.product-item.style6 .rating{
    color: #ccc;
}
.product-item.style6 .rating .active{
    color: #ffae00;
}
.product-item.style6 .product-name a{
    font-family: 'Montserrat',sans-serif;
    font-style: normal;
    color: #666;

}
.owl-carousel .product-item.style6{
    padding: 0;
}
.product-item.style6 .group-button{
    top: 54px;
    bottom: inherit;
    left: inherit;
    right: 0;
    width: 40px;
    position: static;
}
.product-item.style6 .wishlist,
.product-item.style6 .add_to_cart_button,
.product-item.style6 .compare,
.product-item.style6 .button.quick-view{
    margin: 0;
    width: 40px;
    height: 40px;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0;
    border-radius: 0;
    border: 1px solid #c6c6c6;
    line-height: 40px;
    background-color: #fff;
    color: #ccc;
    margin-bottom: 3px;
    position: static;
    font-size: 0;
    float: left;
    -webkit-transition: all 0.5s ease 0s;
    -o-transition: all 0.5s ease 0s;
    transition: all 0.5s ease 0s;
    transform: scale(1);
    visibility: hidden;
    opacity: 0;
    filter: alpha(opacity=0);
    position: absolute;
    top: 50px;
    right: -110px;
    left: inherit;
    padding: 0;
    width: 150px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    text-align: left;
    font-family: inherit;
    font-style: normal;
    text-align:left;
}

.product-item.style6 .compare{
    top: 120px;
}
.product-item.style6 .button.quick-view{
    top: 136px;
}
.product-item.style6 .add_to_cart_button{
    top: 179px;
}
.product-item.style6 .wishlist:before,
.product-item.style6 .add_to_cart_button:before,
.product-item.style6 .compare:before,
.product-item.style6 .button.quick-view:before{
    content: '';
    display: inline-block;
    width: 40px;
    height: 38px;
    line-height: 38px;
    position: static;
    float: left;
    font-family: 'Pe-icon-7-stroke';
    text-align: center;
    font-size: 20px;
    background-color: inherit;
    -webkit-transition: all 0s ease 0s;
    -o-transition: all 0s ease 0s;
    transition: all 0s ease 0s;
}
.product-item.style6 .wishlist:before{
    content: "\e642";
}
.product-item.style6 .add_to_cart_button:before{
    content: "\e615";
}
.product-item.style6 .compare:before{
    content: "\e6c2";
}
.product-item.style6 .button.quick-view:before{
    content: "\e618";
}
.product-item.style6 .wishlist:after,
.product-item.style6 .add_to_cart_button:after,
.product-item.style6 .compare:after,
.product-item.style6 .button.quick-view:after{
    display: none;
}
.product-item.style6 .wishlist:hover,
.product-item.style6 .add_to_cart_button:hover,
.product-item.style6 .compare:hover,
.product-item.style6 .button.quick-view:hover{
    color: #fff;
    right: 0;
}
.product-item.style6:hover .wishlist,
.product-item.style6:hover:hover .add_to_cart_button,
.product-item.style6:hover .compare,
.product-item.style6:hover .button.quick-view{
    transform: scale(1);
    visibility: inherit;
    opacity: 1;
    filter: alpha(opacity=100);
}
.product-item.style6 .button.quick-view:before{

}
.kt-tabs.style4 .product-item.style6 .product-inner,
.kt-tabs.style5 .product-item.style6 .product-inner{
    border-left-color:#fff;
}
.owl-carousel .owl-item img{
  display: inline-block;
  max-height: 90%;
  max-width: 90% ;
}
.product-item.style6 .thumb{
    text-align: center;
    height: 350px;
    line-height: 200px;
}
.product-item.style6 .thumb a{
    display: block;
}
.product-item.no-border .product-inner{
    border-color: #fff;
}
/*.product-item.no-border .wishlist:before,
.product-item.no-border .add_to_cart_button:before,
.product-item.no-border .compare:before,
.product-item.no-border .button.quick-view:before{
    border-right: 1px solid #c6c6c6;
    margin-right: 2px;
    width: 40px;
    height: 39px;
    line-height: 39px;
    text-align: center;
    position: static;
    margin: 0;
    padding: 0;
}
.product-item.no-border .wishlist:hover:before,
.product-item.no-border .add_to_cart_button:hover:before,
.product-item.no-border .compare:hover:before,
.product-item.no-border .button.quick-view:hover:before{
    border: none;
}*/
.product-item.no-border .wishlist,
.product-item.no-border .add_to_cart_button,
.product-item.no-border .compare,
.product-item.no-border .button.quick-view{
    right: -109px;
}
/* STYLE 7 */
.product-item.style7 .product-countdown{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 10;
}
.product-item.style7 .kt-countdown{
    position: static;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
    text-align: left;
    display: table;
    margin: 0 auto;
}
.product-item.style7 .kt-countdown .box-count{
    border: none;
    border-radius: 0;
    margin: 0;
    padding: 0;
    overflow: inherit;
    text-align: center;
    float: left;
    margin-right: 5px;
}
.product-item.style7 .kt-countdown .box-count.secs{
    margin: 0;
}
.product-item.style7 .kt-countdown .box-count .number{
    width: 50px;
    height: 40px;
    /*background-image:url("../images/count-down-bg.jpg");*/
    background-repeat: repeat-x;
    line-height: 40px;
    color: #fff;
    font-size: 18px;
    font-weight: 700;
}
.product-item.style7 .kt-countdown .box-count .text{
    font-size: 12px;
    text-transform: uppercase;
    color: #666;
    font-family: inherit;
    font-style: normal;
    display: inline-block;
    margin-top: 5px;
}
.product-item.style7 .wishlist,
.product-item.style7 .add_to_cart_button,
.product-item.style7 .compare,
.product-item.style7 .button.quick-view{
    transform: scale(1);
    visibility: inherit;
    opacity: 1;
    filter: alpha(opacity=100);
    position: static;
    width: 40px;
    height: 40px;
    background-color: #fff;
    border: 1px solid #e1e1e1;
    line-height: 38px;
    color: #e1e1e1;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0;
    border-radius: 0;
    font-size: 0;
    vertical-align: top;
    text-align: center;
    padding: 0;
    font-style: normal;
}
.product-item.style7 .wishlist:before,
.product-item.style7 .add_to_cart_button:before,
.product-item.style7 .compare:before,
.product-item.style7 .button.quick-view:before{
    display: none;
}

.product-item.style7 .wishlist:after,
.product-item.style7 .add_to_cart_button:after,
.product-item.style7 .compare:after,
.product-item.style7 .button.quick-view:after{
    font-family: 'Pe-icon-7-stroke';
    text-align: center;
    line-height: 40px;
    display: inline-block;
    font-size: 20px;
    position: static;
    width: auto;
    height: auto;
}
.product-item.style7 .wishlist:after{
    content: "\e642";
}
.product-item.style7 .add_to_cart_button:after{
    content: "\e615";
}
.product-item.style7 .compare:after{
    content: "\e6c2";
}
.product-item.style7 .button.quick-view:after{
    content: "\e618";
}

.product-item.style7 .wishlist:hover,
.product-item.style7 .add_to_cart_button:hover,
.product-item.style7 .compare:hover,
.product-item.style7 .button.quick-view:hover{
    background-color: #333333;
    color: #fff;
    border-color: #333;
}
.product-item.style7 .thumb{
    text-align: center;
    padding-top: 3px;
}
.product-item.style7 .info{
    text-align: center;
    padding: 0;
}
.product-item.style7 .price{
    display: table;
    margin: 0 auto;
    color: #333;
}
.product-item.style7 .group-buttons{
    padding-top: 20px;
}
.product-item.style7 .product-name a{
    font-family: 'Arimo',sans-serif;
    font-size: 13px;
    color: #666;
    font-style: normal;
}
.product-item.style7 .product-name{
    margin-bottom: 0;
}

/* STYLE 8 */
.product-item.style8 .product-inner{
    overflow: hidden;
}
.product-item.style8 .thumb{
    height: 150px;
    float: left;
    width: 120px;
    /*border: 1px solid #e4e4e4;*/
}
.product-item.style8 .info{
    overflow: hidden;
    padding-left: 5px;
}
.product-item.style8 .product-name a{
    font-family: inherit;
    font-style: normal;
}
.product-item.style8 .price {
    display: block;
    font-size: 14px;
    color: #333;
    font-weight: 700;
    font-family: inherit;
}
.product-item.style8 .rating {
    color: #ccc;
    display:block;
    margin-top: 10px;
}
.product-item.style8 .rating .active {
    color: #ffae00;
}

/* STYLE 9 */
.product-item.style9 .product-inner{
    padding: 10px;
    overflow: hidden;
}
.product-item.style9  .thumb,
.product-item.style9 .info  {
    padding: 0;
}
.product-item.style9 .info{
    padding: 15px 10px;
}
.product-item.style9 .product-name a{
    font-family: 'Arimo', sans-serif;
    font-style: normal;
    font-size: 14px;
    color: #666666;
}
.product-item.style9 .price{
    font-size: 15px;
    color: #aaaaaa;
    font-family: 'Arimo', sans-serif;
    font-weight: normal;
    margin-bottom: 35px;
    display: block;
}
.product-item.style9  .price ins{
    color: #aaaaaa;
}
.product-item.style9 .add_to_cart_button{
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -ms-border-radius: 20px;
    -o-border-radius: 20px;
    border-radius: 20px;
    transform: scale(1);
    visibility: visible;
    opacity: 1;
    filter: alpha(opacity=100);
    font-size: 13px;
    color: #666666;
    width: auto;
    height: auto;
    background-color: #f0f0f0;
    padding: 9px 15px;
    text-transform: none;
    font-family: 'Arimo', sans-serif;
    font-weight: normal;
    line-height: normal;
    margin: 0;
}
.product-item.style9 .add_to_cart_button:before,
.product-item.style9 .add_to_cart_button:after{
    display: none;
}
.product-item.style9 .rating{
    color: #ccc;
    margin-bottom: 5px;
}
.product-item.style9 .rating .active{
    color: #ffae00;
}
.product-item.style9 .add_to_cart_button:hover{
    color: #fff;
}
/* STYLE 10 */
.product-item.style10 .info{
    padding: 5px 20px;
    padding-bottom: 0;
}
.product-item.style10 .product-name a{
    font-family: 'Montserrat',serif;
    font-size: 14px;
    font-style: normal;
}
.product-item.style10 .product-name{
    margin-bottom: 5px;
}
.product-item.style10 .price{
    font-size: 15px;
    color: #aaaaaa;
    font-family: 'Arimo', sans-serif;
    font-style: normal;
}
/* STYLE 11 */
.product-item.style11 .product-inner{
    border: 1px solid #f1f1f1;
    padding: 10px;
}
.product-item.style11 .product-name a{
    font-family: 'Arimo',sans-serif;
    font-style: normal;
    color: #666666;
}
.product-item.style11 .product-name{
    margin-bottom: 0;
}
.product-item.style11 .price{
    font-size: 17px;
    color: #ff533f;
}
.product-item.style11 .price label{
    font-weight: normal;
    font-size: 13px;
    color: #888888;
    margin: 0;
    margin-right: 5px;
}
.product-item.style11 .info{
    padding: 0
}
.product-item.style11 .price del{
    font-size: 13px;
    font-weight: normal;
}
.product-item.style11 .percent-sale{
    width: 57px;
    height: 57px;
    color: #fff;
    background-color: #f75757;
    text-align: center;
    line-height: 57px;
    font-size: 16px;
    position: absolute;
    top: 0;
    right: 0;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    border-radius: 50%;
}
/* Product hot*/

.product-item.hot-product .thumb,
.product-item.hot-product .info{
    padding: 0;
}
.product-item.hot-product .info{
    padding-left: 15px;
}
.product-item.hot-product .product-inner{
    padding: 31px 20px;
    display: table;
    width: 100%;
    border-bottom: 1px solid #f0f0f0;
    padding-bottom: 33px;
}
.product-item.hot-product .rating{
    color: #ecc366;
    font-size: 10px;
}
.product-item.hot-product .product-name a{
    font-size: 12px;
}



/* COUNTDOWN */
.product-item .kt-countdown{
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    text-align: center;
    z-index: 10;

}
.product-item .kt-countdown .dot{
    display: none;
}
.product-item .kt-countdown .box-count{
    display: inline-block;
    width: 51px;
    height: 51px;
    background-color: #fff;
    border: 1px solid #e9c77b;
    line-height: normal;
    font-size: 10px;
    font-family:'Merriweather';
    font-style: italic;
    font-weight: 300;
    color: #333;
    padding-top: 7px;
    margin: 0 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    border-radius: 5px;
}
.product-item .kt-countdown .box-count .number{
    display: block;
    font-size: 16px;
    font-family: 'Montserrat';
    color: #333;
    font-style: normal;
    font-weight: normal;
}
.product-item .kt-countdown .day{
    margin-left: 0;
}
.product-item .kt-countdown .secs{
    margin-right: 0;
}

.product-item.enable-countdown .thumb:before{
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    background-color: rgba(0,0,0,0.1);
    z-index: 1;
    -webkit-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
    opacity: 0;
    filter: alpha(opacity=0);
    visibility: hidden;
}
.product-item.enable-countdown .kt-countdown{
    -webkit-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
    opacity: 0;
    filter: alpha(opacity=0);
    visibility: hidden;
}
.product-item.enable-countdown:hover .thumb:before,
.product-item.enable-countdown:hover .kt-countdown{
    opacity: 1;
    filter: alpha(opacity=100);
    visibility: inherit;
}

/* Product list*/
.product-item.list{
    border: 1px solid #ececec;
    overflow: hidden;
}
.product-item.list .product-inner{
    display: table;
    width: 100%;
}
.product-item.list .thumb,
.product-item.list .info{
    display: table-cell;
    float: none;
    vertical-align: top;
}
.product-item.list .info{
    border-left: 1px solid #ececec;
}
.product-item.list .wishlist,
.product-item.list .add_to_cart_button,
.product-item.list .compare{
    transform: scale(1);
    visibility: inherit;
    opacity: 1;
    filter: alpha(opacity=100);
}
.product-item.list .thumb {
    padding: 10px;
}
.product-item.list .info{
    padding: 15px;
}
.product-item.list .product-desc{
    padding-top: 8px;
    padding-bottom: 30px;
}

.product-item .has-second-image .second-image{
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    -webkit-transition: 0.6s all ease-in-out;
    transition: 0.6s all ease-in-out;
    -webkit-transform: translate(420px,0);
    -ms-transform: translate(420px,0);
    transform: translate(420px,0);
    visibility: hidden;
}
.product-item:hover .has-second-image .second-image{
    -webkit-transform: translate(0,0);
    -ms-transform: translate(0,0);
    transform: translate(0,0);
    visibility: inherit;
}


.product-item.list .has-second-image .thumb-inner{
    position: relative;
    display: inline-block;
}

.product-item .product-count-down{
    margin-bottom: 30px;
    /*background-image: url('../images/coundown-bg.jpg');*/
    background-repeat: no-repeat;
    background-size: cover;
    padding: 30px 0;
}
.product-item .product-count-down .kt-countdown{
    position: static;
        -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
}
.product-item .product-count-down .box-count,
.product-item .product-count-down .box-count .number{
    color: #fff;
    border: none;
}
.product-item .product-count-down .box-count{
    font-size: 11px;
}
.product-item .discount{
    display: inline-block;
    position: absolute;
    top: 20px;
    left: 20px;
    color: #fff;
    width: 50px;
    height: 50px;
    text-align: center;
    line-height: 50px;
    font-size: 16px;
    font-family: 'Montserrat',sans-serif;
    font-weight: 700;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    border-radius: 50%;
}
/* LIST PRODUCT */
.product-list-grid{
    margin: 0 -5px;
}
.product-list-grid:before,
.product-list-grid:after{
    content: '';
    display: table;
}
.product-list-grid:after{
    clear: both;
}
.product-list-grid .product-item{
    padding: 0 5px;
    margin-bottom: 15px;
}
.product-list-view{
    margin: 0;
}
.product-list-view .product-item{
    margin-bottom: 30px;
}

.products-column-space-30{
    margin: 0 -15px;
}
.products-column-space-30 .product-item{
    padding: 0 15px;
}
/* PRODUCT GRID*/
.product-list-grid.desktop-columns-1 .product-item:nth-child(1n+1),
.product-list-grid.desktop-columns-2 .product-item:nth-child(2n+1),
.product-list-grid.desktop-columns-3 .product-item:nth-child(3n+1),
.product-list-grid.desktop-columns-4 .product-item:nth-child(4n+1),
.product-list-grid.desktop-columns-5 .product-item:nth-child(5n+1),
.product-list-grid.desktop-columns-6 .product-item:nth-child(6n+1),
.product-list-grid.desktop-columns-7 .product-item:nth-child(7n+1),
.product-list-grid.desktop-columns-8 .product-item:nth-child(8n+1),
.product-list-grid.desktop-columns-9 .product-item:nth-child(9n+1),
.product-list-grid.desktop-columns-10 .product-item:nth-child(10n+1),
.product-list-grid.desktop-columns-11 .product-item:nth-child(11n+1),
.product-list-grid.desktop-columns-12 .product-item:nth-child(12n+1){
    clear: left;
}

/* navigation */
.navigation{
    display: block;
    margin-top: 50px;
    width: 100%;
    float: left;
}
.navigation ul{
    padding: 0;
    margin: 0;
    display: table;
    margin: 0 auto;
}
.navigation ul li{
    list-style: none;
    display: inline-block;
}
.navigation ul li span,
.navigation ul li a{
    display: inline-block;
    width: 36px;
    height: 36px;
    text-align: center;
    line-height: 36px;
    background-color: #e9e9e9;
    color: #666;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    border-radius: 50%;
    margin: 0 5px;
}
.navigation ul li span:hover,
.navigation ul li a:hover,
.navigation ul li .current{
    color: #fff;
}


.shop-slider{
    margin-bottom: 25px;
    margin-top: 15px;
}

.shop-slider .owl-carousel:hover .owl-prev {
    left: 40px;
}
.shop-slider .owl-carousel:hover .owl-next {
    right: 40px;
}

.shop-page-bar{
    margin-bottom: 10px;
    display: table;
    width: 100%;
}
.shop-page-bar .page-bar-right{
    display: inline-block;
    float: right;
}
/* breadcrumbs */
.breadcrumbs{
    color: #aaa;
    margin-bottom: 20px;
}
.breadcrumbs a{
    color: #666;
    display: inline;
    padding: 2px 0;
    line-height: 14px;
}
.breadcrumbs a:after{
    content: '/';
    display: inline-block;
    padding: 0 5px;
}

/* Shop bar*/
.shop-page-bar .breadcrumbs{
    display: inline-block;
    float: left;
    margin-bottom: 0;
}
.shop-display-mode{
    display: inline-block;
}
.shop-display-mode .display-mode{
    display: inline-block;
    width: 40px;
    height: 40px;
    text-align: center;
    line-height: 40px;
    background-color: #ebebeb;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    border-radius: 50%;
    color: #666;
}
.shop-display-mode .display-mode:hover,
.shop-display-mode .display-mode.active{
    color: #fff;
}
.woocommerce-ordering{
    display: inline-block;
    padding-right: 20px;
}
.woocommerce-ordering{
    min-width: 200px;
}
.woocommerce-ordering .chosen-container{
    width: 100%!important;
}
.woocommerce-ordering .chosen-container-single .chosen-single,
.woocommerce-ordering .chosen-container .chosen-drop{
    border-color: transparent;
}
/*----------------
SINGLE PRODUCT
----------------*/
.single-product{
    border: 1px solid #ececec;
}
.single-product .kt-images,
.single-product .kt-images-zoom{
    padding: 10px 0 10px 10px;
  /*  margin-bottom: 60px;*/
    position: relative;
}
.single-product .kt-images .kt-thumbs,
.single-product .kt-images .kt-main-image{
    vertical-align: top;
}
.single-product .kt-images .kt-main-image{
    margin-bottom: 10px;
}
.single-product .kt-images .kt-thumbs{
    margin: 0 -5px;
}
.single-product .kt-images .item-thumb{
    display: inline-block;
    float: left;
    padding: 0 5px;
    width: 33.3333%;
}
.kt-zoom-thumbnails{
    margin-top: 10px;
}
.kt-zoom-thumbnails li{
    list-style: none;
}
.single-product .kt-images .owl-prev,
.single-product .kt-images .owl-next,
.kt-images-zoom .owl-prev,
.kt-images-zoom .owl-next{
    width: 30px;
    float: left;
    height: 30px;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0;
    border-radius: 0;
    line-height: 28px;
    font-size: 14px;
    background-color: #f5f5f5;
    color: #666;
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    -webkit-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
    opacity: 0;
    filter: alpha(opacity=0);
    visibility: hidden;
}
.single-product .kt-images .owl-prev,
.kt-images-zoom .owl-prev{
    left: -30px;
}
.single-product .kt-images .owl-next,
.kt-images-zoom .owl-next{
    right: -30px;
}
.single-product .kt-images .kt-thumbs:hover  .owl-prev,
.kt-images-zoom .kt-zoom-thumbnails:hover .owl-prev{
    opacity: 1;
    filter: alpha(opacity=100);
    visibility: inherit;
    left: 5px;
}
.single-product .kt-images .kt-thumbs:hover  .owl-next,
.kt-images-zoom .kt-zoom-thumbnails:hover .owl-next{
    opacity: 1;
    filter: alpha(opacity=100);
    visibility: inherit;
    right: 5px;
}
.single-product .kt-images .owl-prev:hover,
.single-product .kt-images .owl-next:hover,
.kt-images-zoom .owl-prev:hover,
.kt-images-zoom .owl-next:hover{
    background-color: #aaaaaa;
    color: #fff;
}
.no-sidebar .single-product .kt-images .kt-thumbs{
    margin: 0;
    width: 100px;
    position: absolute;
    left: 10px;
    top: 10px;
}
.no-sidebar .single-product .kt-images .kt-main-image{
    padding-left: 110px;
}
.no-sidebar .single-product .kt-images .item-thumb{
    padding: 0;
    margin-bottom: 11px;
    width: 100%;
    float: left;
}
.no-sidebar .single-product .kt-images .owl-prev,
.no-sidebar .single-product .kt-images .owl-next{
    width: 50%;
    height: 28px;
    position: inherit;
    opacity: 1;
    filter: alpha(opacity=100);
    visibility: inherit;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
}
.no-sidebar .single-product .kt-images .owl-nav{
   overflow: hidden;
}
.no-sidebar .single-product .kt-images .kt-main-image{
    margin-bottom: 0;
}
.single-product .summary{
  /*  margin-bottom: 60px;*/
    /*padding-top: 50px;*/
    padding-right: 30px;
    color: #888;
    font-size: 14px;
}
.single-product .summary p{
    margin: 0;
}
.single-product .summary .product_title{
    font-family: 'Merriweather', serif;
    font-style: italic;
    font-size: 13px;
    color: #888;
    margin-bottom: 10px;

}
.single-product .summary .price{
    color: #333;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    margin-bottom: 5px;
    display: inline-block;
}
.single-product .summary .stock{
    margin-bottom: 10px;
}
.single-product .summary .stock label{
    font-weight: normal;
    color: #444;
    margin: 0;
}
.single-product .summary .stock .fa{
    color: #9dc879;
}
.single-product .summary .rating{
    margin-bottom: 10px;
}
.single-product .summary .rating .fa{
    color: #ecc366;
}
.single-product .summary .short-descript{
    margin-bottom: 20px;
    line-height: 20px;
}
.single-product .summary label{
    color: #444;
    font-weight: normal;
    margin: 0;
}
.single-product .summary .variation_form_section{
    overflow: hidden;
}

table.variations-table {
    border-collapse: inherit;
    display: block;
    width: 100%;
    float: left;
    margin-bottom: 0;
    border: none;
}
table.variations-table tr {
    margin-bottom: 18px;
}
table.variations-table th,
table.variations-table td{
    padding: 0;
    vertical-align: middle;
    margin-bottom: 13px;
    width: 100%;
    display: table;
    border: none;
}
table.variations-table th:last-child,
table.variations-table td:last-child{
    margin-bottom: 0;
}
table.variations-table tr{
    margin-bottom: 5px;
    display: block;
}
table.variations-table tr:last-child{
    margin-bottom: 0;
}
table.variations-table .select-option a{
    display: inline-block;
    width: 34px;
    height: 34px;
    text-align: center;
    line-height: 34px;
    font-size: 0;
    float: left;
    position: relative;
}
table.variations-table .select-option{
    overflow: hidden;
    display: inline-block;
    margin: 0 10px 10px 0;
    position: relative;
}
table.variations-table .select-option.selected a:before{
    font-family: 'FontAwesome';
    content: "\f00c";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    font-size: 13px;
    color: #fff;
}
table.variations-table tbody{
    display: block;
    width: 100%;
}

.single-product .summary .quantity{
    border-bottom: 1px solid #ececec;
    padding-bottom: 30px;
    /*margin-bottom: 30px;*/
}
.single-product .summary .quantity label{
    display: block;
    margin-bottom: 10px;
}
.single-product .summary .quantity .qty {
    width: 60px;
    text-align: center;
    padding: 4px 0;
    margin-right: 23px;
    min-height: 34px;
}
.single-product .summary .single_add_to_cart_button {
    margin-right: 25px;
    float: left;
}
.single-product .summary .button.wishlist,
.single-product .summary .button.compare,
.single-product .summary .button.mailto{
    width: 40px;
    height: 40px;
    border: none;
    text-align: center;
    line-height: 40px;
    font-size: 14px;
    padding: 0;
    background-color: #aaaaaa;
    color: #fff;
    float: left;
    margin-right: 10px;
}
.single-product .summary .share{
    display: inline-block;
}
.single-product .summary .share span{
    display: inline-block;
    height: auto;
}
.zoom,
.imagezoom{
    cursor: zoom-in;
}

.product-tabs{
    border-top:1px solid #ececec;
}
.product-tabs .nav-tab{
    padding: 10px 5px 0 5px;
    overflow: hidden;
}
.product-tabs .nav-tab li{
    list-style: none;
    text-align: center;
    display: inline-block;
    float: left;
    padding: 0 5px;
}
.product-tabs .nav-tab li a{
    display: inline-block;
    background-color: #f1f1f1;
    padding: 9px 50px;
    color: #666;
}

.product-tabs .nav-tab li.active a,
.product-tabs .nav-tab li a:hover{
    background-color: #3c3c3c;
    color: #fff;
}
.product-tabs .tab-container{
    vertical-align: top;
    padding: 15px;
}
.no-sidebar .product-tabs{
    display: table;
    width: 100%;
}
.no-sidebar .product-tabs .nav-tab{
    display: table-cell;
    margin: 0;
    border-right: 1px solid #ececec;
    width: 262px;
    padding: 10px;
}
.no-sidebar .product-tabs .nav-tab li{
    display: block;
    padding: 0;
    margin-bottom: 10px;
    width: 100%;
}
.no-sidebar .product-tabs .nav-tab li a{
    width: 100%;
}
.no-sidebar .product-tabs .tab-container{
    display: table-cell;
}
.no-sidebar .single-product .summary table.variations-table tr{
    width: 50%;
    float: left;
}

/* REVIEW */
#reviews .review-title{
    margin-bottom: 50px;
    font-size: 20px;
}
#reviews .commentlist .comment{
    list-style: none;
    border-bottom: 1px solid #ececec;
    margin-bottom: 20px;
}
#reviews .commentlist .comment:last-child{
    margin-bottom: 0;
    border: none;
}
#reviews .avatar{
    width: 70px;
    height: 70px;
    float: left;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    border-radius: 50%;
}
#reviews .comment-text{
    overflow: hidden;
    padding-left: 20px;
}
#reviews .comment-text .rating{
    color: #ecc366;
    font-size: 10px;
}
#review_form{
    margin-top: 50px;
}
#review_form input[type="text"],
#review_form input[type="email"],
#review_form textarea{
    width: 100%;
}
#review_form label{
    font-weight: normal;
    display: block;
}
#review_form .stars{
    margin: 0;
}
#review_form .stars a{
    font-size: 0;
    color: #ccc;
    display: inline-block;
    border-right: 1px solid #eeeeee;
    padding: 0 10px;
    line-height: 12px;
}
#review_form .stars a:first-child{
    padding-left: 0;
}
#review_form .stars a:before {
    font-family: 'FontAwesome';
    font-size: 12px;
    display: inline-block;
}
#review_form .stars .star-1:before {
    content: "\f005";
}
#review_form .stars  .star-2:before {
    content: "\f005\f005";
}
#review_form .stars .star-3:before {
    content: "\f005\f005\f005";
}
#review_form .stars .star-4:before {
    content: "\f005\f005\f005\f005";
}
#review_form .stars .star-5:before {
    content: "\f005\f005\f005\f005\f005";
}
#review_form .stars a:hover,
#review_form .stars a.active{
    color: #ffcc33;
}
/* related and upsells */
.related.products,
.upsells.products{
    margin-top: 50px;
}
/* CHECKOUT */
.block-form{
    border: 1px solid #ececec;
    padding: 10px;
    margin-bottom: 30px;
}
.block-form p{
    margin-bottom: 30px;

}
/*.block-form p:last-child{
    margin-bottom: 0;
}*/
.block-form input[type="text"]{
    width: 100%;
}
.form-heading{
    background-color: #262626;
    color: #fff;
    padding: 12px 0;
    text-align: center;
    font-size: 14px;
    margin-bottom: 30px;
}
table.shop_table{
    margin-bottom: 25px;
}
table.shop_table,
table.shop_table th,
table.shop_table td{
    border: none;
}
table.shop_table th,
table.shop_table td{
    border-bottom: 1px solid #ececec;
    padding: 14px 0;
}
table.shop_table th:last-child,
table.shop_table td:last-child{
    text-align: right;
}
table.cart th{
    background-color: #262626;
    color: #fff;
    font-weight: normal;
    font-family: 'Montserrat';
    padding: 9px 30px;
    text-align: center;
}
table.cart td,
table.cart td:last-child,
table.cart th:last-child{
    text-align: center;
}
table.cart .product{
    text-align: left;
    vertical-align: top;
}
table.cart .product-thumb{
    float: left;
    width: 100px;
}
table.cart .product-info{
    overflow: hidden;
    padding-left: 25px;
}
table.cart .product-price,
table.cart .product-subtotal,
table.cart .order-total{
    font-family: 'Montserrat';
    color: #333;
}
table.cart .order-total{
    font-size: 18px;
}
table.cart .product-info .product-name{
    margin-bottom: 0;
}
table.cart .product-info .product-name a{
    font-family: 'Merriweather', serif;
    font-style: italic;
    font-size: 13px;
    color: #888;
}
table.cart .quantity .qty{
    padding: 7px 0;
    width: 60px;
    text-align: center;
}
table.cart .remove{
    color: #aaa;
}
.block-form label{
    font-weight: normal;
    color: #333;
}
.block-form .payment_methods{
    padding: 0;
    padding-bottom: 57px;
}
.block-form .payment_methods p{
    margin-bottom: 0
}
.block-form .payment_methods li{
    list-style: none;
    margin-bottom: 45px;
}
.block-form .payment_methods li .input-radio{
    float: left;
}
.block-form .payment_methods li label,
.block-form .payment_methods li .payment_box{
    padding-left: 30px;
}
.block-form .payment_methods li label{
    padding-left: 18px;
}
.block-form .block-form-footer{
    background-color: #fafafa;
    padding: 28px 68px;
}

.block-form.order-review  .form-heading{
    margin-bottom: 10px;
}
.block-form.payment  .form-heading{
    margin-bottom: 25px;
}
/*----------------
WIDGET
----------------*/
.tagcloud a{
    display: inline-block;
    border: 1px solid #ececec;
    font-size: 12px!important;
    color: #666;
    padding: 4px 20px;
    margin-bottom: 5px;
    font-family: 'Merriweather', serif;
    font-style: italic;
}
.tagcloud a:hover{
    color: #fff;
}
.widget{
    margin-bottom: 70px;
}
.widget:last-child{
    margin-bottom: 0;
}
.widget .widget-title{
    font-size: 14px;
    color: #444444;
    text-transform: uppercase;
    margin-bottom: 25px;
}
.widget .widget-title:after{
    display: block;
    font-family: 'FontAwesome';
    content: "\f030 -\f11b -\f06b -\f095 -\f1b9 -\f1e5 -\f0f4 -\f0f5";
    margin-top: 10px;
    color: #888888;
    font-size: 12px;
}

/* SHOP WIDGET */
.widget_product_categories ul>li,
.widget_layered_nav ul>li{
    list-style: none;
}
.widget_product_categories ul>li>a,
.widget_layered_nav ul>li>a{
    display: inline-block;
    padding: 8px 0;
    color: #666666;
    position: relative;
}
.widget_product_categories ul>li>a:after,
.widget_layered_nav ul>li>a:after{
    content: '';
    width: 33px;
    height: 1px;
    background-color: #e5e5e5;
    position: absolute;
    left: 0;
    bottom: 0;
}
.widget_product_categories .count,
.widget_layered_nav .count{
    margin-left: 5px;
}

.widget_layered_nav .attr{
    display: inline-block;
    width: 10px;
    height: 10px;
    margin-right: 18px;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    border-radius: 50%;
}

.widget_price_filter .slider-range-price{
    position: relative;
    height: 5px;
    background-color: #eeeeee;
}

.widget_price_filter .ui-widget-header{
    height: 5px;
    background: #d0d0d0;
    position: absolute;
}
.widget_price_filter .ui-slider-handle{
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 15px 8.5px 0 8.5px;
    border-color: #aaaaaa transparent transparent transparent;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 15px 8.5px 0 8.5px;
    border-color: #aaaaaa transparent transparent transparent;
    position: absolute;
    top: -5px;
}
.widget_price_filter .ui-slider-handle:last-child{
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 15px 8.5px 0 8.5px;
    border-color: #e9c67b transparent transparent transparent;

}

.widget_price_filter .amount-range-price{
    text-align: center;
    margin-bottom: 10px;
}
.widget_price_filter .button{
    border: 1px solid #ccc;
    padding: 6px 25px;
    background-color: #f5f5f5;
    color: #333;
}
.widget_price_filter .button:hover{
    background-color: #926dde;
    border-color: #926dde;
    color: #fff;
}
.widget_kt_recent_posts .list-post{
    padding: 0;
    margin: 0;
}
.widget_kt_recent_posts .list-post .post{
    list-style: none;
    margin-bottom: 20px;
    overflow: hidden;
}
.widget_kt_recent_posts .list-post .post:last-child{
    margin-bottom: 0;
}
.widget_kt_recent_posts .post .thumb{
    float: left;
}
.widget_kt_recent_posts .post .info{
    overflow: hidden;
    padding-left: 20px;
}
.widget_kt_recent_posts .post-title{
    margin-bottom: 5px;
    line-height: 18px;
}
.widget_kt_recent_posts .post-title a{
    font-size: 13px;
    color: #333;
}
.widget_kt_recent_posts .meta{
    color: #aaaaaa;
    font-size: 10px;
}
.widget_kt_recent_posts .meta span:after{
    content: ' - ';
}
.widget_kt_recent_posts .meta span:last-child:after{
    display: none;
}
.widget_categories ul li{
    list-style: none;
}
.widget_categories ul li a{
    display: inline-block;
    border-bottom: 1px solid #eaeaea;
    padding: 8px 0;
    width: 100%;
    color: #666;
}
.widget_categories ul li:last-child a{
    border: none;
}
.widget_categories ul li a .count{
    float: right;
    font-size: 12px;
    font-style: italic;
    color: #aaa;
}
.widget_search form{
    position: relative;
}
.widget_search form .search-field{
    width: 100%;
    padding: 12px 25px;
    padding-left: 50px;
    font-family: 'Merriweather', serif;
    font-size: 12px;
    font-style: italic;
    color: #aaa;
}
.widget_search .button-submit{
    position: absolute;
    top: 0;
    left: 0;
    width: 50px;
    height: 50px;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0;
    border-radius: 0;
    border: none;
    padding: 0;
    line-height: 50px;
    text-align: center;
    background-color: transparent;
    color: #aaa;
    font-size: 15px;
}
.widget_archive ul{
    overflow: hidden;
    line-height: 30px;
}
.widget_archive li{
    list-style: none;
    width: 50%;
    float: left;
}
.widget_archive li a{
    color: #666;
}
.widget_related_product .widget-title{
    margin-bottom: 35px;
}

/*----------------
SHORTCODE
----------------*/
.block-social{
   /* background-image: url("../images/banners/2.jpg");*/
    min-height: 320px;
    position: relative;
    background-position: center;
}
.block-social:before{
    content: '';
    background-color: rgba(0,0,0,0.6);
    position: absolute;
    top: 0;
    bottom: 0;
    width: 100%;
}
.block-social .social {
    float: right;
    position: relative;
    z-index: 1;
    max-width: 586px;
    width: 100%;
    text-align: center;
    padding-top: 139px;
}
.block-social .social a{
    display: inline-block;
    width: 44px;
    height: 44px;
    background-color: rgba(255,255,255,0.1);
    color: #fff;
    text-align: center;
    line-height: 44px;
    font-size: 24px;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    border-radius: 50%;
    margin: 0 3px;
}
/* newsletter */

.block-newsletter{
    color: #fff;
    /*background-image: url("../images/banners/28.jpg");*/
    min-height: 320px;
}

.block-newsletter .inner{
    max-width: 586px;
    width: 100%;
    padding-top: 80px;
    padding-left: 60px;
}
.block-newsletter .title{
    color: #fff;
    margin-bottom: 0;
}
.block-newsletter .subtitle{
    font-family: 'Merriweather', serif;
    font-style: italic;
    margin-bottom: 38px;
}
.block-newsletter form{
    position: relative;
}
.block-newsletter form .text-input{
    width: 100%;
    border: none;
    background-color: rgba(255,255,255,0.2);
    padding: 11px 25px;
}
.block-newsletter .button{
    width: 46px;
    height: 46px;
    text-align: center;
    line-height: 46px;
    font-size: 16px;
    padding: 0;
    background-color: transparent;
    position: absolute;
    top: 0;
    right: 0;
    border: none;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0;
    border-radius: 0;
    color: #fff;
}
.block-newsletter.style2{
    /*background-image: url("../images/banners/33.jpg");*/
    background-position: center center;
    color: #666;
    min-height: 1px;
    padding: 82px 0 95px 0;
}
.block-newsletter.style2 .inner{
    max-width: 875px;
    margin: 0 auto;
    text-align: center;
    padding: 0;
}
.block-newsletter.style2 .title{
    color: #333;
    margin-bottom: 3px;
    font-size: 20px;
    font-weight: 700;
}
.block-newsletter.style2 .subtitle{
    font-family: 'Lora';
    font-size: 16px;
    font-style: italic;
    margin-bottom: 25px;
}
.block-newsletter.style2 form{
    max-width: 525px;
    margin: 0 auto;
}
.block-newsletter.style2 form .text-input{
    background-color: #fff;
    color: #aaa;
    min-height: 46px;
    padding-right: 46px;
}
.block-newsletter.style2 .button{
    color: #aaa;
}

/* promotions */
.bg-image {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    width: 100%;
    min-height: 1px;
    display: table;
    font-size: 0;
    overflow: hidden;
    -moz-transition: all 1s ease;
    -ms-transition: all 1s ease;
    -webkit-transition: all 1s ease;
    -o-transition: all 1s ease;
    position: relative;
}
.bg-image:before{
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    -webkit-transition: all .6s ease-in-out;
    -moz-transition: all .6s ease-in-out;
    -ms-transition: all .6s ease-in-out;
    -o-transition: all .6s ease-in-out;
    transition: all .6s ease-in-out;
}
.bg-image:after{
        content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    -webkit-transition: all .6s ease-in-out;
    -moz-transition: all .6s ease-in-out;
    -ms-transition: all .6s ease-in-out;
    -o-transition: all .6s ease-in-out;
    transition: all .6s ease-in-out;
}
.block-banner-text:hover .bg-image:before{
    right: 50%;
    left: 50%;
    background: rgba(255,255,255,0.2);
}
.block-banner-text:hover .bg-image:after{
    top: 50%;
    bottom: 50%;
    background: rgba(255,255,255,0.2);
}
.block-banner-text{
    position: relative;
    overflow: hidden;
}
.block-banner-text .content{
    position: absolute;
}
.block-banner-text .content .title{
    font-size: 16px;
    color: #666;
    font-family: 'Merriweather', serif;
    font-style: italic;
    font-weight: 300;
    margin: 0;
}
.block-banner-text .content .subtitle{
    margin: 0;
    text-transform: uppercase;
    font-size: 21px;
    color: #444444;
    font-weight: 700;
}
.block-banner-text .content .link-more{
    display: inline-block;
    width: 36px;
    height: 36px;
    font-size: 10px;
    color: #888;
    border: 1px solid #888;
    text-align: center;
    line-height: 34px;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    border-radius: 50%;
    margin-top: 25px;
}
.block-banner-text.white .content .title,
.block-banner-text.white .content .subtitle,
.block-banner-text.white .content .link-more{
    color: #fff;
}
.block-banner-text.white .content .link-more{
    border-color: #fff;
}

.block-banner-text:hover .content .title{
    -webkit-animation: fadeInDown 1s;
    -moz-animation: fadeInDown 1s;
}
.block-banner-text:hover .content .subtitle{
    -webkit-animation: bounceInLeft 1s;
    -moz-animation: bounceInLeft 1s;
}
.block-banner-text.style2 .title{
    font-size: 14px;
    color: #555555;
    text-transform: uppercase;
    font-family: 'Montserrat', sans-serif;
    font-style: normal;
    margin-bottom: 5px;
    margin-top: 10px;
}
.block-banner-text.style2 .subtitle{
    font-size: 12px;
    color: #888888;
    font-family: 'Merriweather', serif;
    font-style: italic;
    font-weight: 300;
    text-transform: none;
}
.block-banner-text.style2 .flash{
    font-size: 10px;
    text-transform: uppercase;
    padding: 0 15px;
    display: inline-block;
    background-color: #e9c77b;
    color: #fff;
    margin-top: 10px;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    -ms-border-radius: 4px;
    -o-border-radius: 4px;
    border-radius: 4px;
}

.block-banner-text.style3 .title{
    color: #fff;
    font-family: inherit;
    font-style: normal;
}
.block-banner-text.style3 .subtitle{
    color: #fff;
}
.block-banner-text.style3 .link-more{
    border: none;
    width: auto;
    height: auto;
    font-size: 14px;
    color: #fff;
    text-decoration: underline;
    font-family: 'Merriweather', serif;
    font-style: italic;
    font-weight: normal;
    margin-top: 55px;
}
.block-banner-text.style4 .content {
    padding: 0 45px;
}
.block-banner-text.style4 .title{
    font-size: 24px;
    color: #fff;
    font-family: inherit;
    font-style: normal;
}
.block-banner-text.style4 .title:after {
    display: block;
    font-family: 'FontAwesome';
    content: "\f106\f106\f106\f106\f106\f106\f106\f106";
    margin-top: 3px;
    font-size: 12px;
}
.block-banner-text.style4 .subtitle{
    font-size: 16px;
    color: #fff;
    font-family: 'Merriweather', serif;
    font-style: italic;
    text-transform: none;
    line-height: 24px;
    font-weight: normal;
}
.block-banner-text.style4 .link-more{
    width: auto;
    height: auto;
    border: 2px solid #fff;
    font-size: 10px;
    padding: 13px 20px;
        -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -ms-border-radius: 20px;
    -o-border-radius: 20px;
    border-radius: 20px;
    color: #fff;
    text-transform: uppercase;
    line-height: normal;
    margin-top: 25px;
}

.block-banner-text.style5 .content .title{
    font-style: normal;
    font-family: inherit;
    font-size: 16px;
}
.block-banner-text.style5 .content .link-more{
    width: auto;
    height: auto;
    border: none;
    line-height: normal;
    font-family: 'Merriweather', serif;
    font-style: italic;
    font-size: 14px;
    text-decoration: underline;
    color: #aaa;
    margin-top: 35px;
}

.block-banner-text.style6 .title{
    color: #fff;
    text-transform: uppercase;
    font-family: inherit;
    font-style: normal;
    line-height: 17px;
}
.block-banner-text.style6 .subtitle{
    color: #fff;=
}
.block-banner-text.style7 .content {
    max-width: 330px;
}
.block-banner-text.style7 .title{
    font-family: 'Montserrat';
    font-size: 24px;
    color: #333;
    font-style: normal;
}
.block-banner-text.style7 .desc{
    font-size: 12px;
    font-family: 'Merriweather';
    font-style: italic;
    color: #666;
}

/* block-daily-deal */
.block-daily-deal{
    display: table;
    width: 100%;
}
.block-daily-deal .percent{
    display: inline-block;
    position: absolute;
    top: 20px;
    left: -54px;
    width: 200px;
    height: 44px;
    transform: rotate(317deg);
    -webkit-transform: rotate(317deg);
    -moz-transform: rotate(317deg);
    -o-transform: rotate(317deg);
    -ms-transform: rotate(317deg);
    background-color: #e9c77b;
    color: #fff;
    text-align: center;
    line-height: 44px;
    font-size: 18px;
    font-family: 'Montserrat', sans-serif;
}
.block-daily-deal .thumbs,
.block-daily-deal .product-detail,
.block-daily-deal .product-count-down{
    display: table-cell;
    vertical-align: top;
}
.block-daily-deal .thumbs{
    width: 180px;
    padding-right: 40px;
}
.block-daily-deal .thumbs a{
    display: block;
    padding: 10px;
    background-color: #fff;
    margin-bottom: 15px;
    position: relative;
}
.block-daily-deal .thumbs a:after{
    content: '';
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 10.5px 13px 10.5px 0;
    border-color: transparent #ffffff transparent transparent;
    position: absolute;
    top: 50%;
    right: -40px;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    display: none;
}
.block-daily-deal .thumbs a.selected:after{
    display: block;
}
.block-daily-deal .thumbs a:last-child{
    margin-bottom: 0;
}
.block-daily-deal .product-count-down{
    width: 130px;
    background-color: #92a4c4;
    padding: 0 20px;
    padding-top: 15px;
}
.block-daily-deal .product-detail{
    background-color: #fff;
}
.block-daily-deal .product-detail .inner{
    background-color: #fff;
    padding: 20px;
    overflow: hidden;
}

.block-daily-deal .product-image{
    float: left;
    position: relative;
    overflow: hidden;
    max-width: 50%;
}

.block-daily-deal .product-info{
    overflow: hidden;
    padding-left: 20px;
    padding-top: 45px;
    font-size: 13px;
}
.block-daily-deal .product-info .product-name{
    margin-bottom: 10px;
}
.block-daily-deal .product-info .product-name a{
    color: #555;
    font-size: 18px;
}
.block-daily-deal .product-info .rating{
    color: #888;
}
.block-daily-deal .product-info .rating span{
    font-style: italic;
}
.block-daily-deal .product-info .rating .fa {
    color: #ecc366;
}
.block-daily-deal .attributes{
    color: #888;
    margin-top: 10px;
}
.block-daily-deal .attributes p{
    margin-bottom: 5px;
}
.block-daily-deal .attributes label{
    font-weight: normal;
    color: #444;
    margin: 0;
    margin-right: 8px;
    display: inline-block;
}
.block-daily-deal .price{
    display: block;
    margin-top: 30px;
    font-size: 24px;
    color: #444;
    font-family: 'Montserrat', sans-serif;
    overflow: hidden;
}
.block-daily-deal .price ins{
    float: left;
    margin-right: 10px;
    text-decoration: none;
}
.block-daily-deal .price del{
    color: #bbbbbb;
    font-size: 20px;
    line-height: 100%;
}
.block-daily-deal .dot{
    display: none;
}
.block-daily-deal .box-count{
    display: block;
    text-align: center;
    border-bottom-style: solid;
    border-bottom-width: 1px;
    border-bottom-color: rgba(255,255,255,0.3);
    color: #fff;
    padding-top: 28px;
    padding-bottom: 28px;
}
.block-daily-deal .box-count:last-child{
    border: none;
}
.block-daily-deal .box-count .number{
    display: block;
    font-size: 28px;
    font-family: 'Montserrat', sans-serif;
}
.block-daily-deal .box-count .text{
    font-family: 'Merriweather', serif;
    font-size: 14px;
    font-style: italic;
}
/* box-icon */
.box-icon{
    text-align: center;
    position: relative;
}
.box-icon .icon{
    width: 140px;
    height: 140px;
    text-align: center;
    line-height: 140px;
    background-color: #555555;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    border-radius: 50%;
    position: absolute;
    top: -52px;
    left: 50%;
    color: #fff;
    font-size: 30px;
    font-weight: bold;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    transform: translateX(-50%);
    -webkit-transition: all 0.3s ease 0.2s;
    -o-transition: all 0.3s ease 0.2s;
    transition: all 0.3s ease 0.2s;
}

.box-desc h3{
    font-weight: 500;
    color: #2c2c2c;
    font-size: 16px;
    line-height: 24px;
    font-family: Raleway, sans-serif;
}


.box-icon .box-content{
    background-color: #fff;
    padding-top: 112px;
    padding-bottom: 75px;
    color: #aaaaaa;
    font-size: 14px;
}
.box-icon .title{
    font-size: 14px;
    color: #444444;
    margin-bottom: 5px;
}
.box-icon .icon .icon-font{
    display: inline-block;
}
.box-icon:hover .icon .icon-font{
    -webkit-animation: zoomIn 0.5s;
    -moz-animation: zoomIn 0.5s;
}

.box-icon.style2 .icon{
    width: 100%;
    height: auto;
    position: static;
    background-color: transparent;
    line-height: normal;
    text-align: center;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    -o-transform: translateX(0);
    transform: translateX(0);
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0;
    border-radius: 0;
    margin-bottom: 10px;
    color: #888;
}
.box-icon.style2 .box-content{
    background-color: transparent;
    padding: 0;
    color: #444;
}
.box-icon.style2:hover .icon{
    background-color: transparent!important;
}
.box-icon.style2 .title{
    color: #aaa;
}
.box-icon.style3 .icon {
    width: 100%;
    height: auto;
    position: static;
    background-color: transparent;
    line-height: normal;
    text-align: center;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    -o-transform: translateX(0);
    transform: translateX(0);
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0;
    border-radius: 0;
    margin-bottom: 10px;
    color: #aaa;
}
.box-icon.style3:hover .icon{
    background-color: transparent!important;
}
.box-icon.style3 .box-content{
    padding: 0;
}

.box-icon.style4{
    border: 1px solid #efefef;
    -webkit-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
}
.box-icon.style4 .icon{
    position: static;
    float: left;
    width: 80px;
    height: auto;
    background-color: transparent;
    color: #666;
    line-height: inherit;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    -o-transform: translateX(0);
    transform: translateX(0);
    font-size: 36px;
    line-height: normal;
}
.box-icon.style4 .box-content{
    padding: 0;
    text-align: left;
    overflow: hidden;
    color: #666;
}
.box-icon.style4:hover .icon{
    background-color: transparent!important;
}
.box-icon.style4 .title{
    margin-bottom: 0;
}

.box-icon.style5{
    background-color: #fff;
    border: 1px solid #e6e6e6;
    padding: 15px;
}
.box-icon.style5 .inner{
    display: table;
    margin: 0 auto;
}
.box-icon.style5  .icon{
    position: static;
    float: left;
    width: 50px;
    height: 50px;
    background-color: transparent;
    color: #999999;
    line-height: inherit;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    -o-transform: translateX(0);
    transform: translateX(0);
    font-size: 25px;
    line-height: normal;
    border: 1px solid #e6e6e6;
    line-height: 50px;
}
.box-icon.style5 .box-content{
    padding: 0;
    overflow: hidden;
    padding-left: 25px;
    text-align: left;
    padding-top: 5px;
}
.box-icon.style5 .title{
    text-transform: uppercase;
    font-size: 14px;
    color: #333;
    margin: 0;
    font-weight: 700;
}
.box-icon.style5 .subtitle{
    color: #999;
    font-size: 13px;
}
.box-icon.style5:hover .icon{
    color: #fff;
}

/* Lastest blog*/
.lasttest-blog .item-blog{
    -webkit-box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.12);
    -moz-box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.12);
    box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.12);
    margin: 2px;
}
.lasttest-blog .item-blog.style2{
    -webkit-box-shadow: 0px 0px 5px 0px rgba(0,0,0,0);
    -moz-box-shadow: 0px 0px 5px 0px rgba(0,0,0,0);
    box-shadow: 0px 0px 5px 0px rgba(0,0,0,0);
    border: 1px solid #f0f0f0;

}
.lasttest-blog .post-thumb{
    margin-bottom: 2px;
    position: relative;
    height: 150px;
    text-align: center;
    line-height: 120px;
}
.lasttest-blog .blog-info{
    padding: 0 20px;
}
.lasttest-blog .blog-info .title{
  height: 60px;
   line-height: 20px;
   margin-bottom: 5px;
   overflow: hidden;
}
.lasttest-blog .blog-info .title a{
    font-size: 14px;
    color: #444444;
}
.lasttest-blog .blog-info .date{
    color: #aaa;
    font-size: 12px;
}
.lasttest-blog .blog-buttom{
    border-top: 1px solid #f1f1f1;
    color: #666;
    font-size: 12px;
    padding: 13px 20px;
    overflow: hidden;
}
.lasttest-blog .blog-buttom .fa{
    color: #aaa;
}
.lasttest-blog .blog-buttom .like,
.lasttest-blog .blog-buttom .comments{
    display: inline-block;
    margin-right: 10px;
    margin-top: 7px;
}
.lasttest-blog .blog-buttom .button{
    float: right;
    background-color: #f2f2f2;
    color: #666;
    text-transform: none;
    border: none;
    font-family: 'Arimo', sans-serif;
    font-size: 12px;
    padding: 6px 25px;
}
.lasttest-blog .blog-buttom .button:hover{
    color: #fff;
}
.lasttest-blog .owl-prev,
.lasttest-blog .owl-next{
    top: 30%;
}
.lasttest-blog .post-thumb a:before {
    content: '+';
    position: absolute;
    top: 50%;
    left: 50%;
    color: #fff;
    text-align: center;
    vertical-align: middle;
    font-size: 30px;
    font-weight: 100;
    z-index: 1;
    opacity: 0;
    filter: alpha(opacity=0);
    -webkit-transform: translate(-50%,-50%);
    -ms-transform: translate(-50%,-50%);
    -o-transform: translate(-50%,-50%);
    transform: translate(-50%,-50%);
    -webkit-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
}
.lasttest-blog .post-thumb a:after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    height: 150px;
    background-color: rgba(0,0,0,0.3);
    -webkit-transform: scale(0);
    -ms-transform: scale(0);
    -o-transform: scale(0);
    transform: scale(0);
    -webkit-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
}
.lasttest-blog .post-thumb:hover a:before {
    opacity: 1;
    filter: alpha(opacity=100);
}
.lasttest-blog .post-thumb:hover a:after {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
}
/* STYLE 2 */

.lasttest-blog.style2  .item-blog{
    -webkit-box-shadow: 0px 0px 5px 0px rgba(0,0,0,0);
    -moz-box-shadow: 0px 0px 5px 0px rgba(0,0,0,0);
    box-shadow: 0px 0px 5px 0px rgba(0,0,0,0);
    margin: 1px;
    padding: 10px;
    border: 1px solid #eee;
}
.lasttest-blog.style2 .blog-info .title{
    font-family: 'Montserrat', sans-serif;
    font-weight: normal;
    font-size: 15px;

}
.lasttest-blog.style2 .blog-info{
    padding: 0;
}
.lasttest-blog.style2 .blog-info  .date,
.lasttest-blog.style2 .blog-info  .comments{
    font-size: 13px;
    color: #aaaaaa;
}
.lasttest-blog.style2 .blog-info  .date{
    margin-right: 10px;
}
.lasttest-blog.style2 .blog-info .readmore{
    /*display: block;*/
    color: #aaaaaa;
    font-size: 12px;
    text-decoration: underline;
    /*margin-top: 15px;*/
}
/* kt-tabs */
.kt-tabs{
    border: 1px solid #f0f0f0;
}
.kt-tabs .tab-head{
    padding: 17px 30px;
    overflow: hidden;
    border-bottom: 1px solid #f0f0f0;
}
.kt-tabs .tab-title{
    display: inline-block;
    float: left;
    font-size: 18px;
    color: #444;
    margin: 0;
}
.kt-tabs .tab-title:after{
    content: '';
    height: 2px;
    display: block;
}
.kt-tabs .nav-tab {
    float: right;
    display: inline-block;
    margin: 0;
    margin-right: 40px;
}
.kt-tabs .nav-tab li{
    list-style: none;
    display: inline-block;
    padding: 0 25px;
}
.kt-tabs .nav-tab li a{
    color: #666;
}


.floor-elevator{
    display: inline-block;
    float: right;
    min-width: 60px;
    padding-left: 45px;
    padding-top:5px;
}
.floor-elevator .btn-elevator{
    display: block;
    text-align: center;
    font-size: 25px;
    line-height: 16px;
    color: #a1a1a1;
}
/* TAB STYLE 2 */
.kt-tabs.style2{
    border: none;
}
.kt-tabs.style2 .tab-head{
    padding:10px 0;
    border: none;
    padding-top: 0;
    margin-bottom: 5px;

}
.kt-tabs .tab-title{
    font-size: 24px;
    text-transform: uppercase;
    line-height: normal;
}
.kt-tabs.style2 .tab-title:after {
    display: block;
    font-family: 'FontAwesome';
    content: "\f106\f106\f106\f106\f106\f106\f106\f106";
    font-size: 12px;
    height: auto;
    background-color: transparent;
    line-height: normal;
}
.kt-tabs.style2 .nav-tab li{
    padding: 8px 0;
}
.kt-tabs.style2 .nav-tab li a{
    display: inline-block;
    padding: 0 15px;
}
.kt-tabs.style2 .nav-tab li:last-child a{
    padding-right: 0;
}
.kt-tabs.style2 .nav-tab li:first-child a{
    padding-left: 0;
}
.kt-tabs.style2 .nav-tab li:after{
    content: '/';
    display: inline-block;
    color: #cccccc;
}
.kt-tabs.style2 .nav-tab li:last-child:after{
    display: none;
}
/* TAB STYLE 3*/
.kt-tabs.style3{
    border: none;
}
.kt-tabs.style3 .tab-head{
    padding: 0;
    border-color: #e8e8e8;
}
.kt-tabs.style3 .tab-title{
    font-weight: 700;
}
.kt-tabs.style3 .nav-tab li{
    padding: 5px 15px;
}
.kt-tabs.style3 .nav-tab li:last-child{
    padding-right: 0;
}
.kt-tabs.style3 .tab-title:after{
    height: 1px;
    margin-top: 5px;
}
.kt-tabs.style3 .floor-elevator{
    padding-top: 0;
}
.kt-tabs.style3 .box-category-products .head .title{
    left: 70px;
    right: 70px;
}
/* STYLE 4 */
.kt-tabs.style4{
    border: none;
}
.kt-tabs.style4 .tab-head{
    padding: 0;
    border: none;
}
.kt-tabs.style4 .nav-tab{
    float: left;
}
.kt-tabs.style4 .nav-tab li{
    padding: 13px 20px;
    position: relative;
    padding-bottom: 12px;
}
.kt-tabs.style4 .nav-tab li:after{
    content: '';
    display: inline-block;
    height: 4px;
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    -webkit-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
}
.kt-tabs.style4 .nav-tab li:hover:after,
.kt-tabs.style4 .nav-tab li.active:after{
    width: 100%;
}
.kt-tabs.style4 .nav-tab li a{
    font-size: 18px;
    color: #333;
    font-weight: 700;
}
.kt-tabs.style4 .tab-container{
    background-color: #fff;
}
/* STYLE 5 */
.kt-tabs.style5{
    border: none;
}
.kt-tabs.style5 .tab-head{
    padding: 0;
}
.kt-tabs.style5  .tab-title{
    font-size: 18px;
    color: #333;
    font-weight: 700;
    text-transform: none;
    position: relative;
    padding: 14px 0;
    padding-left: 10px;
}
.kt-tabs.style5  .tab-title:after{
    display: none;
}
.kt-tabs.style5  .tab-title:before{
    content: attr(data-head);
    position: absolute;
    left: 0;
    top: 0;
    font-size: 70px;
    line-height: 55px;
    color: #dddddd;
    font-weight: 700;
    font-family: 'Montserrat',sans-serif;
}
.kt-tabs.style5  .tab-title .text{
    position: relative;
    z-index: 1;
}
.kt-tabs.style5 .nav-tab li{
    padding: 13px 25px;
    position: relative;
}
.kt-tabs.style5 .nav-tab li a{
    font-size: 14px;
    color: #666;
}
.kt-tabs.style5 .nav-tab li:after{
    content: '';
    display: inline-block;
    height: 4px;
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    -webkit-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
}
.kt-tabs.style5 .nav-tab li:hover:after,
.kt-tabs.style5 .nav-tab li.active:after{
    width: 100%;
}
.kt-tabs.style5 .tab-container{
    background-color: #fff;
}
.kt-tabs.style5 .floor-elevator{
    /*background-image: url("../images/icons/32.png");*/
    background-position: left center;
    background-repeat: no-repeat;
    padding: 0;
    float: right;
    margin-top: 10px;
    padding-left: 20px;
    width: 45px;
    min-width: 1px;
}
/* TEAM*/
.team{
    border: 1px solid #ececec;
    position: relative;
    background-color: #fff;
    -webkit-border-radius: 15px;
    -moz-border-radius: 15px;
    -ms-border-radius: 15px;
    -o-border-radius: 15px;
    border-radius: 15px;
    /*margin-top: 100px;*/
}
.team-item .avatar{
    position: absolute;
    left: 50%;
    top: 30px;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    transform: translateX(-50%);
    width: 90px;
    height: 90px;
}
.team-item .avatar img{
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    border-radius: 50%;
}
.team-item .content{
    padding-top: 140px;
    padding-bottom: 50px;
    text-align: center;
}
.team-item .name{
    font-size: 14px;
    margin-bottom: 5px;
}
.team-item .position{
    font-family: 'Merriweather', serif;
    font-style: italic;
    font-size: 14px;
    color: #aaa;
}
.team-item .social{
    margin-top: 30px;
}
.team-item .social a{
    display: inline-block;
    width: 40px;
    height: 40px;
    text-align: center;
    line-height: 40px;
    color: #ffffff !important;
    /*background-color: #2874a6;*/
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    border-radius: 50%;
}
.team-item .social a:hover{
    color: #fff;
}
/* testimonial*/
.testimonials .owl-prev,
.testimonials .owl-next{
    top: 35%;
}
.testimonial .inner{
    max-width: 684px;
    display: block;
    margin: 0 auto;
    position: relative;
}

.testimonial .inner .text{
    background-color: rgba(255,255,255,0.1);
    padding: 50px 100px;
    text-align: center;
    color: #fff;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
    border-radius: 10px;
    font-family: 'Merriweather', serif;
    font-style: italic;
    font-size: 12px;
}
.testimonial .inner .text p{
    margin: 0;
    position: relative;
}
.testimonial .inner .text p:before{
    content: '“';
    font-family: Georgia, Times, 'Times New Roman', serif;
    font-size: 36px;
    line-height: normal;
    font-style: italic;
    position: absolute;
    top: -3px;
    left: 0;
}
.testimonial .inner .text p:after{
    content: '’’';
    font-family: Georgia, Times, 'Times New Roman', serif;
    font-size: 36px;
    line-height: normal;
    position: absolute;
    font-style: italic;
    bottom: -20px;
}
.testimonial .name{
    float: right;
    display: inline-block;
    max-width: 427px;
    width: 100%;
    text-align: center;
    color: #fff;
    font-size: 13px;
    padding-top: 25px;
    position: relative;
}
.testimonial .name:before{
    content: '';
    display: inline-block;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 9px 10px 0 10px;
    border-color: #007bff transparent transparent transparent;
    position: absolute;
    top: 0;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    transform: translateX(-50%);
    border-top-color: rgba(255,255,255,0.1);
}

/* BLOCK BOX */

.block-box .block-head{
    background-color: #4e4e4e;
    color: #aaa;
    padding: 18px 30px;

}
.block-box .block-head .title,
.block-box .block-head .block-desc{
    display: inline-block;
}
.block-box .block-head .block-desc{
    float: right;
    font-family: 'Merriweather';
    font-weight: 300;
    font-style: italic;
    font-size: 14px;
}
.block-box .block-head .title{
    margin: 0;
    color: #fff;
    font-size: 18px;
}
.block-box .block-head .title:after{
    content: '';
    width: 40px;
    height: 2px;
    display: block;
}
.block-box .block-box-content{
    border-left: 1px solid #f0f0f0;
    border-right: 1px solid #f0f0f0;
}
.block-box .product-item.style4 .product-inner{
    padding: 35px 20px;
    padding-bottom: 51px;
}
.block-box .product-item.style4 .info{
    padding-top: 0;
}

.block-box .product-item.style4 .group-button{
    padding-top: 15px;
    text-align: left;
}
.block-box .product-item .wishlist,
.block-box .product-item .add_to_cart_button,
.block-box .product-item .compare{
    margin: 0;
}

.block-box.no-border-left .block-box-content{
    border-left: none;
}
.block-box.no-border-right .block-box-content{
    border-right: none;
}
/* BRANDS */
.block-brands{
    padding: 20px 40px;
}


/* BANNER CATEGORY */
.banner-category{
    position: relative;
    overflow: hidden;
}
.banner-category .content{
    position: absolute;
    top: 50%;
    left: 15px;
    -webkit-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    z-index: 2
}
.banner-category .banner{
    display: inline-block;
    position: relative;
    float: left;

}
.banner-category .flash{
    position: absolute;
    top: 15px;
    left: 15px;
    display: inline-block;
    color: #fff;
    background-color: #83ccd5;
    text-transform: uppercase;
    padding: 0 15px;
    font-size: 11px;
    font-family: 'Montserrat';
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    -ms-border-radius: 2px;
    -o-border-radius: 2px;
    border-radius: 2px;
    margin-bottom: 20px;
    z-index: 1;
}
.banner-category .flash.sale{
    background-color: #e9c77b;
}
.banner-category .flash.hot{
    background-color: #ff9082;
}
.banner-category .title{
    line-height: normal;
    font-weight: 700;
    margin: 0;
    font-size: 18px;
}
.banner-category .title a{
    text-transform: uppercase;
    color: #333;
}
.block-group-category{
    border-top: 1px solid #ececec;
    border-left: 1px solid #ececec;
}
.block-group-category .banner-category{
    border-bottom: 1px solid #ececec;
    border-right: 1px solid #ececec;
}
.block-group-category .background {
    background: rgba(238, 193, 1, 0.3) none repeat scroll 0 0;
    content: "";
    height: 100%;
    left: 0;
    padding: 50px 40px;
    position: absolute;
    text-align: center;
    text-transform: uppercase;
    top: 100%;
    width: 100%;
    z-index: 1;
}

/* BOX CATEGORY */
.box-category-products{

}
.box-category-products .head{
    position: relative;
    text-align: center;
    background-color: #fff;
    overflow: hidden;
}
.box-category-products .head .title{
    position: absolute;
    bottom: 13px;
    left: 23px;
    right: 23px;
    border-width: 10px;
    border-style: solid;
    border-color: rgba(255,255,255,0.5);
    padding: 1px;
    font-size: 18px;
    line-height: normal;
    text-transform: uppercase;
    font-weight: 700;
    color: #333;
    -webkit-transition: all 0.45s ease;
    -moz-transition: all 0.45s ease;
    -ms-transition: all 0.45s ease;
    -o-transition: all 0.45s ease;
    transition: all 0.45s ease;
    margin: 0;
}
.box-category-products .head:hover .title{
    bottom: 20px;
}
.box-category-products .head .title a{
    color: #333;
}
.box-category-products .head .title .text{
    display: inline-block;
    text-align: center;
    width: 100%;
    padding: 11px 0;
    background-color: rgba(255,255,255,0.5);
}
.box-category-products .head img{
    -webkit-transition: all 1s ease;
    -moz-transition: all 1s ease;
    -ms-transition: all 1s ease;
    -o-transition: all 1s ease;
    transition: all 1s ease;
    width: 100%;
}
.box-category-products .head:hover img{
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -ms-transform: scale(1.1);
    -o-transform: scale(1.1);
    transform: scale(1.1);
    opacity: 0.8;
}
.box-category-products .box-inner{
    padding-left: 15px;
    padding-right: 15px;
    padding-top: 0px;
    padding-buttom: 0px;
    background-color: #fff;
}

.box-category-products .box-footer{
    border-top:1px solid #f3f3f3;
    background-color: #fff;
    text-align: center;
    padding: 8px 0;
}
.box-category-products .box-footer .more{
    font-family: 'Merriweather';
    font-size: 13px;
    color: #888;
    font-style: italic;
}
.box-category-products .product-item{
    margin-bottom: 10px;
}
.box-category-products .product-item:last-child{
    margin-bottom: 0;
}
.box-category-products .product-inner{
    margin: 0 -5px;
}
.box-category-products .product-inner .thumb,
.box-category-products .product-inner .info{
    padding: 0 5px;
}
.box-category-products .product-item .group-button{
    position: static;
    text-align: left;
}
.box-category-products .product-item .wishlist,
.box-category-products .product-item .add_to_cart_button,
.box-category-products .product-item .compare{
    margin: 0;

}
.box-category-products .product-item .product-name{
    line-height: 18px;
    margin-bottom: 5px;
    overflow: hidden;
}
.box-category-products .product-item .product-name a{
    color: #333333;
    font-size: 13px;
}
/*.box-category-products .product-item .price ins{
    color: #333;
}*/
.box-category-products .product-item .price del{
    font-size: 12px;
    color: #a3a3a3;
}

/* BANNER */
.banner-opacity{
    overflow: hidden;
    display: block;
}
.banner-opacity:hover img{
    opacity: 0.5;
    transition: all 1s ease-in-out;
    -webkit-transition: all 1s ease-in-out;
    -moz-transform: scale(1.01);
    -webkit-transform: scale(1.01);
    -o-transform: scale(1.01);
}
/*----------------
BLOG
----------------*/
.post-item{
    border: 1px solid #ececec;
    overflow: hidden;
}
.post-item .post-thumb{
    float: left;
    position: relative;
}
.post-item .post-thumb img{
    width: 100%;
}
.post-item .post-thumb a:before {
    content: '+';
    position: absolute;
    top: 50%;
    left: 50%;
    color: #fff;
    text-align: center;
    vertical-align: middle;
    font-size: 30px;
    font-weight: 100;
    z-index: 1;
    opacity: 0;
    filter: alpha(opacity=0);
    -webkit-transform: translate(-50%,-50%);
    -ms-transform: translate(-50%,-50%);
    -o-transform: translate(-50%,-50%);
    transform: translate(-50%,-50%);
    -webkit-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
}
.post-item .post-thumb a:after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    background-color: rgba(0,0,0,0.3);
    -webkit-transform: scale(0);
    -ms-transform: scale(0);
    -o-transform: scale(0);
    transform: scale(0);
    -webkit-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
}
.post-item .post-thumb:hover a:before {
    opacity: 1;
    filter: alpha(opacity=100);
}
.post-item .post-thumb:hover a:after {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
}
.post-item .post-info{
    overflow: hidden;
    padding: 30px;
}
.post-item .post-title{
    margin-bottom: 5px;
}
.post-item .post-title a{
    font-size: 16px;
    color: #333;
}
.post-item .post-meta{
    font-size: 12px;
    color: #aaaaaa;
}
.post-item .post-meta span:after{
    content: ' - ';
}
.post-item .post-meta span:last-child:after{
    display: none;
}
.post-item .short-desc{
    margin-top: 5px;
}
.post-item .short-desc p{
    margin: 0;
}
.post-item .button{
    margin-top: 15px;
    background-color: #f2f2f2;
    color: #666;
    text-transform: none;
    border: none;
    font-family: 'Arimo', sans-serif;
    font-size: 12px;
    padding: 6px 25px;
}
.post-item .button:hover{
    color: #fff;
}

.post-item.grid{
    border: none;
}
.post-item.grid .post-thumb{
    float: none;
    margin-bottom: 15px;
}
.post-item.grid .post-thumb img{
    width: 100%;
}
.post-item.grid .post-info{
    padding: 0;
}

.blog-list .post-item{
    margin-bottom: 30px;
}
.blog-list .post-item:last-child{
    margin-bottom: 0;
}
.blog-list-grid .post-item{
    margin-bottom: 25px;
}
.blog-list-grid .post-item:last-child{
    margin-bottom: 0;
}
/* Blog masonry */
.blog-masonry{
    margin: 0 -15px;
}
.blog-masonry .masonry-item{
    padding: 0 15px;
    padding-bottom: 30px;
}
/* Blog sidebar*/
.blog-sidebar .widget{
    margin-bottom: 30px;
}
.blog-sidebar .widget .widget-title{
    text-transform: none;
    font-size: 18px;
}
.blog-sidebar .widget .widget-title:after{
    content: '';
    width: 30px;
    height: 2px;
    background-color: #eaeaea;
    margin-top: 6px;
}
.sidebar.border .inner{
    border: 1px solid #eaeaea;
    padding: 30px;
}

/* SINGLE BLOG */
.blog-single .post-item{
    border: none;
}
.blog-single .post-item .post-thumb{
    float: none;
    margin-bottom: 22px;
}
.blog-single .post-item .post-info{
    padding: 0;
}
.blog-single .blog-content{
    padding-top: 10px;
}
.blog-single .blog-content:after{
    content: '';
    width: 30px;
    height:2px;
    background-color: #eaeaea;
    display: block;
}
.blog-single-footer{
    margin-top: 25px;
    font-size: 13px;
    overflow: hidden;
}
.blog-single-footer label{
    font-weight: normal;
    color: #333;
    margin: 0;
}
.blog-single-footer .tags,
.blog-single-footer .share{
    display: inline-block;
    float: left;
}
.blog-single-footer .share{
    float: right;
}
.blog-single-footer a{
    color: #333;
}
.blog-single-footer .tags a:after{
    content: ', ';
}
.blog-single-footer .tags a:last-child:after{
    display: none;
}
.blog-single-footer .share a{
    font-size: 18px;
    margin: 0 3px;
}
.author-bio{
    margin-top: 25px;
    background-color: #f2ddb0;
    padding: 30px 50px;
    overflow: hidden;
    display: table;
}
.author-bio .author-avatar{
   display: table-cell;
   width: 100px;
}
.author-bio .author-avatar img{
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    border-radius: 50%;
    width: 100px;
}
.author-bio .author{
    display: table-cell;
    padding-left: 20px;
    vertical-align: middle;
}
.author-bio .author-name{
    margin-bottom: 5px;
    font-size: 13px;
}
.author-bio .short{
    font-family: 'Merriweather', serif;
    font-style: italic;
    font-size: 12px;
    line-height: 20px;
    color: #555555;
}
.comments-area{
    margin-top: 25px;
}
.comments-area .comment-list-title{
    font-size: 18px;
    margin-bottom: 25px;
}
.comments-area .comment{
    list-style: none;
    margin-bottom: 30px;
    border: 1px solid #eaeaea;
    padding: 30px;
    overflow: hidden;
}
.comments-area .comment-author{
    font-size: 13px;
    color: #aaa;
}
.comments-area .comment-author .author{
   color: #222;
   font-size: 14px;
   font-family: 'Montserrat', sans-serif;
   margin-right: 10px;
}
.comments-area .comment-content{
    font-family: 'Merriweather', serif;
    font-style: italic;
    font-size: 12px;
    line-height: 20px;
    color: #555555;
    padding-top: 5px;
}
.comments-area .comment-content p{
    margin-bottom: 5px;
}
.comments-area .comment-reply-link{
    float: right;
    font-size: 12px;
    color: #333;
     font-family: 'Merriweather', serif;
    font-style: italic;
}
.comments-area .comment-reply-link .fa{
    margin-left: 5px;
    font-size: 11px;
    color: #8b8b8b;
}
.comment-form-wapper{
    margin-top: 25px;
}
.comment-form-wapper .comment-reply-title{
    margin-bottom: 20px;
    font-size: 18px;
}
.comment-form-wapper .comment-form{
    color: #888;
}
.comment-form-wapper .comment-form p{
    margin-bottom: 10px;
}
.comment-form-wapper .comment-form input[type="text"],
.comment-form-wapper .comment-form input[type="email"]{
    width: 300px;
    max-width: 100%;
}
.comment-form-wapper .comment-form textarea{
    width: 510px;
    max-width: 100%;
}
/*----------------
FOOTER
----------------*/
.footer{
    background-color: #141414;
    padding-top: 25px;
}

.footer .widget{
    margin-bottom: 10px;
}
.footer .widget:last-child{
    margin-bottom: 0;
}
.footer .widget .widget-title{
    color: #ddd;
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 5px;
}
.footer .widget .widget-title:after{
    display: none;
}
.footer .widget li{
    list-style: none;
}
.footer .widget li>a{
    color: #666;
    line-height: 36px;
}
.footer .widget li>a:hover{
    color: #ddd;
}
.footer .widget_instagram .list-image{
    margin: 0 -10px;
}
.footer .widget_instagram .list-image .item{
    width: 33.33333%;
    float: left;
    padding: 0 10px;
    margin-bottom: 10px;
    margin-top: 10px;

}

.footer .widget_instagram .list-image a{
    position: relative;
    display: table;
    width: 100%;
}
.footer .widget_instagram .list-image a:before{
    content: '';
    background-color: rgba(0,0,0,0.9);
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 101%;
}

.footer .widget_instagram .list-image .changed a:before{
    background-color: rgba(0,0,0,0.5) !important;
    -webkit-transition: all 0.4s ease 0s !important;
    -o-transition: all 0.4s ease 0s !important;
    transition: all 0.4s ease 0s !important;
}
.footer .widget_instagram .list-image a:hover:before{
    width: 100%;
    -webkit-transition: all 0.6s ease 0s;
    -o-transition: all 0.6s ease 0s;
    transition: all 0.6s ease 0s;
    background-color: rgba(0,0,0,0.1);
}
.footer .footer-bottom{
    border-top-width:1px;
    border-top-style: solid;
    border-top-color: rgba(255,255,255,0.1);
    margin-top: 50px;
    padding-bottom: 30px;
    padding-top: 30px;
}
.footer .payment{
    text-align: right;
}
.footer .payment span{
    padding: 0 20px;
    display: inline-block;
}
.footer .payment span:last-child{
    padding-right: 0;
}
.footer .payment span img{
    opacity: 0.2;
    vertical-align: middle;
    -webkit-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
}
.footer .payment span:hover img{
    opacity: 1;
}
.footer .coppyright{
    display: inline-block;
    vertical-align: middle;
    padding-top: 8px;
    background-color: #fff;
}
.footer-social{
    padding-left: 70px;
    margin-bottom: 30px;
    font-size: 16px;
    color: #fff;
    overflow: hidden;
}
.footer-social label{
    display: inline-block;
    float: left;
    padding: 10px 0;
    padding-right: 25px;
    font-family: 'Montserrat', sans-serif;
    margin: 0;
    letter-spacing: 2px;
}
.footer-social .social a {
    display: inline-block;
    width: 44px;
    height: 44px;
    background-color: rgba(255,255,255,0.1);
    color: #fff;
    text-align: center;
    line-height: 44px;
    font-size: 24px;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    border-radius: 50%;
    float: left;
    margin: 0 5px;
}

.footer-newsletter{
    padding-right: 70px;
    color: #fff;
}
.footer-newsletter form{
    position: relative;
}
.footer-newsletter .text-input{
    width: 100%;
    border: none;
    background-color: rgba(255,255,255,0.2);
    padding: 11px 23px;
}
.footer-newsletter .button{
    position: absolute;
    top: 0;
    right: 0;
    width: 46px;
    height: 46px;
    text-align: center;
    line-height: 46px;
    background-color: transparent;
    border: none;
    padding: 0;
    margin: 0;
    font-size: 16px;
    color: #fff;
}
.footer-newsletter .button:before{
    display: none;
}
.footer-newsletter .button:hover{
    background-color: transparent;
    -webkit-border-radius: 0px;
    -moz-border-radius: 0px;
    -ms-border-radius: 0px;
    -o-border-radius: 0px;
    border-radius: 0px;
}

.footer-services{
    background-color: #121212;
    padding-top: 40px;
    margin-top: 40px;
}

.footer.style2{
    background-color: #141414;
}
.footer.style2 .footer-bottom{
    border: none;
    margin-top: 10px;
}
.footer .kt_widget_social .social{
    overflow: hidden;
    margin-left: 23%;
}
.footer .kt_widget_social .social a{
    display: inline-block;
    width: 33px;
    height: 33px;
    text-align: center;
    line-height: 33px;
    color: #fff;
    font-size: 16px;
    background-color: #2c2c2c;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    border-radius: 50%;
    float: left;
    margin: 0 5px;
}
.footer .kt_widget_social .social a:first-child{
    margin-left: 0;
}
.footer .kt_widget_newsletter p{
    margin-bottom: 5px;
}
.footer .kt_widget_newsletter form{
    position: relative;
}
.footer .kt_widget_newsletter .text-input{
    width: 100%;
    background-color: #1b1b1b;
    border: none;
    padding: 11px 25px;
}
.footer .kt_widget_newsletter .button{
    width: 46px;
    height: 46px;
    font-size: 16px;
    color: #fff;
    background-color: transparent;
    padding: 0;
    text-align: center;
    line-height: 46px;
    border: none;
    position: absolute;
    top: 0;
    right: 0;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0;
    border-radius: 0;
}
.footer .widget_store_info .item{
    margin-bottom: 10px;
    overflow: hidden;
}
.footer .widget_store_info .item .icon{
    display: inline-block;
    width: 30px;
    height: 30px;
    border: 2px solid #bfbfbf;
    color: #bfbfbf;
    float: left;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    border-radius: 50%;
    text-align: center;
    line-height: 26px;
    margin-right: 10px;
}
.footer .widget_store_info .item .text{
    overflow: hidden;
}
/* FOOTER STYLE 3 */
.footer.style3{
    background-color: #f0f0f0;
    color: #666;
}
.footer.style3 .widget-title{
    color: #444;
}
.footer.style3 .footer-bottom{
    border-color: #e4e4e4;
}
.footer.style3 .kt_widget_newsletter .text-input{
    background-color: #fff;
    padding: 6px 20px;
    min-height: 36px;
}
.footer.style3 .kt_widget_newsletter .button{
    width: 36px;
    height: 36px;
    line-height: 36px;
    font-size: 14px;
}
.footer.style3 .kt_widget_social .social a{
    width: 30px;
    height: 30px;
    background-color: #415a99;
    font-size: 14px;
    line-height: 30px;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0;
    border-radius: 0;
    margin: 0 5px 5px 0;
}
.footer.style3 .kt_widget_social .social .twitter{
    background-color: #00caff;
}
.footer.style3 .kt_widget_social .social .google-plus{
    background-color: #DE5347;
}
.footer.style3 .kt_widget_social .social .instagram{
    background-color: #125688;
}
.footer.style3 .kt_widget_social .social .pinterest{
    background-color: #cb222a;
}
/* FOOTER STYLE 4*/
.footer.style4{
    background-color: #f8f8f8;
    font-size: 13px;
    color: #666;
}
.footer.style4 a{
    color: #666;
}
.footer.style4  .widget-title{
    font-size: 16px;
    color: #444;
    font-weight: normal;
}
.footer.style4 .widget_store_info .item .icon{
    border: none;
    font-size: 24px;
    color: #7f7f7f;
}
.footer.style4 .kt_widget_newsletter .text-input{
    background-color: #fff;
    border: 1px solid #ededed;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -ms-border-radius: 20px;
    -o-border-radius: 20px;
    border-radius: 20px;
    padding: 6px 25px;
    padding-right: 80px;
    min-height: 38px;
}
.footer.style4 .kt_widget_newsletter .button{
    height: 34px;
    width: auto;
    padding: 0 10px;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -ms-border-radius: 20px;
    -o-border-radius: 20px;
    border-radius: 20px;
    color: #fff;
    line-height: 34px;
    font-size: 12px;
    text-transform: uppercase;
    top: 2px;
    right: 2px;

}
.footer.style4 .kt_widget_social .social a{
    border: 1px solid #e2e2e2;
    background-color: transparent;
    color: #666;
}
.footer.style4 .kt_widget_social .social a:hover{
    color: #fff;
}

.footer.style4 .widget-payment-methods{
    padding: 12px 0;
    border: 1px solid #e4e4e4;
    border-left: none;
    border-right: none;
    overflow: hidden;
    margin-top: 30px;
    margin-bottom: 0;
}
.footer.style4 .widget-payment-methods .widget-title{
    display: inline-block;
    margin: 0;
    float: left;
    margin: 0;
    font-size: 12px;
    padding: 15px 0;
}
.footer.style4 .widget-payment-methods .methods{
    display: inline-block;
    float: right;
}
.footer.style4 .widget-payment-methods .methods span{
    display: inline-block;
    margin-left: 5px;
}
.footer.style4 .widget-hot-keyword{
    margin-bottom: 0;
}
.footer.style5{
    background-color: #fff;
    font-size: 13px;
    color: #666;
}
.footer.style5 a{
    color: #666;
}
.footer.style5 .coppyright{
    background-color:#f8f8f8;
    text-align: center;
    padding: 5px;
    display: block;
    border-top: 1px dashed #EEEEEE;
}
.widget-hot-keyword{
    padding: 15px 0;
}
.widget-hot-keyword .list-keyword{

    line-height: 12px;
}
.widget-hot-keyword .line label{
    margin: 0;
    font-size: 12px;
    font-weight: normal;
    color: #444;
    text-transform: unset;
    font-family: 'Montserrat',sans-serif;
}
.widget-hot-keyword .line a{
    display: inline-block;
    border-right: 1px solid #666;
    padding: 0 10px;
    margin: 7px 0;
}
.widget-hot-keyword .line a:last-child{
    padding-right: 0;
    border:none;
}
.widget-text-link{
    border-top: 1px solid #e4e4e4;
    text-align: center;
    padding: 20px 0;
    padding-bottom: 0;
}
.widget-text-link .text-link{
    max-width: 870px;
    margin: 0 auto;
}
.widget-text-link .text-link a{
    display: inline-block;
    border-right: 1px solid #666;
    padding: 0 10px;
    line-height: 12px;
}
.footer.style4 .coppyright{
    text-align: center;
    padding: 5px;
    display: block;
    border-top: 1px dashed #EEEEEE;
}
.footer.style4 .widget li{
    list-style: inside;
}
.footer.style4 .widget li>a{
    line-height: 30px;
}
/* STYLE 5 */

/* CONTACT PAGE */
.google-map {
    overflow: hidden;
    min-height: 355px;
}
.google-map iframe {
    width: 100%;
    border: none;
}
.form-contact{
    margin-top: 30px;
    color: #888;
    font-size: 13px;
}
.form-contact .form-title{
    font-size: 18px;
    color: #222;
    margin-bottom: 30px;
    text-transform:uppercase;
}
.form-contact input[type="text"],
.form-contact textarea{
    width: 100%;
    padding: 15px 25px;
}
.form-contact textarea{
    height: 275px;
}
.form-contact form .button{
    margin-top: 15px;
}
.form-contact label{
    display: block;
    font-weight: normal;
    color: #444;
}
/* Mobile menu */
.box-mobile-menu {
    position: absolute;
    top: 0;
    left: -300%;
    width: 320px;
    bottom: 0;
    background-color:#fff;
    z-index: 100;
    -webkit-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
    z-index: 100;
}
.box-mobile-menu.open{
    left: 0%;
}
.box-mobile-menu .box-inner {
    position: relative;
    padding: 15px;
    overflow: hidden;
    font-family: Montserrat, sans-serif;
}
.box-mobile-menu .close-menu {
    width: 35px;
    height: 35px;
    border-width: 1px;
    border-style: solid;
    border-color: #eaeaea;
    display: inline-block;
    line-height: 33px;
    text-align: center;
    color: #666;
    float: right;
}
.box-mobile-menu .main-menu{
    display: block;
    width: 100%;
    border: none;
    border-top: 1px solid #eaeaea;
    float: left;
    margin-top: 15px;
}
.box-mobile-menu .mCSB_inside > .mCSB_container {
    margin: 0;
}
.box-mobile-menu .main-menu>li{
    display: block;
}
.box-mobile-menu .main-menu>li>a{
    border: none;
    border-bottom: 1px solid #eaeaea;
    text-align: left;
    padding: 13px 0;
}
.box-mobile-menu .main-menu>li.menu-item-has-children>a:after{
    content: "\f107";
    font-family: 'FontAwesome';
    float: right;
}
.box-mobile-menu .main-menu>li.menu-item-has-children.show-submenu>a:after{
    content: "\f106";
}
.box-mobile-menu .main-menu>li:last-child>a{
    border: none;
    border-bottom: 1px solid #eaeaea;
}
.box-mobile-menu .main-menu .sub-menu {
    position: static;
    max-width: 100%!important;
    width: 100%!important;
    padding: 0;
    display: none;
    min-width: 1px;
    -webkit-box-shadow: 0px 0px 2px 1px rgba(0,0,0,0);
    -moz-box-shadow: 0px 0px 2px 1px rgba(0,0,0,0);
    box-shadow: 0px 0px 2px 1px rgba(0,0,0,0);
}
.box-mobile-menu .main-menu .show-submenu>.sub-menu {
    display: block;
}
.box-mobile-menu .main-menu .sub-menu>li{
    padding: 0;
}
.box-mobile-menu .main-menu .sub-menu>li>a{
    padding-left: 20px;
}
.box-mobile-menu .main-menu .sub-menu>li:last-child>a{
    border-bottom: 1px solid #e8e8e8;
}
.mobile-navigation{
    line-height: 35px;
    text-transform: uppercase;
    color: #333;
    font-family: 'Montserrat';
    padding: 10px 0;
    display: none;

}
.mobile-navigation .icon{
    display: inline-block;
    width: 35px;
    height: 35px;
    border: 1px solid #000;
    padding: 10px;
    float: right;
    margin-right: 10px;
}
.mobile-navigation .icon span{
    display: block;
    width: 100%;
    height: 2px;
    background-color: #000;
    float: left;
    margin-bottom: 4px;
}
.mobile-navigation .icon span:last-child{
    margin-bottom: 0;
}

/* Auth page */
.form-authentication{
    margin: 0;
    /*display: table;*/
    width: 100%;
    border-bottom: 1px solid #ececec;
    border-left: 1px solid #ececec;
    max-width: 100%;

}
.form-authentication .form-login,
.form-authentication .form-register{
    /*display: table-cell;*/
    padding: 35px 60px;
    padding-bottom: 60px;
    border-right: 1px solid #ececec;
    border-top: 1px solid #ececec;
    width: 50%;

}
.form-authentication .form-login{
    background-color: #fafafa;
}
.form-authentication input[type="text"],
.form-authentication input[type="email"],
.form-authentication input[type="password"]{
    width: 320px;
    max-width: 100%;
}
.form-authentication p{
    margin-bottom: 20px;
}
.form-authentication .title{
    font-size: 16px;
    margin-bottom: 20px;
}
.form-authentication .title:after {
    display: block;
    font-family: 'FontAwesome';
    content: "\f106\f106\f106\f106\f106\f106\f106\f106";
    margin-top: 10px;
    color: #888888;
    font-size: 12px;
}
.form-authentication label.inline{
    font-weight: normal;
    display: block;
    margin-bottom: 20px;

}
.form-authentication label.inline input[type=checkbox],
.form-authentication label.inline input[type=radio]{
    display: inline-block;
    vertical-align: middle;
    margin: 0;
    margin-top: -2px;
}
.form-authentication-footer{
    margin-bottom: 90px;
    border-right: 1px solid #ececec;
    border-bottom: 1px solid #ececec;
    border-left: 1px solid #ececec;
    text-align: center;
    padding: 22px 0;
}

/* WISHLIST */
.block{
    border: 1px solid #ececec;
    padding: 15px;
    margin-bottom: 30px;
}
.block .block-title{
    text-transform: uppercase;
    margin-bottom: 20px;
    font-size: 14px;
}
.add-wishlist input[type="text"]{
    width: 100%;
}
.table-wishlist{
    margin-bottom: 30px;
}

.wishlist-item{
    margin-bottom: 30px;
}
.wishlist-item .thumb{
    margin-bottom: 15px;
}
.wishlist-item .product-name{
    margin: 0;
}
.wishlist-item .product-name a{
    font-family: 'Merriweather', serif;
    font-style: italic;
    font-size: 13px;
    color: #888;
}
.wishlist-item .wishlist-form{
    margin-top: 15px;
}
.wishlist-item .wishlist-form label{
    font-weight: normal;
}
.wishlist-item .wishlist-form input[type="text"],
.wishlist-item .wishlist-form select{
    width: 100%;
    margin-bottom: 15px;
}
.wishlist-item .wishlist-form .button{
    margin-top: 15px;
}
.wishlist-item .wishlist-form .remove{
    float: right;
    margin-top: 25px;
    color: red;
}
.table-compare td.compare-label {
    width: 150px;
    background: #fafafa;
    vertical-align: middle;
}
.table-compare a{
    color: #999;
}
.table-compare .remove{
    font-size: 10px;
    float: right;
    margin-top: 10px;
    color: red;
}
.page-404 {
  /*  padding: 100px 0 110px 0;*/
}
.page-404 .heading {
    font-size: 70px;
    font-weight: 700;
    color: #999;
}
/* POPUP */
.white-popup {
    position: relative;
    background: #FFF;
    width: auto;
    width: 550px;
    height: 550px;
    border-radius: 500px;
    margin: 20px auto;
    max-width: 100%;
    box-shadow: 0 5px 15px rgba(0,0,0,.5);
}
.kt-popup-newsletter {
    padding: 20px 60px;
    text-align: center;
    padding-bottom: 100px;
}
.kt-popup-newsletter .popup-title {
    margin-top: 40px;
    text-transform: uppercase;
}
.kt-popup-newsletter .popup-title h3 {
    font-size: 24px;
    margin-bottom: 15px;
}
.kt-popup-newsletter .popup-title p {
    margin: 0;
    margin-top: 20px;
}
.kt-popup-newsletter .form-subscribe {
    padding-top: 40px;
}
.kt-popup-newsletter .checkbox {
    position: absolute;
    margin-top: 10px;
    left: 225px;
    font-size: 13px !important;
    color: #888888;
    font-weight: normal;
    cursor: alias;

}
.kt-popup-newsletter .form-subscribe .input {
    width: 100%;
    margin-bottom: 20px;
}
.kt-popup-newsletter .button{
    margin: 0 5px;
}
.kt-popup-newsletter .text-primary {
    display: inline-block;
    background-color: #eec15b;
    color: #fff;
    padding: 0 10px;
}

.kt-popup-newsletter .text-hot {
    display: inline-block;
    background-color: #F75757;
    color: #fff;
    padding: 0 10px;
}

/* QUICKVIEW */
.kt-quickview-popup{
    width: 900px;
    max-width: 100%;
    margin: 0 auto;
    margin-top: 20px;
    background-color: #fff;
    padding: 20px;
    position: relative;
    -webkit-box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
    -moz-box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
}
.kt-quickview-popup .single-product{
    border: none;
}
.kt-quickview-popup .single-product .summary,
.kt-quickview-popup .single-product .kt-images{
    padding: 0;
    margin: 0;
}

/* block-today-deal */
.block-today-deal{
    background-color: #fff;
}
.block-today-deal .head .title{
    padding: 14px 25px;
    padding-bottom: 13px;
    color: #fff;
    margin: 0;
    font-size: 18px;
    font-weight: 700;


}
.block-today-deal .block-content{
    border: 1px solid #e6e6e6;
    border-top: none;
    padding: 23px;
}

/*block-container*/
.block-container .head .title{
    padding: 10px 10px;
    font-size: 18px;
    color: #333;
    margin: 0;
    position: relative;
    font-weight: 700;
}
.block-container .head .title .text{
    position: relative;
    z-index: 1;
}
.block-container .head .title:before{
    content: attr(data-head);
    position: absolute;
    left: 0;
    top: 0;
    font-size: 60px;
    line-height: 40px;
    color: #dddddd;
    font-weight: 700;
    font-family: 'Montserrat',sans-serif;
}
.block-container .block-content{
    border: 1px solid #e6e6e6;
    background-color: #fff;
}


.hot-category{
    padding: 25px 15px;
}
.hot-category .thumb{
    text-align: right;
}
.hot-category .head{
    position: relative;
}
.hot-category .head .title{
    position: absolute;
    top: 10px;
    left: 0;
    padding: 0;
    max-width: 115px;
}
.hot-category .head .title .text{
    margin: 0;
    font-size: 18px;
    font-weight: 700;
    min-height: 43px;
}
.hot-category .head .title .readmore{
    display: inline-block;
    font-size: 10px;
    line-height: 20px;
    padding:0 10px;
    color: #fff;
    background-color: #999999;
    text-transform: uppercase;
}
.hot-category .head .title .readmore:after{
    display: inline-block;
    font-family: 'FontAwesome';
    content: "\f0da";
    margin-left: 5px;
}
.hot-category .sub-category{
    padding: 0;
    margin: 0;
}
.hot-category .sub-category li{
    list-style: none;
}
.hot-category .sub-category li>a{
    display: inline-block;
    font-size: 13px;
    color: #666;
}
.hot-category .sub-category li>a:before{
    display: inline-block;
    font-family: 'FontAwesome';
    content: "\f105";
    margin-right: 5px;
}
.tab-brand .tab-container{
    padding-bottom: 0px;
}
.tab-brand .list-brand{
    margin: 0;
    padding: 0;
    border-bottom: 1px solid #e4e4e4;
}
.tab-brand .list-brand:before,
.tab-brand .list-brand:after{
    display: table;
    content: '';
}
.tab-brand .list-brand:after{
    clear: both;
}
.tab-brand .list-brand li{
    display: inline-block;
    list-style: none;
    width: 16.66666%;
    text-align: center;
    float: left;
    padding: 0 1px;
}
.tab-brand .list-brand li>a{
    display: block;
    position: relative;
}
.tab-brand .list-brand li>a:after{
    content: '';
    width: 0%;
    height: 3px;
    position: absolute;
    bottom: 0;
    left: 0;
    -webkit-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
}
.tab-brand .list-brand li:hover>a:after,
.tab-brand .list-brand li.active>a:after{
    width: 100%;
}
.tab-brand .list-brand li>a img{
    opacity: 0.5;
    filter: alpha(opacity=50);
}
.tab-brand .list-brand li:hover>a img,
.tab-brand .list-brand li.active>a img{
    opacity: 1;
    filter: alpha(opacity=100);
}
.block-recommended .block-content{
    padding: 35px 25px;
}
.block-recommended .nav-top-right .owl-nav{
    right: -25px;
}

/* kt-product-tab */
.kt-product-tab{
    border: 1px solid #e6e6e6;
    border-bottom: none;
    border-right: none;
    border-left: none;
}
.kt-product-tab .nav-tab{
    border-bottom: 1px solid #e6e6e6;
    padding: 0;
    margin: 0;
    overflow: hidden;
    border-right: 1px solid #e6e6e6;
    background-color: #f8f8f8;
}

.kt-product-tab .nav-tab li{
    display: inline-block;
    list-style: none;
    padding: 13px 0;
    float: left;
}
.kt-product-tab .nav-tab li>a{
    display: inline-block;
    padding: 0 20px;
    line-height: 20px;
    border-right: 1px solid #e6e6e6;
    font-size: 13px;
    color: #333333;
    text-transform: uppercase;
    font-family: 'Montserrat';
}
.kt-product-tab .product-item.style9 .product-inner{
    border: 1px solid #e6e6e6;
    border-top: none;
    border-right: none;
}
.kt-product-tab .nav-top-right .owl-nav{
    right: 20px;
}
.kt-category-tabs .tab-head{
    border-bottom: 3px solid #f75757;
    display: table;
    width: 100%;
    background-color: #fff;
}
.kt-category-tabs .tab-head .title,
.kt-category-tabs .tab-head .nav-tab{
    display: table-cell;
    vertical-align: middle;
}
.kt-category-tabs .tab-head .title{
    width: 235px;
    background-color: #575757;
    padding: 0 10px;
    color: #fff;
    font-family: 'Montserrat';
    text-transform: uppercase;
    font-size: 14px;
    margin: 0;
}
.kt-category-tabs .tab-head .title a{
    color: #fff;
}
.kt-category-tabs .tab-head .title .icon{
    margin-right: 10px;
}
.kt-category-tabs .tab-head .nav-tab{
    margin: 0;
    padding: 0;
    background-color: #fff;
}
.kt-category-tabs .tab-head .floor-elevator{
    padding: 8px 20px;
}
.kt-category-tabs .tab-head .nav-tab li{
    list-style: none;
    display: inline-block;
    padding: 12px 0;
    float: left;
}
.kt-category-tabs .tab-head .nav-tab li a{
    display: inline-block;
    padding: 0 20px;
    font-size: 15px;
    color: #333333;
    line-height: 20px;
    border-right: 1px solid #d6d6d6;
}
.kt-category-tabs .tab-head .nav-tab li:last-child a{
    border: none;
}
.kt-category-tabs .tab-head .nav-tab li.active,
.kt-category-tabs .tab-head .nav-tab li:hover{
    background-color: #f75757;
}
.kt-category-tabs .tab-head .nav-tab li.active a,
.kt-category-tabs .tab-head .nav-tab li:hover a{
    color: #fff;
    border-color: #f75757;
}
.kt-category-tabs .tab-inner{
    margin-top: 20px;
    background-color: #fff;
}
.kt-category-tabs .tab-inner:before,
.kt-category-tabs .tab-inner:after{
    display: table;
    content: "";
}
.kt-category-tabs .tab-inner:after{
    clear: both;
}
.kt-category-tabs .has-banner-left .left-banner{
    width: 235px;
    float: left;
}
.kt-category-tabs .has-banner-left .tab-content-products{
    overflow: hidden;
}
.kt-category-tabs .product-item.style10 .product-inner{
   /* border-left: 1px solid #eee;*/
    /*min-height: 365px;*/
}
/* STYLE 2 */
.kt-category-tabs.style2 .tab-head{
    border-bottom: 1px solid #eee;
    position: relative;
    z-index: 100;
}
.kt-category-tabs.style2 .tab-head .title{
    background-color: #fff;
    font-size: 15px;
}
.kt-category-tabs.style2 .tab-head .title a{
    color: #333;
}
.kt-category-tabs.style2 .tab-head .title .icon{
    margin-top: -4px;
}
.kt-category-tabs.style2 .tab-head .nav-tab{
    display: inline-block;
    float: right;
}
.kt-category-tabs.style2 .tab-head .nav-tab li.active,
.kt-category-tabs.style2 .tab-head .nav-tab li:hover{
    background-color: transparent;
}
.kt-category-tabs.style2 .tab-head .nav-tab li.active a,
.kt-category-tabs.style2 .tab-head .nav-tab li:hover a{
    border-color: #d6d6d6;
}
.kt-category-tabs.style2 .tab-inner{
    margin: 0;
    background-color: #fff;
    background-position: left bottom;
    background-repeat: no-repeat;
    position: relative;
}
.kt-category-tabs .sub-category{
    padding: 20px;
    margin: 0;
    width: 194px;
    float: left;

}
.kt-category-tabs .sub-category li{
    list-style: none;
}
.kt-category-tabs .sub-category li a{
    display: inline-block;
    padding: 8px 0;
    color: #666;
    font-size: 14px;
}
.kt-category-tabs.style2 .has-banner-left .left-banner{
    width: 390px;
}
.kt-category-tabs.style2 .product-item{
    margin-bottom: 0;
    padding: 0;
}
.kt-category-tabs.style2 .product-list-grid{
    margin: 0;
}
.kt-category-tabs.style2 .product-item.style10 .product-inner{
    border-bottom: 1px solid #eee;
    min-height: 290px;
}
/* TAB COLOR */
.sport-tabs .tab-head,
.sport-tabs .tab-head .nav-tab li.active a,
.sport-tabs .tab-head .nav-tab li:hover a{
    border-color: #13416a;
}
.sport-tabs .tab-head .nav-tab li.active,
.sport-tabs .tab-head .nav-tab li:hover{
    background-color: #13416a;
}
.electrolic-tabs .tab-head,
.electrolic-tabs .tab-head .nav-tab li.active a,
.electrolic-tabs .tab-head .nav-tab li:hover a{
    border-color: #f38f46;
}
.electrolic-tabs .tab-head .nav-tab li.active,
.electrolic-tabs .tab-head .nav-tab li:hover{
    background-color: #f38f46;
}


.digital-tabs .tab-head,
.digital-tabs .tab-head .nav-tab li.active a,
.digital-tabs .tab-head .nav-tab li:hover a{
    border-color: #46afd3;
}
.digital-tabs .tab-head .nav-tab li.active,
.digital-tabs .tab-head .nav-tab li:hover{
    background-color: #46afd3;
}

.furniture-tabs .tab-head,
.furniture-tabs .tab-head .nav-tab li.active a,
.furniture-tabs .tab-head .nav-tab li:hover a{
    border-color: #cc9e71;
}
.furniture-tabs .tab-head .nav-tab li.active,
.furniture-tabs .tab-head .nav-tab li:hover{
    background-color: #cc9e71;
}

.jewlry-tabs .tab-head,
.jewlry-tabs .tab-head .nav-tab li.active a,
.jewlry-tabs .tab-head .nav-tab li:hover a{
    border-color: #d773a0;
}
.jewlry-tabs .tab-head .nav-tab li.active,
.jewlry-tabs .tab-head .nav-tab li:hover{
    background-color: #d773a0;
}
/* group-brands */
.group-brands{
    /*border: 1px solid #eee;*/
    border-right: none;
    border-bottom: none;
}
.group-brands:before,
.group-brands:after{
    content: '';
    display: table;
}
.group-brands:after{
    clear: both;
}
.group-brands .brand-item{
    width: 16.6666666%;
    float: left;
    border: 1px solid #eee;
   /* border-top: none;
    border-left: none;*/
    position: relative;
    padding:30px;
    text-align: center;
}
.group-brands .brand-item:before{
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    background-color: rgba(255,255,255,0.2);
    -webkit-transform: scale(0);
    -ms-transform: scale(0);
    -o-transform: scale(0);
    transform: scale(0);
    -webkit-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
}
.group-brands .brand-item:hover:before{
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
}

/* kt-block-deal */
.kt-block-deal .head:before,
.kt-block-deal .head:after{
    content: '';
    display: table;
}
.kt-block-deal .head:after{
    clear: both;
}
.kt-block-deal .head .title{
    display: inline-block;
    float: left;
    margin: 0;
    font-size: 15px;
    color: #333333;
    text-transform: uppercase;
    font-weight: 700;
}
.kt-block-deal .head .title:after{
    content: '';
    display: block;
    width: 40px;
    height: 2px;
    margin-top: 10px;
}
.kt-block-deal .head .count-down{
    display: inline-block;
    float: right;
    padding: 3px 0px;
}
.kt-block-deal .head .count-down label,
.kt-block-deal .head .count-down .kt-countdown{
    display: inline-block;
    margin: 0;
}
.kt-block-deal .head .count-down label{
    font-size: 15px;
    color: #888;
    font-weight: normal;
}
.kt-block-deal .head .count-down .kt-countdown .box-count{
    display: inline-block;
    border-right: 1px solid #eee;
    padding: 0 10px;
    line-height: 16px;
    font-size: 15px;
    color: #888;
}
.kt-block-deal .head .count-down .kt-countdown .box-count:last-child{
    border: none;
    padding-right: 0;
}
.kt-block-deal .head .count-down .kt-countdown .dot{
    display: none;
}
.kt-block-deal .head .count-down .kt-countdown .box-count .number{
    font-size: 18px;
    color: #333;
}
.kt-block-deal .content{
    margin-top: 20px;
}
/*----------------
HOME SLIDER
----------------*/
.kt_home_slide .item-slide{
    background-size: cover;
}
.slide-home1{
    position: relative;
}
.slide-home1 .thumbs{
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
}

.slide-home1 .thumbs a{
    display: block;
    position: relative;
}
.slide-home1 .thumbs a:before{
    content: '';
    background-color: rgba(0,0,0,0.5);
    position: absolute;
    top: 0;
    bottom: 0;
    width: 100%;
    -webkit-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
}
.slide-home1 .thumbs a:hover:before,
.slide-home1 .thumbs a.active:before{
    width: 0%;
    background-color: rgba(0,0,0,0);
}

.slide-home2 .owl-prev,
.slide-home2 .owl-next{
    background-color: rgba(255,255,255,0.6);
    color: #aaa;
    font-size: 14px;
}
.slide-home2 .owl-prev:hover,
.slide-home2 .owl-next:hover{
    color: #fff;
}
.slide-home2:hover .owl-prev{
    left: 20px;
}
.slide-home2:hover .owl-next{
    right: 20px;
}

.slide-home2 .content-slide{
    position: absolute;
    top: 50%;
    right: 0;
    padding: 0 95px;
    text-align: center;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
}
.slide-home2 .content-slide .subtitle{
    margin: 0;
    font-size: 16px;
}
.slide-home2 .content-slide .title{
    font-size: 21px;
    font-weight: 700;
    margin-bottom: 30px;
}
.slide-home2 .content-slide .link{
    letter-spacing: 2px;
    text-decoration: underline;
    color: #aaa;
}

.slide-home3 .content-slide{
    position: absolute;
    top: 50%;
    right: inherit;
    left: 0;
    padding: 0 165px;
    text-align: center;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    color: #fff;
}
.slide-home3 .content-slide .subtitle{
    font-weight: normal;
}
.slide-home3 .content-slide .title,
.slide-home3 .content-slide .link{
    color: #fff;
}
.slide-home4 .content-slide{
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
}
.slide-home4 .container-slide{
    position: relative;
}
.slide-home4 .container-slide .inner{
    display: inline-block;
    float: right;
    padding-right: 110px;
}

.slide-home4 .subtitle{
    font-size: 18px;
    font-style: italic;
    color: #555555;
    font-family: 'Lora';
}
.slide-home4 .title{
    font-size: 48px;
    text-transform: uppercase;
    color: #333;
    font-family: 'Montserrat';
    font-weight: 700;
}
.slide-home4 .link {
    font-size: 12px;
    color: #fff;
    display: inline-block;
    background-color: #607499;
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    -ms-border-radius: 2px;
    -o-border-radius: 2px;
    border-radius: 2px;
    padding: 0 10px;
    line-height: 22px;
}
.slide-home4 .link:hover{
    background-color: #eec15b;
}

.slide-home4 .owl-next{
    right: 0;
}
.slide-home4 .owl-prev{
    left: 0;
}
.slide-home4:hover .owl-next{
    right: 320px;
}
.slide-home4:hover .owl-prev{
    left: 320px;
}
/* SLIDE HOME 5*/
.slide-home5 .content-slide{
    position: absolute;
    top: 50px;
    right: 40px;
    color: #fff;
    text-align: right;
}
.slide-home5 .content-slide .title{
    text-transform: uppercase;
    font-size: 30px;
    font-weight: 700;
    line-height: normal;
    color: #fff;
    margin: 0;
}
.slide-home5 .content-slide .subtitle{
    font-size: 16px;
    display: block;
}
.slide-home5 .content-slide .link{
    font-size: 14px;
    color: #fff;
    text-decoration: underline;
    display: inline-block;
    margin-top: 35px;
}
.slide-home5 .owl-next,
.slide-home5 .owl-prev{
    width: 34px;
    height: 34px;
    line-height: 32px;
    background-color: transparent;
    border: 1px solid #fff;
    font-size: 14px;
}
.slide-home5 .owl-next .fa:before{
    content: "\f061";
}
.slide-home5 .owl-prev .fa:before{
    content: "\f060";
}
.slide-home5:hover .owl-next{
    right: 20px;
}
.slide-home5:hover .owl-prev{
    left: 20px;
}
.slide-home5 .owl-dots,
.slide-home6 .owl-dots{
    position: absolute;
    bottom: 13px;
    left: 0;
    width: 100%;
    text-align: center;
}
.slide-home5 .owl-dots .owl-dot{
    display: inline-block;
    width: 27px;
    height: 2px;
    background-color: #fff;
    margin: 0 2px;
}

.slide-home5 .owl-dots .owl-dot.active{
    background-color: #2e88e2;
}
.slide-home6 .owl-dots .owl-dot{
    width: 12px;
    height: 12px;
    border: 1px solid #eee;
    display: inline-block;
    margin: 0 5px;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    border-radius: 50%;
}
.slide-home6 .owl-dots .owl-dot.active{
    background-color: #fff;
}

.slide-home7 .title{
    font-size: 90px;
    font-weight: normal;
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 0;
    line-height: 75px;
}
.slide-home7 .content-slide{
    position: absolute;
    top: 50%;
    left: 40px;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
}
.slide-home7 .subtitle{
    font-size: 20px;
    display: block;
    margin-bottom: 40px;
    line-height: normal;
    text-transform: uppercase;
}
.slide-home7 .link{
    font-size: 14px;
    color: #444;
    text-decoration: underline;
}
.slide-home7 .owl-next,
.slide-home7 .owl-prev{
    width: 34px;
    height: 34px;
    line-height: 32px;
    background-color: transparent;
    border: 1px solid #fff;
    font-size: 14px;
}
.slide-home7 .owl-next .fa:before{
    content: "\f061";
}
.slide-home7 .owl-prev .fa:before{
    content: "\f060";
}
.slide-home7:hover .owl-next{
    right: 20px;
}
.slide-home7:hover .owl-prev{
    left: 20px;
}
.slide-home7 .owl-dots{
    position: absolute;
    bottom: 13px;
    left: 0;
    width: 100%;
    text-align: center;
}
.slide-home7 .owl-dots .owl-dot{
    display: inline-block;
    width: 27px;
    height: 2px;
    background-color: #fff;
    margin: 0 2px;
}

.slide-home7 .owl-dots .owl-dot.active{
    background-color: #fe4004;
}
/*---------------
SECTION
----------------*/
.section-daily-deal{
    background-color: #f2f2f2;
    padding: 60px 0;
}
.section-services{
    padding: 132px 0 0 0;
   /* background-image: url('../images/banners/7.jpg');*/
    margin-top: 60px;
}

.section-footer-top{
    /*background-image: url('../images/banners/11.jpg');*/
    padding-top: 70px;
    padding-bottom: 40px;
    margin-top: -164px;
    margin-bottom: 60px;
}
.section-testimonials{
    padding: 45px 0;
    /*background-image: url('../images/banners/24.jpg');*/
    margin-top: 60px;
}
.section-testimonials .heading-section .title{
    color: #fff;
    margin: 0;
}
.section-home-slide{
    background-color: #fff;
}
.section-home-slide6{
    background-color: #e0e0e0;
}

.section-background-gray{
    background-color: #f8f8f8;
}
.section-background-f6f6f6{
    background-color: #f6f6f6;
}
.line-3-cc3333{
    height: 3px;
    background-color: #cc3333;
}
.section-eeeeee{
    background-color: #eee;
}
/*----------------
MARGIN
----------------*/
.margin-5{
    margin: 0 -5px;
}
.padding-5{
    padding: 0 5px;
}
.margin-7{
    margin: 0 -7px;
}
.padding-7{
    padding: 0 7px;
}
.padding-10{
    padding: 0 10px;
}
.padding-30{
    padding: 0 30px;
}
.padding-70{
    padding: 0 70px;
}
.margin-top-1{
    margin-top: 1px!important;
}
.margin-top-5{
    margin-top: 5px!important;
}
.margin-top-10{
    margin-top: 10px!important;
}
.margin-top-20{
    margin-top: 20px!important;
}
.margin-top-25{
    margin-top: 25px!important;
}
.margin-top-30{
    margin-top: 30px!important;
}
.margin-top-35{
    margin-top: 35px!important;
}
.margin-top-40{
    margin-top: 40px!important;
}
.margin-top-45{
    margin-top: 45px!important;
}
.margin-top-50{
    margin-top: 50px!important;
}
.margin-top-60{
    margin-top: 60px!important;
}
.margin-top-65{
    margin-top: 65px!important;
}
.margin-top-70{
    margin-top: 70px!important;
}
.margin-top-75{
    margin-top: 75px!important;
}
.margin-top-80{
    margin-top: 80px!important;
}
.margin-top-90{
    margin-top: 90px!important;
}
.margin-top-91{
    margin-top: 91px!important;
}
.margin-top-95{
    margin-top: 95px!important;
}
.margin-top-100{
    margin-top: 100px!important;
}
.margin-top-120{
    margin-top: 120px!important;
}
.margin-bottom-0{
    margin-bottom: 0px!important;
}
.margin-bottom-5{
    margin-bottom: 5px!important;
}
.margin-bottom-10{
    margin-bottom: 10px!important;
}
.margin-bottom-15{
    margin-bottom: 15px!important;
}
.margin-bottom-20{
    margin-bottom: 20px!important;
}
.margin-bottom-25{
    margin-bottom: 25px!important;
}
.margin-bottom-30{
    margin-bottom: 30px!important;
}
.margin-bottom-40{
    margin-bottom: 40px!important;
}
.margin-bottom-50{
    margin-bottom: 50px!important;
}
.margin-bottom-60{
    margin-bottom: 60px!important;
}
.margin-bottom-65{
    margin-bottom: 65px!important;
}
.margin-bottom-70{
    margin-bottom: 70px!important;
}
.margin-bottom-75{
    margin-bottom: 75px!important;
}
.margin-bottom-80{
    margin-bottom: 80px!important;
}
.margin-bottom-90{
    margin-bottom: 80px!important;
}
.margin-bottom-100{
    margin-bottom: 100px!important;
}
.margin-bottom-170{
    margin-bottom: 170px!important;
}
.margin-left-20{
    margin-left: 20px !important;
}
.margin-right-20{
    margin-right: 20px !important;
}
.margin-right-10{
    margin-right: 10px !important;
}

/*----------------
PADDING
----------------*/
.padding-left-35{
    padding-left: 35px;
}
.padding-top-10{
    padding-top: 10px;
}

.padding-top-15{
    padding-top: 15px;
}
.padding-top-20{
    padding-top: 20px !important;
}
.padding-top-30{
    padding-top: 30px;
}
.padding-top-40{
    padding-top: 40px;
}
.padding-top-50{
    padding-top: 50px;
}
.padding-top-60{
    padding-top: 60px;
}

.padding-top-70{
    padding-top: 70px;
}
.padding-top-80{
    padding-top: 80px;
}
.padding-top-90{
    padding-top: 80px;
}
.padding-top-100{
    padding-top: 100px;
}
.padding-bottom-10{
    padding-bottom: 10px;
}
.padding-bottom-20{
    padding-bottom: 20px !important;
}
.padding-bottom-30{
    padding-bottom: 30px;
}
.padding-bottom-40{
    padding-bottom: 40px;
}
.padding-bottom-50{
    padding-bottom: 50px;
}
.padding-bottom-60{
    padding-bottom: 60px;
}
.padding-bottom-70{
    padding-bottom: 70px;
}
.padding-bottom-80{
    padding-bottom: 80px;
}
.padding-bottom-90{
    padding-bottom: 80px;
}
.padding-bottom-100{
    padding-bottom: 100px;
}
.padding-left-45{
    padding-left: 45px !important;
}
.padding-left-10{
    padding-left: 10px !important;
}
.padding-right-10{
    padding-right: 10px !important;
}
.padding-right-0{
    padding-right: 0px !important;
}
.padding-left-0{
    padding-left: 0px !important;
}
.padding-left-14{
    padding-left: 14px !important;
}
.padding-left-20{
    padding-left: 20px !important;
}
.padding-0{
    padding: 0;
}
.important-padding-0{
    padding: 0 !important;
}
.padding-20{
    padding: 20px;
}
.padding-all-5{
    padding:5px;
}
.padding-all-10{
    padding: 10px;
}
.margin-0{
    margin: 0 !important;
}
.negative-margin-top-7{
    margin-top: -7px;
}
.negative-margin-top-10{
    margin-top: -10px;
}
.negative-margin-top-14{
    margin-top: -14px;
}

.negative-margin-bottom-25{
    margin-bottom: -25px;
}

/*------------------------------- New Edit 22 Sep 2016-------------------------*/

.product_custom{
    height: 335px !important;
    background: #fff none repeat scroll 0 0;
    border: 1px dashed #dadada;
    box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.08);
    /*height: 360px;*/
    margin-left: 0px !important;

    cursor: pointer;
}
.product_custom:hover{
    border: 1px dashed #3498db;
    box-shadow: none;
}
.coupon_dashed{
   /* height: 200px !important;*/
    background: #fff none repeat scroll 0 0;
    border: 1px dashed #dadada;
    box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.08);
   /* height: 240px;*/
    margin-left: 0px !important;
    margin-right: 0px !important;

    cursor: pointer;
}
.coupon_dashed:hover{
    border: 1px dashed #3498db;
    box-shadow: none;
}


.product_image {
    height: 150px;
    padding: 0px;
    overflow: hidden;
    text-align: center;
    line-height: 150px;
   /*-- margin-left: -7%;--*/
     /*-- width: 114%;--*/
	 width: 100%;
}
.product_image img {
    text-align: center;
    max-width: 88%;
    max-height: 94%;
    padding: 0px;
    margin-top: 10px;
    vertical-align: middle;
    border: 0;
}

.original_price {
    font-size: 16px;
    font-weight: bold;
    margin-top: 5px;
    width: 100px;
    float: left;
    color: #FF5C26;
}

.original_price_cut{
    color: #999;
    float: left;
    font-size: 14.5px;
    font-weight: 400;
    text-decoration: line-through;
    width: 32%;
}

.original_price_p {
    font-size: 14.5px;
    font-weight: bold;
    color: #13416a;
    float: right;
    margin-top: 3px;
}
.CuponMain {
    background: rgb(255, 255, 255) none repeat scroll 0 0;
    border: 1px solid #13416a;
    color: #13416a;
    font-size: 14px;
    height: 31px;
    line-height: 30px;
    padding: 0 5px 0 0;
    text-align: right;
}
.ShopNewBtn {
    background: #13416a none repeat scroll 0 0;
    color: rgb(255, 255, 255) !important;
    text-align: center !important;
}
.ShopNewBtn img {
    float: left !important;
    max-height: 100% !important;
    width: 40px !important;
}

.ShopNewBtn:hover{

}

.ShopNewBtn:after {
    content: "";
    position: absolute;
    top: 0px;
    left: 0px;
    width: 0%;
    height: 100%;
    background-color: rgba(255,255,255, 0.09);

}

.ShopNewBtn:hover:after {
    width: 120%;
    background-color: rgba(255, 255, 255,  0.09);
    transition: all 0.5s ease 0s;
}

.GridItemText {
    padding: 0px;
    height: 65px;
    border-bottom: 1px solid #ebeaea;
    overflow: hidden;
    line-height: 20px;
    font-size: 14px;
    margin-top: 5px;

}

.HeaderBorder img {
    width: 82px;
    transform-style:inherit !important;
}

.populerHeader {
    color: rgb(255, 255, 255);
    font-family: Montserrat, sans-serif;
    font-size: 12px;
    font-stretch: semi-condensed;
    left: -13px;
    position: absolute;
    text-align: center;
    top: 20px;
    width: 87px;
    transform: rotate(315deg);
    -webkit-transform: rotate(315deg);
    -moz-transform: rotate(315deg);
    -o-transform: rotate(315deg);
    writing-mode: horizontal-tb;
}


.HeaderBorder {
    background-size: 100% auto;
    /*height: 80px;*/
    left: 1px;
    position: absolute;
    top: -3px;
    width: 82px;
    /*z-index: 1;*/
}
section {
    margin-bottom: 10px;
}
/* Illustration */
.illustration {
    position: relative;
    width: 700.8px;
    height: 324.2px;
    background-size: 100%;
    display: inline-block;
    overflow: hidden;
}
.illustration .boat {
    background: url(https://inrdeals.sgp1.digitaloceanspaces.com/resources/images/404.gif) no-repeat;
    background-size: 100%;
    position: absolute;
    width: 545.6px;
    height: 315.4px;
    left: 40px;
    bottom: 15.2px;
    -moz-animation: shake 4s ease 0s normal none infinite;
    -moz-transform-origin: center bottom;
    -webkit-animation: shake 4s infinite ease-in-out;
    -webkit-transform-origin: center bottom;
    -o-animation: shake 4s ease 0s normal none infinite;
    -o-transform-origin: center bottom;
    -o-animation: shake 4s infinite ease-in-out;
    -o-transform-origin: center bottom;
    -ms-animation: shake 4s ease 0s normal none infinite;
    -ms-transform-origin: center bottom;
    -ms-animation: shake 4s infinite ease-in-out;
    -ms-transform-origin: center bottom;
    animation: shake 4s ease 0s normal none infinite;
    transform-origin: center bottom;
    animation: shake 4s infinite ease-in-out;
    transform-origin: center bottom;
}
.illustration .water1 {
    background: url(https://inrdeals.sgp1.digitaloceanspaces.com/resources/images/water1.png) no-repeat;
    background-size: 100%;
    position: absolute;
    width: 700.8px;
    height: 51.2px;
    bottom: 48px;
    -webkit-animation: water1 2s infinite linear;
    -moz-animation: water1 2s infinite linear;
    -ms-animation: water1 2s infinite linear;
    -o-animation: water1 2s infinite linear;
    animation: water1 2s infinite linear;
}
.illustration .water2 {
    background: url(https://inrdeals.sgp1.digitaloceanspaces.com/resources/images/water2.png) no-repeat;
    background-size: 100%;
    position: absolute;
    width: 700.8px;
    height: 88.8px;
    bottom: 0;
    -webkit-animation: water2 2s infinite linear;
    -ms-animation: water2 2s infinite linear;
    -moz-animation: water2 2s infinite linear;
    -o-animation: water2 2s infinite linear;
    animation: water2 2s infinite linear;
}

/* Water1 animation */
@-webkit-keyframes water1 {
    0% {
        -webkit-transform: translate(0, 5px);
    }
    50% {
        -webkit-transform: translate(0, -5px);
    }
    100% {
        -webkit-transform: translate(0, 5px);
    }
}
@-moz-keyframes water1 {
    0% {
        -moz-transform: translate(0, 5px);
    }
    50% {
        -moz-transform: translate(0, -5px);
    }
    100% {
        -moz-transform: translate(0, 5px);
    }
}
@-ms-keyframes water1 {
    0% {
        -ms-transform: translate(0, 5px);
    }
    50% {
        -ms-transform: translate(0, -5px);
    }
    100% {
        -ms-transform: translate(0, 5px);
    }
}
@-o-keyframes water1 {
    0% {
        -o-transform: translate(0, 5px);
    }
    50% {
        -o-transform: translate(0, -5px);
    }
    100% {
        -o-transform: translate(0, 5px);
    }
}
@keyframes water1 {
    0% {
        transform: translate(0, 5px);
    }
    50% {
        transform: translate(0, -5px);
    }
    100% {
        transform: translate(0, 5px);
    }
}
/* Water2 animation */
@-webkit-keyframes water2 {
    0% {
        -webkit-transform: translate(0, -5px);
    }
    50% {
        -webkit-transform: translate(0, 0px);
    }
    100% {
        -webkit-transform: translate(0, -5px);
    }
}
@-moz-keyframes water2 {
    0% {
        -moz-transform: translate(0, -5px);
    }
    50% {
        -moz-transform: translate(0, 0px);
    }
    100% {
        -moz-transform: translate(0, -5px);
    }
}
@-ms-keyframes water2 {
    0% {
        -ms-transform: translate(0, -5px);
    }
    50% {
        -ms-transform: translate(0, 0px);
    }
    100% {
        -ms-transform: translate(0, -5px);
    }
}
@-o-keyframes water2 {
    0% {
        -o-transform: translate(0, -5px);
    }
    50% {
        -o-transform: translate(0, 0px);
    }
    100% {
        -o-transform: translate(0, -5px);
    }
}
@keyframes water2 {
    0% {
        transform: translate(0, -5px);
    }
    50% {
        transform: translate(0, 0px);
    }
    100% {
        transform: translate(0, -5px);
    }
}
/* Boat animation */
@-moz-keyframes shake {
    0% {
        -moz-transform: rotate(-2deg);
    }
    50% {
        -moz-transform: rotate(2deg);
    }
    100% {
        -moz-transform: rotate(-2deg);
    }
}
@-webkit-keyframes shake {
    0% {
        -webkit-transform: rotate(-2deg);
    }
    50% {
        -webkit-transform: rotate(2deg);
    }
    100% {
        -webkit-transform: rotate(-2deg);
    }
}
@-o-keyframes shake {
    0% {
        -o-transform: rotate(-2deg);
    }
    50% {
        -o-transform: rotate(2deg);
    }
    100% {
        -o-transform: rotate(-2deg);
    }
}
@-ms-keyframes shake {
    0% {
        -ms-transform: rotate(-2deg);
    }
    50% {
        -ms-transform: rotate(2deg);
    }
    100% {
        -ms-transform: rotate(-2deg);
    }
}
@keyframes shake {
    0% {
        transform: rotate(-2deg);
    }
    50% {
        transform: rotate(2deg);
    }
    100% {
        transform: rotate(-2deg);
    }
}

@media only screen and (max-width: 980px) and (min-width: 700px) {
    .affiliate-store-layout{
        width:20% !important;
    }
    .socialGrid2 {
        left: 80px;
    }
    .padding-70-mobile-0{
        padding:0 50px !important;
    }
}
   /* @media only screen and (max-width: 990px) and (min-width: 700px)*/
        .socialGrid2 {
            background: none repeat scroll 0 0;

            left: 15px;
            position: absolute;
            top: 70px;
            width: 114px;
            z-index: 1;
        }

        .socialGrid2 {
            position: absolute;
            z-index: 1;
            display: none;
            left: 60px;
            width: 114px;
            top: 70px;
            background: rgba(255, 0, 0, 0.2);
        }

        * {
            -webkit-box-sizing: border-box;
            -moz-box-sizing: border-box;
            box-sizing: border-box;
        }

        .socialGrid {
            border-radius: 3px;
            display: none;
            opacity: 1;
            padding-bottom: 10px;
            position: absolute;
            right: 8px;
            text-align: right;
            width: 25px;
            z-index: 22;
        }

        /*-------------------------------End New Edit 22 Sep 2016-------------------------*/
        /*-------------------------------End New Edit 28 Sep 2016-------------------------*/
        /*.copyNow {
            display: inline-block;
            margin: 5%;
            padding: 8px 0px;
            font-size: 25px;

            font-weight: bold;
            border: 2px dashed #ff9900;
            background: #fff1db;
            color: #13416a;
            -webkit-border-radius: 3px;
            -moz-border-radius: 3px;
            text-align: center;
            border-radius: 3px;
            width: 90%;
            letter-spacing: 2px;
        }*/
        .copyNow{display: inline-block;

            padding: 8px 0px 10px;
            font-size: 25px;
            font-weight: bold;
            border: 2px dashed #ff9900;
            background: #fff1db;
            color: #13416a;
            -webkit-border-radius: 3px;
            -moz-border-radius: 3px;
            text-align:center;
            border-radius: 3px;
            width: 100%;
            letter-spacing: 2px;}


        .freeText {
            color: #999;
            font-family: "Arimo", sans-serif;
            float: left;
            font-size: 12px;
            font-style: italic;
            height: 13px;
            padding-bottom: 20px;
            width: 100%;
            overflow: hidden;
        }

        .illustration {
            width: 438px;
            height: 200px;
        }

        .illustration .boat {
            width: 341px;
            height: 196.5px;
            left: 25px;
            bottom: 9.5px;
        }

        .illustration .water1 {
            width: 438px;
            height: 32px;
            bottom: 30px;
        }

        .illustration .water2 {
            width: 438px;
            height: 55.5px;
        }

/*-------------------------------End New Edit 28 Sep 2016-------------------------*/



/*---------------
RESPONSIVE
---------------*/
@media (min-width: 1280px){

.container {
	width: 1200px;
}
    .padding-70-mobile-0{
        padding:0 10px !important;
    }
}
@media (max-width: 1366px){
.slide-home1 .thumbs{
	top: inherit;
	left: 0;
	text-align: center;
	bottom: 30px;
}
.slide-home1 .thumbs a{
	display: inline-block;
	max-width: 80px;
}
.header.style5 .advanced-search{
	width: 70%;
}
.header.style5 .main-header .mini-cart{
	width: 25%;
}
.header.style5 .main-menu>li>a{
	padding: 0 15px;
}
.slide-home4:hover .owl-prev {
	left: 20px;
}
.slide-home4:hover .owl-next {
	right: 20px;
}
.product-item .kt-countdown .box-count{
	width: 40px;
	height: 40px;
	font-size: 10px;
	padding-top: 3px;
}
.product-item .kt-countdown .box-count .number{
	font-size: 14px;
}
    .footer.style4 .widget-payment-methods,
    .widget-hot-keyword .list-keyword{
        text-align: center;
    }
    .footer.style4 .widget-payment-methods .widget-title,
    .footer.style4 .widget-payment-methods .methods,
    .widget-hot-keyword .line label{
        display: block;
        float: none;
    }
    .header.style7 .main-header-menu{
        padding-left: 0;
    }
    .header.style7 .advanced-search{
        margin-left: 0;
    }
    .illustration {
        width: 525.6px;
        height: 259.4px;
    }
    .illustration .boat {
        width: 435px;
        height: 201px;
        left: 30px;
        bottom: 0.5px;
    }
    .illustration .water1 {
        width: 525.6px;
        height: 38.4px;
        bottom: 36px;
    }
    .illustration .water2 {
        width: 525.6px;
        height: 66.6px;
    }
}
@media(max-width: 1200px){

    .right-370 {
        right: 340px !important;
    }
    .top-bar-left .logo,
    .top-bar-left .form-search-wapper{
        padding: 30px 20px;
    }
    .top-bar-menu>li>a,
    .top-bar-menu>li>.cart-link{
        padding: 40px 50px;
    }

    .block-daily-deal .product-detail{
        display: block;
        width: 100%;
    }
    .block-daily-deal .product-count-down{
        display: block;
        width: 100%;
        padding: 0;
    }
    .block-daily-deal .product-count-down .kt-countdown{
        display: table;
        width: 100%;
        table-layout: fixed;
    }
    .block-daily-deal .product-count-down .box-count{
        display: table-cell;
        padding: 20px 0;
    }
    .block-daily-deal .product-info{
        padding-top: 20px;
    }
    .block-daily-deal .product-image{
        max-width: 46%;
    }
    .block-social .social,
    .block-newsletter .inner{
        padding-left: 30px;
        padding-right: 30px;
    }
    .header.style2 .logo{
        display: block;
        width: 100%;
        text-align: center;/*
        padding-bottom: 30px;*/
    }
    .header.style2 .main-menu{
        padding-left: 0;
    }
    .header.style2 .main-menu>li:first-child>a{
        padding-left: 0;
    }
    .verticalmenu-content{
        display: none;
    }
    .box-vertical-megamenus .flash{
        display: none;
    }
    .box-vertical-megamenus .title .bar{
        display: inline-block;
    }
    .header.style3 .box-serach-wapper{
        padding-left: 0;
    }
    .header.style3 .main-menu>li:first-child>a{
        padding-left: 25px;
    }
    .lasttest-blog .blog-buttom .button{
       padding: 6px 15px;
    }
    .lasttest-blog .blog-buttom{
        padding: 13px 10px;
    }
    .no-sidebar .single-product .kt-images .kt-thumbs{
        position: static;
        width: auto;
        margin: 0 -5px;
    }
    .no-sidebar .single-product .kt-images .kt-main-image{
        padding: 0;
        margin-bottom: 10px;
    }
    .no-sidebar .single-product .kt-images .item-thumb{
        display: inline-block;
        float: left;
        padding: 0 5px;
        width: 33.3333%;
    }
    .header.style5 .main-menu{
        padding-left: 15px;
    }
    .header.style7 .advanced-search{
        width: 450px;
    }
    .header.style7 .box-vertical-megamenus .title{
        padding: 0;
        width: 40px;
        height: 40px;
        line-height: 40px;
        text-align: center;
        border-top-left-radius: 0;
        border-top-right-radius: 0;
    }
    .header.style7 .box-vertical-megamenus .title .text{
        display: none;
    }
    .header.style7 .box-vertical-megamenus .title .bar{
        float: none;
    }
    .header.style7 .header-control .vertical-menu-wapper{
        width: 40px;
    }
    .header.style7 .main-menu>li:first-child>a{
        padding-left: 15px;
    }
    .header.style6 .header-msg{
        padding-right: 10px;
    }
    .header.style6 .advanced-search{
        width: 400px;
        margin-left: 0;
    }
    .header.style6 .main-menu>li>a{
        padding: 13px 15px;
        padding-bottom: 14px;
    }
    .header.style6 .main-menu>li:first-child>a{
        padding-left: 15px;
    }
    .box-icon.style5{
        min-height: 100px;
    }
    .kt-tabs.style5 .nav-tab li{
        padding: 13px 15px;
    }
    .product-item.style9 .price{
        margin-bottom: 10px;
    }
    .kt-category-tabs .tab-head .nav-tab li a{
        padding: 0 10px;
    }
    .header.style9 .main-menu>li>a{
        padding: 16px 20px;
    }
    .header.style9 .main-menu>li:first-child>a{
        padding-left: 20px;
    }
    .header.style9 .main-header .advanced-search{
        width: 450px;
    }
    .header.style10 .main-header .advanced-search{
        width: 450px;
    }
    .header.style10 .main-menu>li:first-child>a,
    .header.style10 .main-menu>li>a{
        padding: 16px 20px;
    }
    .kt-category-tabs .sub-category{
        position: absolute;
        top: 0;
        left: 0;
        background-color: #fff;
        z-index: 10;
        padding:  5px 15px;
        display: none;
    }
    .kt-category-tabs .sub-category li a{
        padding: 5px 0;
    }
    .kt-category-tabs.style2 .tab-inner{
        background-image: none!important;
    }
}

@media (max-width: 991px){
    .affiliate-store-layout{
        width:20% !important;
    }

    .padding-70-mobile-0{
        padding:0 50px !important;
    }

    /* PRODUCT GRID*/
    .product-list-grid.desktop-columns-1 .product-item:nth-child(1n+1),
    .product-list-grid.desktop-columns-2 .product-item:nth-child(2n+1),
    .product-list-grid.desktop-columns-3 .product-item:nth-child(3n+1),
    .product-list-grid.desktop-columns-4 .product-item:nth-child(4n+1),
    .product-list-grid.desktop-columns-5 .product-item:nth-child(5n+1),
    .product-list-grid.desktop-columns-6 .product-item:nth-child(6n+1),
    .product-list-grid.desktop-columns-7 .product-item:nth-child(7n+1),
    .product-list-grid.desktop-columns-8 .product-item:nth-child(8n+1),
    .product-list-grid.desktop-columns-9 .product-item:nth-child(9n+1),
    .product-list-grid.desktop-columns-10 .product-item:nth-child(10n+1),
    .product-list-grid.desktop-columns-11 .product-item:nth-child(11n+1),
    .product-list-grid.desktop-columns-12 .product-item:nth-child(12n+1){
        clear: none;
    }
    /* PRODUCT GRID*/
    .product-list-grid.tablet-columns-1 .product-item:nth-child(1n+1),
    .product-list-grid.tablet-columns-2 .product-item:nth-child(2n+1),
    .product-list-grid.tablet-columns-3 .product-item:nth-child(3n+1),
    .product-list-grid.tablet-columns-4 .product-item:nth-child(4n+1),
    .product-list-grid.tablet-columns-5 .product-item:nth-child(5n+1),
    .product-list-grid.tablet-columns-6 .product-item:nth-child(6n+1),
    .product-list-grid.tablet-columns-7 .product-item:nth-child(7n+1),
    .product-list-grid.tablet-columns-8 .product-item:nth-child(8n+1),
    .product-list-grid.tablet-columns-9 .product-item:nth-child(9n+1),
    .product-list-grid.tablet-columns-10 .product-item:nth-child(10n+1),
    .product-list-grid.tablet-columns-11 .product-item:nth-child(11n+1),
    .product-list-grid.tablet-columns-12 .product-item:nth-child(12n+1){
        clear: left;
    }

    .top-bar-left{
        width: 100%;
    }
    .top-bar-left .logo{
        text-align: center;
    }
    .top-bar-right{
        width: 100%;
        float: left;
        border-top-width: 1px;
        border-top-style: solid;
        border-top-color: rgba(56,56,56,0.6);
    }
    .top-bar-menu{
        display: table;
        width: 100%;
        table-layout: fixed;
    }
    .top-bar-menu>li{
        display: table-cell;
    }
    .top-bar-left .form-search-wapper{
        border-right-width: 1px;
        border-right-style: solid;
        border-right-color: rgba(56,56,56,0.6);
    }
    .block-daily-deal .thumbs{
        display: block;
        width: 100%;
        padding-right: 0;
        padding-bottom: 20px;
    }
    .block-daily-deal .thumbs a{
        display: inline-block;
        margin-bottom: 0;
    }
    .block-daily-deal .thumbs a:after{
        width: 0;
        height: 0;
        border-style: solid;
        border-width: 0 10px 13px 10px;
        border-color: transparent transparent #ffffff transparent;
        left: 50%;
        bottom: -20px;
        top: inherit;
        -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
        -o-transform: translateX(-50%);
        transform: translateX(-50%);
    }
    .header.style2 .mobile-navigation{
        display: inline-block;
    }
    .header.style2 .main-menu{
        display: none;
    }
    .header.style2 .top-bar-menu{
        display: inline-block;
        width: auto;
    }
    .header.style2 .top-bar-menu>li>a{
        padding: 15px;
    }
    .header-control .vertical-menu-wapper{
        width: 60px;
    }
    .box-vertical-megamenus .title{
        width: 60px;
        font-size: 0;
        height: 60px;
        padding: 0;
        line-height: 60px;
        line-height: 60px;
        text-align: center;
    }
    .box-vertical-megamenus .title .bar{
        font-size: 16px;
        display: inline-block;
        float: none;
    }
    .block-banner-text.style4 .content{
        padding: 0 10px;
    }
    .footer-social,
    .footer-newsletter{
        padding: 0 30px;
    }
    .footer-social{
        text-align: center;
    }
    .footer-social .social a{
        display: inline-block;
        float: none;
    }
    .footer-social label{
        float: none;
        display: block;
        padding: 0;
        padding-bottom: 30px;
    }
    .kt-tabs .nav-tab li{
        padding: 0 10px;
    }
    .kt-tabs .tab-head{
        padding: 17px 10px;
    }
    .header.style3 .box-serach-wapper{
        display: table;
        width: 100%;
        float: none;
        padding-bottom: 30px;
    }
    .header.style3 .advanced-search{
        width: 100%;
    }
    .header.style3 .main-header{
        padding-bottom: 30px;
    }
    .footer .widget:last-child{
        margin-bottom: 10px;
    }
    .post-item .post-thumb{
        width: 100%;
    }
    .blog-single-footer .share{
        float: left;
        margin-top: 15px;
    }
    .author-bio{
        padding: 15px;
    }
    .comment-form-wapper .comment-form input[type="text"], .comment-form-wapper .comment-form input[type="email"]{
        width: 100%;
    }

    .single-product .kt-images{
        padding: 10px;
        margin-bottom: 20px;
    }
    .single-product .summary{
        padding: 10px;
    }
    .single-product .kt-images .kt-main-image img{
        width: 100%;
    }
    .product-tabs .nav-tab li{
        width: 100%;
        padding: 0;
        padding-bottom: 1px;
    }
    .product-tabs .nav-tab li a{
        width: 100%;
    }
    .no-sidebar .single-product .summary table.variations-table tr{
        width: 100%;
    }
    .single-product .summary .share{
        display: block;
        margin-top: 15px;
    }
    .no-sidebar .product-tabs{
        display: block;
    }
    .no-sidebar .product-tabs .nav-tab{
        width: 100%;
        float: none;
        display: block;
    }
    .form-authentication{
        display: block;
    }
    .form-authentication .form-login, .form-authentication .form-register{
        display: block;
        width: 100%;
    }
    .header.style5 .top-bar-menu>li>a{
        padding: 0 10px;
    }
    .header.style5 .box-vertical-megamenus .title{
        width: 100%;
        height: auto;
        text-align: left;
        line-height: normal;
    }
    .header.style5 .box-vertical-megamenus .title .bar{
        float: right;
    }
    .header.style5 .mobile-navigation{
        padding: 0;
        padding-top: 3px;
    }
    .header.style5 .mobile-navigation .icon{
        border: none;
    }
    .header-control .vertical-menu-wapper{
        width: 30%;
    }
    .nav-center .owl-next{
        right: 0!important;
    }
    .nav-center .owl-prev{
        left: 0!important;
    }
    .nav-center:hover .owl-next{
        right: 30px!important;
    }
    .nav-center:hover .owl-prev{
        left: 30px!important;
    }
    .box-icon.style4{
        padding: 20px 5px;
        min-height:185px;
    }
    .box-icon.style4 .icon{
        width: 100%;
        height: 80px;
    }
    .box-icon.style4 .box-content{
        overflow: inherit;
        text-align: center;
    }
    .header.style7 .mobile-navigation{
        padding: 0;
        float: right;
    }
    .header.style7 .mobile-navigation .icon{
        width: 40px;
        height: 40px;
        float: right;
        margin: 0;
        margin-left: 15px;
    }
    .header.style7 .mobile-navigation .icon span{
        margin-bottom: 5px;
    }
    .header.style7 .top-bar-menu>li>a{
        padding: 0 15px;
    }
    .block-box.no-border-left .block-box-content {
        border-left: 1px solid #f0f0f0;
    }
    .block-box.no-border-right .block-box-content {
        border-left: 1px solid #f0f0f0;
    }
    .product-item.style3{
        border: 1px solid #f0f0f0;
    }
    .box-icon.style5 .icon{
        display: table;
        float: none;
        margin: 0 auto;
    }
    .box-icon.style5 .box-content{
        padding-left: 0;
        text-align: center;
    }
    .kt-tabs.style5 .floor-elevator{
        display: none;
    }
    .kt-tabs .nav-tab{
        margin-right: 0;
    }
    .header.style6 .header-msg{
        display: none;
    }
    .header.style6 .top-bar-menu>li>a{
        padding: 0 10px;
    }
    .header.style6 .box-vertical-megamenus .title{
        width: 40px;
        height: 40px;
        padding: 0;
        margin: 0;
        line-height: 40px;
    }
    .header.style6 .box-vertical-megamenus .title .bar{
        margin: 0;
    }
    .header.style6 .mobile-navigation{
        padding-top:14px;
        line-height: 40px;
    }
    .header.style6 .header-control .vertical-menu-wapper{
        width: 40px;
    }
    .header.style6 .mobile-navigation .icon{
        width: 30px;
        height: 30px;
        padding-top: 7px;
    }
    .banner-header .inner .close-banner{
        right: 0;
    }
    .header.style9 .top-bar-menu>li>a,
    .header.style10 .top-bar-menu>li>a{
        padding: 0 10px;
    }
    .header.style9 .header-control .vertical-menu-wapper,
    .header.style10 .header-control .vertical-menu-wapper{
        width: 35px;
    }
    .header.style9 .box-vertical-megamenus .title,
    .header.style10 .box-vertical-megamenus .title{
        padding: 0;
        width: 35px;
        height: 35px;
        text-align: center;
        line-height: 35px;
    }
    .header.style9 .box-vertical-megamenus .title .text,
    .header.style10 .box-vertical-megamenus .title .text{
        display: none;
    }
    .header.style9 .mobile-navigation,
    .header.style10 .mobile-navigation{
        padding: 0;
    }
    .header.style10 .mobile-navigation{
        color: #fff;
    }
     .header.style10 .mobile-navigation .icon{
        border-color: #fff;
    }
     .header.style10 .mobile-navigation .icon>span{
        background-color: #fff;
     }
    .kt-category-tabs .has-banner-left .left-banner{
        display: none;
    }
    .kt-category-tabs .tab-head .title{
        width: 180px;
    }
    .kt-category-tabs .tab-head .floor-elevator{
        display: none;
    }
    .kt-category-tabs .tab-head .nav-tab li a{
        font-size: 14px;
    }
    .group-brands .brand-item{
        width: 50%
    }

    .group-brands .store-item{
        width: 100% !important;
    }
    .kt-category-tabs .has-banner-left .tab-content-products{
        overflow: inherit;
        width: 100%;
        float: left;
    }

    .heading-accordion{
        color: #1a5276 !important;
        font-family: "Arimo",sans-serif;
        font-size: 14px;
        font-weight: 400;
        text-align: center;
    }
}

@media (max-width: 767px){
    .sidebar{display:none; !important;}
    .blog-sidebar{display:none; !important;}

    .services-bg{
        padding: 20px !important;
    }

    .font-mobile-service{
        font-size: 24px !important;
    }

    .responsive-padding-30{
        padding: 0 10px !important;
    }

    .ext-video-height{
        height: 300px !important;
    }
    .splash-link-table table {
        border: 0;
        border-collapse: collapse;
        margin: 0;
        padding: 0;
        width: 100%;
        table-layout: fixed;
    }
    .splash-link-table table th {
        padding: .625em;
        text-align: center;
        font-size: .9em;
        letter-spacing: .1em;
    }
    .splash-link-table table thead {
        border: none;
        clip: rect(0 0 0 0);
        height: 1px;
        margin: -1px;
        overflow: hidden;
        padding: 0;
        position: absolute;
        width: 1px;
    }
    .splash-link-table table tr {
        border-bottom: 3px solid #ddd;
        display: block;
        margin-bottom: .625em;
        padding: .35em;
    }
    .splash-link-table table td {
        padding: .625em;
        border-bottom: 1px solid #ddd;
        display: block;
        font-size: .85em;
        text-align: right;
    }
    .splash-link-table table td:before {
        /*
        * aria-label has no advantage, it won't be read inside a table
        content: attr(aria-label);
        */
        content: attr(data-label);
        float: left;
        font-weight: bold;
        text-transform: uppercase;
    }
    .splash-link-table table td:last-child {
        border-bottom: 0;
    }

    .block-stores-padding{
        padding: 20px 20px 20px 20px !important;
    }

    .skip_btn{
       position: absolute;
       top: 18px !important;
       right: 4px !important;
    }

    .height-responsive-redirectionlogo{
        height: 40px!important;
    }
    .deal-logout-redirectionbg{
        margin-top: 0 !important;
        height:100% !important;
    }

    .or-spacer {
        width: 100% !important;
        margin-left: 0 !important;
    }
    .side-space-70{
        padding: 0 20px !important;
    }

    .side-space-130{
        padding: 0 10px !important;
    }

    .affiliate-store-layout{
        width:25% !important;
    }

    .width-grid{
        float: left;
        position: relative;
        width: 50%;
    }
    .left-sidebar .main-content{
        float: none;
        overflow: hidden;
        margin-bottom: 40px;
    }

    .mob-btn{
        width: 100% !important;
    }
    /* PRODUCT GRID*/
    .product-list-grid.tablet-columns-1 .product-item:nth-child(1n+1),
    .product-list-grid.tablet-columns-2 .product-item:nth-child(2n+1),
    .product-list-grid.tablet-columns-3 .product-item:nth-child(3n+1),
    .product-list-grid.tablet-columns-4 .product-item:nth-child(4n+1),
    .product-list-grid.tablet-columns-5 .product-item:nth-child(5n+1),
    .product-list-grid.tablet-columns-6 .product-item:nth-child(6n+1),
    .product-list-grid.tablet-columns-7 .product-item:nth-child(7n+1),
    .product-list-grid.tablet-columns-8 .product-item:nth-child(8n+1),
    .product-list-grid.tablet-columns-9 .product-item:nth-child(9n+1),
    .product-list-grid.tablet-columns-10 .product-item:nth-child(10n+1),
    .product-list-grid.tablet-columns-11 .product-item:nth-child(11n+1),
    .product-list-grid.tablet-columns-12 .product-item:nth-child(12n+1){
        clear: none;
    }
    /* PRODUCT GRID*/
    .product-list-grid.mobile-columns-1 .product-item:nth-child(1n+1),
    .product-list-grid.mobile-columns-2 .product-item:nth-child(2n+1),
    .product-list-grid.mobile-columns-3 .product-item:nth-child(3n+1),
    .product-list-grid.mobile-columns-4 .product-item:nth-child(4n+1),
    .product-list-grid.mobile-columns-5 .product-item:nth-child(5n+1),
    .product-list-grid.mobile-columns-6 .product-item:nth-child(6n+1),
    .product-list-grid.mobile-columns-7 .product-item:nth-child(7n+1),
    .product-list-grid.mobile-columns-8 .product-item:nth-child(8n+1),
    .product-list-grid.mobile-columns-9 .product-item:nth-child(9n+1),
    .product-list-grid.mobile-columns-10 .product-item:nth-child(10n+1),
    .product-list-grid.mobile-columns-11 .product-item:nth-child(11n+1),
    .product-list-grid.mobile-columns-12 .product-item:nth-child(12n+1){
        clear: left;
    }
    .slide-home2 .content-slide{
       padding: 0;
       left: 15px;
       right: 15px;
    }
    .slide-home2 .content-slide .subtitle{
        font-size: 14px;
    }
    .slide-home2 .content-slide .title{
        font-size: 16px;
    }
    .footer .coppyright{
        text-align: center;
        display: block;
    }
    .footer .payment{
        text-align: center;
    }
    .verticalmenu-list .sub-menu{
        position: static;
        display: none;
        box-shadow: 0 1px 3px rgba(0, 0, 0, 0), 0 1px 2px rgba(0, 0, 0, 0);
        -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0), 0 1px 2px rgba(0, 0, 0, 0);
    }
    .verticalmenu-list .show-submenu>.sub-menu{
        display: block;
    }
    .verticalmenu-list .sub-menu>li{
        padding: 0;
    }
    .verticalmenu-list .sub-menu>li>a{
        padding: 13px 15px;
    }
    .kt-tabs .nav-tab{
        float: left;
        margin-top: 15px;
        width: 100%;
    }
    .kt-tabs .nav-tab li{
        display: block;
        padding:5px 0;
    }
    .product-item .wishlist,
    .product-item .add_to_cart_button,
    .product-item .compare{
        transform: scale(1);
        visibility: inherit;
        opacity: 1;
        filter: alpha(opacity=100);
    }
    .author-bio{
        display: block;
    }
    .author-bio .author,
    .author-bio .author-avatar{
        display: block;
        text-align: center;
        width: 100%;
    }
    .form-authentication .form-login, .form-authentication .form-register{
        padding: 15px;
    }
    .verticalmenu-list .megamenu{
        padding: 20px 0;
    }
    .box-vertical-megamenus .megamenu .widget:last-child {
        margin-bottom: 30px;
    }
    .product-item.list .product-inner,
    .product-item.list .thumb, .product-item.list .info{
        display: block;
    }
    .header .main-menu{
        display: none;
    }
    .mobile-navigation{
        display: inline-block;
    }
    .header.style5 .top-bar-menu{
        text-align: center;
    }
    .header.style5 .top-bar-menu>li>a{
        padding:10px 5px;
        font-size: 11px;
    }
    .main-header-menu{
        text-align: center;
    }
    .main-header-menu li{
        float: none;
    }
    .main-header-menu li a{
        border: none;
    }
    .header.style5 .advanced-search{
        width: 100%;
        margin-bottom: 15px;
    }
    .header.style5 .main-header .mini-cart{
        width: 100%;
    }
    .header.style5 .advanced-search .search-text-box{
        display: block;
    }
    .header-control .vertical-menu-wapper{
        width: 40px;
    }
    .header.style5 .box-vertical-megamenus .title{
        padding: 0;
        text-align: center;
        line-height: 40px;
    }
    .header.style5 .box-vertical-megamenus .title .text{
        display: none;
    }
    .header.style5 .box-vertical-megamenus .title .bar{
        float: none;
    }
    .header.style5 .mobile-navigation{
        font-size: 14px;
    }
    .floor-elevator{
        display: none;
    }
    .kt-tabs .tab-title{
        font-size: 16px;
    }
    .kt-tabs.style2 .nav-tab li a{
        padding: 0;
    }
    .kt-tabs.style2 .nav-tab li:after{
        display: none;
    }
    .kt-tabs.style2 .nav-tab li{
        padding: 5px 0;
    }
    .header.style5 .advanced-search .category-dropdwon{
        display: none;
    }
    .block-newsletter.style2 .inner{
        padding: 0 15px;
    }
    .block-newsletter.style2 .subtitle{
        font-size: 12px;
    }
    .block-box .block-head .block-desc{
        display: none;
    }
    .slide-home4 .container-slide .inner{
        padding: 0;
        float: none;
        text-align: center;
        width: 100%;
    }
    .slide-home4 .title{
        font-size: 20px;
    }
    .slide-home4 .subtitle{
        font-size: 12px;
    }
    .kt-tabs.style3 .nav-tab li{
        padding: 5px 0;
    }
    .slide-home7 .title{
        font-size: 30px;
        line-height: normal;
    }
    .slide-home7 .subtitle{
        font-size: 16px;
    }
    .header.style7 .advanced-search{
        width: 100%;
        margin-bottom: 20px;
    }
    .header.style7 .header-right-control{
        display: table;
        margin: 0 auto;
        float: none;
    }
    .header.style7 .top-bar-menu>li>a{
        padding: 0 5px;
    }
    .mini-cart:hover .mini-cart-content{
        display: none!important;
    }
    .header.style6 .advanced-search{
        width: 100%;
        margin-bottom: 20px;
    }
    /*.tab-brand .list-brand li{
        width: 333.333%;
    }*/
    .header.style9 .main-header .advanced-search,
    .header.style10 .main-header .advanced-search{
        width: 100%;
        margin-bottom: 20px;
    }
    .kt-product-tab .nav-tab li{
        display: block;
        float: none;
        text-align: center;
        padding: 5px 0;
    }
    .kt-product-tab .nav-tab li a{
        padding: 0;
        border: none;
    }
    .kt-product-tab .product-item.style9 .product-inner{
        border: 1px solid #e6e6e6;
        border-top: none;
        border-left: none;
    }
    .kt-category-tabs .tab-head,
    .kt-category-tabs .tab-head .title, .kt-category-tabs .tab-head .nav-tab{
        display: block;
        width: 100%;
        float: left;
    }
     .kt-category-tabs .tab-head .title{
        width: 100%;
        padding: 10px;

     }
     .kt-category-tabs .tab-head .nav-tab{
        text-align: center;
     }
     .kt-category-tabs .tab-head .nav-tab li{
        float: none;
     }
     .kt-category-tabs .tab-head .nav-tab li a{
        border: none;
     }
     .header.style9 .top-bar-menu,
     .header.style10 .top-bar-menu{
        text-align: center;
     }
    .kt-block-deal .head .count-down label{
        display: none;
    }
    .kt-block-deal .head .count-down{
        float: left;
        margin-top: 15px;
    }
    .kt-block-deal .head .count-down .kt-countdown .box-count{
        font-size: 12px;
    }
    .kt-block-deal .head .count-down .kt-countdown .box-count:first-child{
        padding-left: 0;
    }
    .kt-category-tabs.style2 .tab-head .nav-tab li{
        padding: 5px 0;
    }
    .kt-category-tabs.style2 .tab-head .title{
        border-bottom: 1px solid #eee;
        text-align: center;
    }
    .kt-category-tabs.style2 .product-item.style10 .product-inner{
        border: none;
    }

}

@media (max-width: 480px){

    .sidebar{display:none; !important;}
    .blog-sidebar{display:none; !important;}
    .services-bg{
        padding: 20px !important;
    }
    .font-mobile-service-store{
        font-size: 18px !important;
        line-height: 25px !important;
    }
    .font-mobile-service{
        font-size: 24px !important;
    }

    .responsive-padding-30{
        padding: 0 10px !important;
    }

    .redirection-text-mob{
        font-size: 14px; !important;
        line-height: 25px !important
    }

    .two-button-one-row{
        width: 100% !important
    }

    .rate-text{
        font-size: 12px !important;
    }

    .padding-70-mobile-0{
        padding:0 10px !important;
    }
    .block-stores-padding{
        padding: 0 !important;
    }

    .block-stores-padding .owl-nav{
       display:none !important;
    }

    .mobile-display-none{
        display: none !important
    }

    .text-cashback{
       font-size:10px;
       font-weight:500;
    }

    .generate-link-text{
        font-size:12px !important;
        line-height:16px !important;
    }

    .btn-greenbordercolor{
        line-height: 3.2 !important;
    }

    .affiliate-store-layout{
        width:50% !important;
    }

    .width-37{
        width: 100% !important;
    }

    .width-26{
        width: 100% !important;
    }
    /* PRODUCT GRID*/
    .product-list-grid.mobile-columns-1 .product-item:nth-child(1n+1),
    .product-list-grid.mobile-columns-2 .product-item:nth-child(2n+1),
    .product-list-grid.mobile-columns-3 .product-item:nth-child(3n+1),
    .product-list-grid.mobile-columns-4 .product-item:nth-child(4n+1),
    .product-list-grid.mobile-columns-5 .product-item:nth-child(5n+1),
    .product-list-grid.mobile-columns-6 .product-item:nth-child(6n+1),
    .product-list-grid.mobile-columns-7 .product-item:nth-child(7n+1),
    .product-list-grid.mobile-columns-8 .product-item:nth-child(8n+1),
    .product-list-grid.mobile-columns-9 .product-item:nth-child(9n+1),
    .product-list-grid.mobile-columns-10 .product-item:nth-child(10n+1),
    .product-list-grid.mobile-columns-11 .product-item:nth-child(11n+1),
    .product-list-grid.mobile-columns-12 .product-item:nth-child(12n+1){
        clear: left;
    }
    .amazon-form input, .col-xs-6{
        padding: 0;
    }
    .width-grid{
        width: 100%;
        float: left;
        position: relative;
    }
    .form-login li {
        white-space: normal !important;
    }
    .white-popup , .mfp-bg{
        display: none;
    }
    .slide-home1 .thumbs{
        display: none;
    }
    .top-bar-left .logo, .top-bar-left .form-search-wapper{
        display: block;
        width: 100%;
        padding: 10px;
    }
    .top-bar-left .logo {
        padding: 15px 10px;
        border-right-width: 1px;
        border-right-style: solid;
        border-right-color: rgba(56,56,56,0.6);
    }
    .top-bar-menu>li>a,
    .top-bar-menu>li>.cart-link{
        padding: 10px 15px;
    }
    .top-bar-menu>li>.cart-link .subtotal,
    .top-bar-menu>li>.cart-link .kak{
        display: none;
    }
    .block-daily-deal .thumbs{
        display: table;
        width: 100%;
    }
    .block-daily-deal .thumbs a{
        width: 33.33333%;
        float: left;
    }
    .block-daily-deal .product-image{
        max-width: 100%;
    }
    .block-daily-deal .product-info{
        padding-left: 0;
        width: 100%;
        float: left;
    }
    .block-daily-deal .product-count-down .box-count .number{
        font-size: 16px;
    }
    .block-daily-deal .product-count-down .box-count .text{
        font-size: 12px;
    }


    .header.style2 .mobile-navigation{
        font-size: 0;
    }
    .advanced-search .category-dropdwon{
        display: none;
    }
    .advanced-search .search-text-box{
        padding-left: 10px;
    }
    .footer-social, .footer-newsletter{
        padding: 0 10px;
    }
    .footer-social .social a{
        margin: 0;
    }
    .box-setting .box-setting-content {
        min-width: 120px;
        padding: 10px;
        left: 0;
        right: inherit;
    }
    .box-setting-content .box-section .inner a{
        width: 33.33333%;
        margin-right: 0;
        margin-bottom: 10px;
        text-align: center;
        padding: 0 5px;
    }
    .box-setting-content .box-section.currency .inner a{
        width: 20px;
        height: 20px;
        font-size: 13px;
        line-height: 20px;
        margin-right: 10px;
    }
    .box-setting-content .box-section .inner{
        padding: 10px 0;
    }
    .mini-cart .mini-cart-content{
        min-width: 255px;
    }
    .mini-cart:hover .mini-cart-content,
    .mini-cart .mini-cart-content{
        display: none;
    }
    .top-bar-menu>li:nth-last-child(1) .sub-menu,
    .top-bar-menu>li:nth-last-child(2) .sub-menu{
        left: 0;
        right: inherit;
    }
    .header.style2 .top-bar-menu>li>a{
        border: none;
    }
    .header.style2 .top-bar-menu{
        width: 100%;
        border: none;
    }
    .header.style2 .top-bar-menu>li{
        float: none;
        display: inline-block;
    }

    .block-banner-text .content{
        left: 15px!important;
        right: 15px!important;
        text-align: center!important;
    }
    .slide-home2 .content-slide .title{
        margin-bottom: 0;
    }
    .single-product .summary{
        padding: 10px;
    }
    .single-product .kt-images{
        margin-bottom: 20px;
        padding: 10px;
    }
    .no-sidebar .single-product .kt-images .kt-main-image{
        padding: 0;
    }
    .no-sidebar .single-product .kt-images .kt-main-image img{
        width: 100%;
    }
    .product-tabs .tab-container{
        padding: 10px;
    }
    table.cart{
        display: block;
    }
    table.cart thead{
        display: none;
    }
    table.cart td{
        display: block;
        width: 100%;
        float: left;
        overflow: hidden;
    }
    .block-form .block-form-footer{
        padding: 0;
        overflow: hidden;
        text-align: center;
    }
    .block-form .block-form-footer .button{
        display: inline-block;
        float: none!important;
        margin-bottom: 10px;
    }
    /*.product-item .thumb img{
        width: 100%;
    }*/
    .testimonial .inner .text{
        padding: 15px;
    }

    .header.style5 .mobile-navigation{
        font-size: 14px;
    }

    .header.style4 .top-bar-menu{
        width: auto;
        float: left;
    }
    .header.style4 .box-setting .box-setting-content{
        min-width: 190px;
    }
    .single-product .summary .single_add_to_cart_button{
        width: 100%;
        margin-bottom: 30px;
    }
    .illustration {
        width: 262.8px;
        height: 134.2px;
    }
    .illustration .boat {
        width: 204.6px;
        height: 128.9px;
        left: 15px;
        bottom: 5.7px;
    }
    .illustration .water1 {
        width: 262.8px;
        height: 19.2px;
        bottom: 18px;
    }
    .illustration .water2 {
        width: 262.8px;
        height: 33.3px;
    }
    .logo1{
        align-content: center !important;
        left:65px;
    }
    .banner-opacity{
        width:280px;
    }
}
@media (max-width: 320px){

    .responsive-padding-30{
        padding: 0 10px !important;
    }

    .white-popup .mfp-bg .mfp-ready{
        display: none;
    }

    .box-category-products .head img{
        width: 100%;
    }
    .slide-home5 .content-slide .title{
        font-size: 20px;
    }
    .slide-home5 .content-slide .link{
        margin-top: 10px;
    }
    .topbar-search .icon .text{
        display: none;
    }
    .top-bar-menu .sub-menu{
        min-width: 170px;
        max-width: 170px;
    }
    .top-bar-menu .sub-menu>li{
        padding: 0 10px;
    }
    .top-bar-menu .sub-menu>li>a{
            padding: 10px 10px;
    }

    .box-setting .box-setting-content {
        min-width: 120px;
        padding: 10px;
        left: 0;
        right: inherit;
    }
    .kt-category-tabs .tab-head .nav-tab li{
        width: 100%;
    }
    .group-brands .brand-item{
        width: 50%;
    }

    .illustration {
        width: 262.8px;
        height: 134.2px;
    }
    .illustration .boat {
        width: 204.6px;
        height: 128.9px;
        left: 15px;
        bottom: 5.7px;
    }
    .illustration .water1 {
        width: 262.8px;
        height: 19.2px;
        bottom: 18px;
    }
    .illustration .water2 {
        width: 262.8px;
        height: 33.3px;
    }

}
.product_image:hover .QuickViewNew { display: block}
.producthover:hover .socialGrid{ display: block !important;}


.QuickViewNew{background: rgba(0, 0, 0, 0.2) none repeat scroll 0 0;
    border-radius: 3px;
    color: #fff !important;
    height: 40px;
    line-height: 38px;
    display: none;
    margin-left: 31%;
    margin-top: 65px;
    position: absolute;
    width: 100px;
    z-index: 2;
    transition: all 0s ease 0s;}
    .QuickViewNew:hover{background:#222;}
     .socialGrid div:hover{ opacity:1;}

     .OppppCit
     .pluseIc{ width: 100%; padding-top: 100px;position: absolute; z-index: 55;color: #13416a;
        font-size: 60px; text-align: center; padding-bottom: 100px;}
     .OppppCit .producthover { opacity: 0.2;}
     .OppppCit .info { opacity: 0.2;}


/* Edit on 1st Oct */

        .FutuLogo{ border-bottom:1px solid #f7f0f0; margin-top:10px; text-align:center;}
        .FutuLogo img{ max-width:100%; max-height:95%; margin-bottom:5px;  text-align:center;}
        .FutuLogo{ width:100%; height:75px !important;}

/* Edit on 1st Oct */

.btn-coupon {
	 background: #13416a none repeat scroll 0 0;
    border: 0 none;
    border-radius: 0;
    font-weight: 700;
    height: 32px;

    padding: 8px 8px;
    position: relative;

    width: 220px;
}
.btn-coupon small, .btn-coupon:before {
	position: absolute;
	width: 100%;
	height: 100%;
	font-size: 14px;
	padding: 6px 0;
  font-weight: normal;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	z-index: 1;
	left: 0;
	top: 0;
 background: #13416a none repeat scroll 0 0;
}
.btn-coupon:before {
	content: "Get Your Code";
 background: #13416a none repeat scroll 0 0;
	z-index: 2;
	width: 100%;

	transition: .35s;
	-webkit-transition: .35s;
	-moz-transition: .35s
}
.btn-coupon.btn-deal.coupon-opened:after, .btn-coupon.btn-deal:before {
	content: "Get Your Code";
	width: 100%;
 background: #13416a none repeat scroll 0 0;
}
.btn-coupon small {
	padding-right: 12px;
	text-align: right;
	display: none;
}
.btn-coupon.btn-exclusive small {
 background: #13416a none repeat scroll 0 0;
}
.btn-coupon.btn-deal.coupon-opened:after {
	position: absolute;
	left: 0;
	padding: 12px 0;
	top: 0
}
.btn-coupon.btn-deal:before {
	box-shadow: none
}
.btn-coupon.btn-exclusive:before {
	content: "Get Your Code";
    text-align: center;;
	width: 100%;
	 background: #13416a none repeat scroll 0 0;
	box-shadow: inset -8px 0 #419645;
    color: #ffffff;
    font-family: 'Montserrat',serif !important;
}
.btn-coupon.btn-exclusive.btn-deal:before {
	content: "222";
  text-align: right;
}
.btn-coupon.btn-deal:hover:before {
	width: 100%;
	box-shadow: none;
	background-color: #419645
}
.btn-coupon:hover:before {
	width: 90%;

  background: #13416a none repeat scroll 0 0;

}
.btn-coupon.btn-exclusive {
	width: 100%;
  content: "222";
  text-align: right;
  background: #13416a none repeat scroll 0 0;
  color: #ffffff;

}
.cuttt{position: absolute;
    z-index: 3;
}

.vr{
    border-right: 1px solid #ececec;
    height: 60px;
}

.deal-pad{
    padding-bottom: 5px;
    padding-top: 5px;
}

.inr-mobile-logo{
    left:5%;
}
.cupcolor{
    color:#F75757;
    /*padding-right:44px;*/
}

.btn_color{
    background-color: #f69a38;
    border-color: #f69a38;
}


.rechargebtn a{
    background-color:#13416a;
    display: inline-block;
    border: 1px solid #13416a;
    font-size: 12px!important;
    color: #ffffff;
    padding: 4px 20px;
    margin-bottom: 5px;
    font-family: 'Merriweather', serif;
    font-style: italic;
}
.rechargebtn a:hover{
    color: #fff;
}

.imgwdth{
max-width: 60%;
}

.menu-mobile-head{
    display: table;
    width: 100%;
}

/*.local-img{
    max-height: 99%;
}*/

.color-orange{
    color:#f69a38 !important;
}
.product-item .rmg{
position: relative;
overflow: hidden;
text-align: center;
height: 400px;
        }

        .noResult {
              padding: 100px 0 110px 0;
        }
        .noResult .heading {
            font-size: 70px;
            font-weight: 700;
            color: #999;
        }
.noResult .headingReq {
    font-size: 20px;
    font-weight: 700;
    color: #999;
}

.product-item .rmg{
 position: relative;
 overflow: hidden;
 text-align: center;
 height: 400px;
        }

.focus-color{
    color: #ffffff !important;
}

.focus-color a:hover{
    color:#ffffff !important;
}

.category-banner{
    min-height: 160px;
}

.contactBtn{
    margin-right: 15px;
}

.menu-img-margin{
    margin: -30px 0 -30px 30px;
    height: 315px;
}
.mob-nav-clor{
    font-family: Montserrat, sans-serif;
    margin-left: -12px;
}

.rechargepopup{
    width:440px;
    height:192px;
    font-family:Montserrat, sans-serif;
    font-size:12px;
    text-align:left;
    line-height:3em;
    overflow:auto;
    padding:5px;
}
.kt-category-tabs .tab-head .local-Search{
    color: #000 !important;
}

.button-colors-orange{
 background-color: #f69a38;
 color: #fff;
 padding: 12px 0;
 text-align: center;
 font-size: 14px;
 margin-top: 10px;
        }

.button-colors-grey{
 background-color: #eee;
 color: #fff;
 padding: 12px 0;
 text-align: center;
 font-size: 14px;
        }

.button-colors-grey:hover{
    box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.25) !important;
}

.button-colors-blue{
    background-color: #13416a;
    color: #fff;
    padding: 12px 0;
    text-align: center;
    font-size: 14px;
        }

.button-colors-purple{
    background-color:#720e9e;
    color: #fff;
    padding: 12px 0;
    text-align: center;
    font-size: 14px;
        }
.button-colors-purple:hover{
    box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.25) !important;
}
.button-colors-green{
    background-color: #13416a;
    color: #fff;
    padding: 12px 0;
    text-align: center;
    font-size: 14px;
        }
.button-colors-yellow{
    background-color: #eec15b;
    color: #fff;
    padding: 12px 0;
    text-align: center;
    font-size: 14px;
}
.button-colors-darkgreen{
    background-color: #45bc6f;
    color: #fff;
    padding: 6px 10px;
    font-size: 18px;
    font-weight:500;
    font-family: "Helvetica neue",Helvetica,Arial,"sans-serif";
}
.button-colors-serviceorange{
    color: gray;
    font-size: 20px;
    padding: 12px 0;
}


/* Expired Deals 3rd Nov 2016*/
        .expired div{ opacity:0.3;}
        .expired span{ opacity:0.3;}

        .expiredRibbon{ opacity:1 !important; position:absolute; line-height:25px; color:#222;z-index:1; text-align:center; }
        .expiredRibbon div{ opacity:1 !important; line-height:25px;  z-index:1; }
/* Expired Deals 3rd Nov 2016*/

.scroll-stores {
height:320px;
overflow-y: scroll;
        }

.font-montserrat-sans-serif{
    font-family: "Montserrat", sans-serif !important;
}

.local-overlay:hover {
    opacity: 0.5 !important;
    filter: alpha(opacity=50) !important;
}

.disprice {
    font-size: 14px;
    font-weight: bold;
    margin-top: 5px;
    float: left;
    color: #FF5C26;
}

.actprice{
    color: #999;
    float: left;
    font-size: 12.5px;
    font-weight: 400;
    text-decoration: line-through;
    width: 52%;
}

.actprice_dis {
    font-size: 12.5px;
    font-weight: bold;
    color: #16be48;
    float: right;
    margin-top: 3px;
}

.prtitle{
    height:105px !important;
}

.shpnow{
    background-color: #13416a;
    border-color: #13416a;
    border-radius: 0;
    font-family: montserrat;
    font-size: 10px;    height: 20px;
    line-height: 1;
    padding: 5px 10px;
    width: 100%;

}

.shpnow:hover {
    color: #fff;
}

.footer-logo{
    background-color: transparent;
    height: 24px;
    width: 280px;
    font-family: "Montserrat", sans-serif;
    font-size: 10px;
}
.font-red{
    color: #FF5C26 !important;
}

.car-box.style4 {
    transition: all 0.3s ease 0s;
}
.car-box {
    text-align: center;
    position: relative;
}
.car-box.style4 .icon{
    position: static;
    float: left;
    width: 110px;
    height: auto;
    background-color: transparent;
    color: #666;
    line-height: inherit;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    -o-transform: translateX(0);
    transform: translateX(0);
    font-size: 36px;
    line-height: normal;
}
.car-box.style4 .box-content{
    padding: 0;
    text-align: left;
    overflow: hidden;
    color: #666;
    width:50%;
    line-height: 18px;
}

.stepwizard {
    display: table;
    width: 100%;
    position: relative;
    margin-top: 40px;
}
.stepwizard-row {
    display: table-row;
}
.stepwizard-row:before {
    top: 14px;
    bottom: 0;
    position: absolute;
    content: " ";
    width: 100%;
    height: 1px;
    background-color: #ccc;
    z-order: 0;
}
.stepwizard-step {
    display: table-cell;
    text-align: center;
    position: relative;
}
.stepwizard-step .btn.disabled {
    opacity: 1 !important;
    filter: alpha(opacity=100) !important;
}

.btn-circle {
    width: 30px;
    height: 30px;
    text-align: center;
    padding: 6px 0;
    font-size: 12px;
    line-height: 1.428571429;
    border-radius: 15px;
}

/*
 *
 * TOOLTIPTSTER DEFAULT CSS
 */
.tooltipster-default {
    border-radius: 5px;
    border: 2px solid #000;
    background: #4c4c4c;
    color: #fff;
}

.tooltipster-default .tooltipster-content {
    font-family: Arial,sans-serif;
    font-size: 14px;
    line-height: 16px;
    padding: 8px 10px;
    overflow: hidden;
}

.tooltipster-icon {
    cursor: help;
    margin-left: 4px;
}

.tooltipster-base {
    padding: 0;
    font-size: 0;
    line-height: 0;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 9999999;
    pointer-events: none;
    width: auto;
    overflow: visible;
}

.tooltipster-base .tooltipster-content {
    overflow: hidden;
}

.tooltipster-arrow {
    display: block;
    text-align: center;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
}

.tooltipster-arrow span, .tooltipster-arrow-border {
    display: block;
    width: 0;
    height: 0;
    position: absolute;
}

.tooltipster-arrow-top span,
.tooltipster-arrow-top-right span, .tooltipster-arrow-top-left span {
    border-left: 8px solid transparent !important;
    border-right: 8px solid transparent !important;
    border-top: 8px solid;
    bottom: -7px;
}

.tooltipster-arrow-top .tooltipster-arrow-border, .tooltipster-arrow-top-right .tooltipster-arrow-border, .tooltipster-arrow-top-left .tooltipster-arrow-border {
    border-left: 9px solid transparent !important;
    border-right: 9px solid transparent !important;
    border-top: 9px solid;
    bottom: -7px;
}

.tooltipster-arrow-bottom span, .tooltipster-arrow-bottom-right span, .tooltipster-arrow-bottom-left span {
    border-left: 8px solid transparent !important;
    border-right: 8px solid transparent !important;
    border-bottom: 8px solid;
    top: -7px;
}

.tooltipster-arrow-bottom .tooltipster-arrow-border, .tooltipster-arrow-bottom-right .tooltipster-arrow-border, .tooltipster-arrow-bottom-left .tooltipster-arrow-border {
    border-left: 9px solid transparent !important;
    border-right: 9px solid transparent !important;
    border-bottom: 9px solid;
    top: -7px;
}

.tooltipster-arrow-top span, .tooltipster-arrow-top .tooltipster-arrow-border, .tooltipster-arrow-bottom span, .tooltipster-arrow-bottom .tooltipster-arrow-border {
    left: 0;
    right: 0;
    margin: 0 auto;
}

.tooltipster-arrow-top-left span, .tooltipster-arrow-bottom-left span {
    left: 6px;
}

.tooltipster-arrow-top-left .tooltipster-arrow-border, .tooltipster-arrow-bottom-left .tooltipster-arrow-border {
    left: 5px;
}

.tooltipster-arrow-top-right span, .tooltipster-arrow-bottom-right span {
    right: 6px;
}

.tooltipster-arrow-top-right .tooltipster-arrow-border, .tooltipster-arrow-bottom-right .tooltipster-arrow-border {
    right: 5px;
}

.tooltipster-arrow-left span, .tooltipster-arrow-left .tooltipster-arrow-border {
    border-top: 8px solid transparent !important;
    border-bottom: 8px solid transparent !important;
    border-left: 8px solid;
    top: 50%;
    margin-top: -7px;
    right: -7px;
}

.tooltipster-arrow-left .tooltipster-arrow-border {
    border-top: 9px solid transparent !important;
    border-bottom: 9px solid transparent !important;
    border-left: 9px solid;
    margin-top: -8px;
}

.tooltipster-arrow-right span, .tooltipster-arrow-right .tooltipster-arrow-border {
    border-top: 8px solid transparent !important;
    border-bottom: 8px solid transparent !important;
    border-right: 8px solid;
    top: 50%;
    margin-top: -7px;
    left: -7px;
}

.tooltipster-arrow-right .tooltipster-arrow-border {
    border-top: 9px solid transparent !important;
    border-bottom: 9px solid transparent !important;
    border-right: 9px solid;
    margin-top: -8px;
}

.tooltipster-fade {
    opacity: 0;
    -webkit-transition-property: opacity;
    -moz-transition-property: opacity;
    -o-transition-property: opacity;
    -ms-transition-property: opacity;
    transition-property: opacity;
}

.tooltipster-fade-show {
    opacity: 1;
}

.tooltipster-grow {
    -webkit-transform: scale(0, 0);
    -moz-transform: scale(0, 0);
    -o-transform: scale(0, 0);
    -ms-transform: scale(0, 0);
    transform: scale(0, 0);
    -webkit-transition-property: -webkit-transform;
    -moz-transition-property: -moz-transform;
    -o-transition-property: -o-transform;
    -ms-transition-property: -ms-transform;
    transition-property: transform;
    -webkit-backface-visibility: hidden;
}

.tooltipster-grow-show {
    -webkit-transform: scale(1, 1);
    -moz-transform: scale(1, 1);
    -o-transform: scale(1, 1);
    -ms-transform: scale(1, 1);
    transform: scale(1, 1);
    -webkit-transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    -webkit-transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.15);
    -moz-transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.15);
    -ms-transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.15);
    -o-transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.15);
    transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.15);
}

.tooltipster-swing {
    opacity: 0;
    -webkit-transform: rotateZ(4deg);
    -moz-transform: rotateZ(4deg);
    -o-transform: rotateZ(4deg);
    -ms-transform: rotateZ(4deg);
    transform: rotateZ(4deg);
    -webkit-transition-property: -webkit-transform,opacity;
    -moz-transition-property: -moz-transform;
    -o-transition-property: -o-transform;
    -ms-transition-property: -ms-transform;
    transition-property: transform;
}

.tooltipster-swing-show {
    opacity: 1;
    -webkit-transform: rotateZ(0);
    -moz-transform: rotateZ(0);
    -o-transform: rotateZ(0);
    -ms-transform: rotateZ(0);
    transform: rotateZ(0);
    -webkit-transition-timing-function: cubic-bezier(0.23, 0.635, 0.495, 1);
    -webkit-transition-timing-function: cubic-bezier(0.23, 0.635, 0.495, 2.4);
    -moz-transition-timing-function: cubic-bezier(0.23, 0.635, 0.495, 2.4);
    -ms-transition-timing-function: cubic-bezier(0.23, 0.635, 0.495, 2.4);
    -o-transition-timing-function: cubic-bezier(0.23, 0.635, 0.495, 2.4);
    transition-timing-function: cubic-bezier(0.23, 0.635, 0.495, 2.4);
}

.tooltipster-fall {
    top: 0;
    -webkit-transition-property: top;
    -moz-transition-property: top;
    -o-transition-property: top;
    -ms-transition-property: top;
    transition-property: top;
    -webkit-transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    -webkit-transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.15);
    -moz-transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.15);
    -ms-transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.15);
    -o-transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.15);
    transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.15);
}

.tooltipster-fall.tooltipster-dying {
    -webkit-transition-property: all;
    -moz-transition-property: all;
    -o-transition-property: all;
    -ms-transition-property: all;
    transition-property: all;
    top: 0 !important;
    opacity: 0;
}

.tooltipster-slide {
    left: -40px;
    -webkit-transition-property: left;
    -moz-transition-property: left;
    -o-transition-property: left;
    -ms-transition-property: left;
    transition-property: left;
    -webkit-transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    -webkit-transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.15);
    -moz-transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.15);
    -ms-transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.15);
    -o-transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.15);
    transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.15);
}

.tooltipster-slide.tooltipster-dying {
    -webkit-transition-property: all;
    -moz-transition-property: all;
    -o-transition-property: all;
    -ms-transition-property: all;
    transition-property: all;
    left: 0 !important;
    opacity: 0;
}

.tooltipster-content-changing {
    opacity: .5;
    -webkit-transform: scale(1.1, 1.1);
    -moz-transform: scale(1.1, 1.1);
    -o-transform: scale(1.1, 1.1);
    -ms-transform: scale(1.1, 1.1);
    transform: scale(1.1, 1.1);
}

/* *
 * TOOLTIPTSTER OVERRIDE CSS
 */
.tooltipster-light {
    border-radius: 5px;
    background-color: #F0BE00;
    color: #fff;
}

.tooltipster-content {
    font-family: Verdana, sans-serif;
    color: white;
    font-size: 13px;
    line-height: 16px;
    padding: 8px 10px;
}
.block-daily-deal .side-color{
    width: 20px;
    background-color: #F2F2F2;
}
.btn-primary {
    background-color: #13416a !important;
    border-color: #13416a !important;
    color: #fff !important;
}
.requestdeal a{
    background-color: #f39c12 ;
    display: inline-block;
    border: 1px solid  #f39c12 ;
    font-size: 12px!important;
    color: #ffffff;
    padding: 4px 20px;
    font-family: 'Merriweather', serif;
    font-style: italic;
}
.requestdeal a:hover{
    color: #fff;
}
.requestdeal a:hover:after {
    width:48%;
    background-color: rgba(255, 255, 255,  0.09);
    transition: all 0.5s ease 0s;
}
.requestdeal a:after {
    background-color: rgba(255, 255, 255, 0.09);
    bottom: 0;
    content: "";
    left: 0;
    position: absolute;
    top: 0;
    transition: all 0.5s ease 0s;
    width: 0;
}
/*@-webkit-keyframes wiggle {
    0% { transform: rotate(0deg); }
    80% { transform: rotate(0deg); }
    85% { transform: rotate(5deg); }
    95% { transform: rotate(-5deg); }
    100% { transform: rotate(0deg); }
}

.wiggle {
    !*display: inline-block;*!
    animation: wiggle 2.5s infinite;
}
.wiggle:hover {
    animation: none;
}*/

.field-border{
    border: 1px solid   #c0c0c0   !important;
}

a.inrmarklet {
    background-color: #13416a;
    color: #fff;
    padding: 12px 0;
    text-align: center;
    font-size: 25px;
    height: 75px;
    box-shadow: 1px 1px 5px rgba(0, 0, 0, 0.8);
    vertical-align: middle;

}

#inrmarklet {
    cursor: alias;
}

a.inrmarklet::after {
    color: #fff;
    text-align: center;
    font-size: 25px;
    content:"Drag To Bookmark Bar";
    vertical-align: middle;
    line-height: 50px;
    text-shadow: 0 -1px 0 rgb(16, 45, 11);
    margin: 0 5px;
}

a.wp-plugin {
    background-color: #13416a;
    color: #fff;
    padding: 12px 0;
    text-align: center;
    font-size: 25px;
    height: 75px;
    box-shadow: 1px 1px 5px rgba(0, 0, 0, 0.8);
    vertical-align: middle;

}

#wp-plugin {
    cursor: alias;
}

a.wp-plugin::after {
    color: #fff;
    text-align: center;
    font-size: 25px;
    content:"Download the Plugin";
    vertical-align: middle;
    line-height: 50px;
    text-shadow: 0 -1px 0 rgb(16, 45, 11);
    margin: 0 5px;
}

a.chrome-extension {
    background-color: #fef410;
    color: #000;
    text-align: center;
    font-size: 25px;
    box-shadow:0 4px 0 0 #dad101;
    vertical-align: middle;

}

.link-stats{
    font-family:Montserrat,sans-serif;
    font-style:normal;
    border:none;
    color:#000;
    font-size: 15px;
    text-align: center;
}

.panel-flow {
    border-color: #b9afff;
    background-color: #ddd8ff;
    color: #452b7c;
}

.btn-sec {
    background-color: #233242;
    border-color: #151E28;
    color: #fff;
}

.btn-sec:hover {
    background-color: #5cb85c;
    border-color: #4cae4c;
    color: #fff;
}

.menu-text{
    margin-top:-18px !important;
    font-size:9px !important;
    font-family:montserrat sans-serif !important;
    text-transform: uppercase;
}

.kt-popup-newsletter .text-subinr{
    -webkit-border-radius: 30px;
    -moz-border-radius: 30px;
    -ms-border-radius: 30px;
    -o-border-radius: 30px;
    border-radius: 30px;
    padding: 6px 0px;
    padding-right: 135px;
    min-height: 48px;
    border: none;
    background-color: #fcfcfc;
}

.kt-popup-newsletter .button-popup{
    background-color: #259fc4;
    border-color: #259fc4;
    height: 32px;
    width: auto;
    padding: 0 10px;
    -webkit-border-radius: 30px;
    -moz-border-radius: 30px;
    -ms-border-radius: 30px;
    -o-border-radius: 30px;
    border-radius: 30px;
    color: #fff;
    line-height: 32px;
    font-size: 12px;
    text-transform: uppercase;

}
.kt-popup-newsletter .border {
    border: 1px solid #ededed;
    background-color: #fcfcfc;
    margin-top: 5px;
    -webkit-border-radius: 30px;
    -moz-border-radius: 30px;
    -ms-border-radius: 30px;
    -o-border-radius: 30px;
    border-radius: 30px;
}

.valid-text{
    color:#df6216;
    margin-top: 0px;
    font-size: 15px;
    font-weight: 100;
}

.popup-subtitle{
    font-size:13px;
    line-height:18px;
    margin-bottom: 10px;
    text-transform: capitalize;
}

.popup-heading{
    font-size:30px;
    line-height:35px;
    font-weight: 700;
    font-family: Montserrat;
    color: #2e3436;
}

.border-green{
    border-top: 1px solid #13416a;
    border-bottom: 1px solid #13416a;
    margin: 3px;
}

.alert-cross{
    border: none !important;
    top: -6px !important;
    color:  #13416a  !important;
    width: 15px !important;
}

.line-text-height{
    line-height: 18px ! important;
}

.banner-title-popup{
    margin-bottom: 3px;
    font-size:13px;
    font-weight:600;
}
.login-text{
    margin-left:2px ;
    margin-top:3px;
    font-size:12px
}

.btn-popup {
    border-radius: 30px;
    font-size: 18px;
    font-weight: 600;
    background-color: #8ad86d;
}
.btn-popup:hover {
    border-radius: 30px;
    font-size: 18px;
    font-weight: 600;
    background-color:  #13416a;
}

.deal-page-background{
    background: #103754 none repeat scroll 0 0;
    color: white;
    overflow: hidden;
    padding: 25px 0;
    text-align: center;
    width:100%
}

.deal-page-background h1{
    color: white !important;
    font-size: 35px;
    line-height: 40px;
    text-align: center;
}

.splashlink-page-background{
    background:  #2ecc71  none repeat scroll 0 0;
    color: white;
    overflow: hidden;
    padding: 25px 0;
    text-align: center;
    width:100%
}

.splashlink-page-background h1{
    color: black !important;
    font-size: 35px;
    line-height: 40px;
    text-align: center;
}

.form-login li {
    overflow: hidden;
    list-style: none;
    margin-right: 10px;
    display: inline-block;
}
.form-login li a {
    opacity: 0;
    color: #666;
    max-width: 0;
    display: inline-block;
    text-decoration: none;
    transition: max-width 1s ease-out .1s, opacity 1s ease-out .1s, color;
}

.form-login li a i {
    display: block;
    padding-right: 10px;
    /*font:1em/1 'rokkitt', sans-serif;*/
    font-family: merriweather,serif;
    font-size: 14px;
    color: #aaa;
    float: right;
    line-height: 19px;
}

.form-login li a h4{
    font-style: normal;
    color:   #00a072  ;
    font-family: Montserrat,sans-serif;
    font-size: 14px;
    margin-bottom: 2px;
}

.form-login li b {
    color: #c33;
    line-height:1;
    font-size: 25px;
    display: inline-block;
    padding:.125em .375em;
}
.form-login li .icon1 {}
.form-login li .icon1 {
    opacity: 1;
    max-width: 100%;
    transition: max-width 1s ease-out .1s, opacity 1s ease-out .1s, color .2s;
}

.text-color-white{
    color:white !important;
}
.text-color-black{
    color:black !important;
}

.link-alert{
    background-color: #233242;
    display: block;
    padding: 13px;
    color:white
}

.btn-royal-blue{
    background-color: #1a5276 !important;
    border-color: #1a5276 !important;
    color: #fff !important;
}

.btn-redcolor{
    background-color: #f76d52;
    border-color: #f76d52;
    color: #fff;
}

.btn-whitecolor{
    background-color: #fff;
    border-color: #fff;
    color: #f76d52;
}

.btn-redcolor:hover{
    color: #fff;
}

.btn-whitecolor:hover{
    color:#f76d52;
}

.btn-royal-blue:hover{
    background-color: #ebedee !important ;
    border-color:  #1a5276 !important;
    color: #1a5276 !important;
}

.btn-orange{
    background-color: #f5ae0e !important ;
    border-color:  #f5ae0e !important;
    color: #fff !important;
}

.btn-orange:hover{
    background-color: #fff !important ;
    border-color:  #f5ae0e !important;
    color: #f5ae0e !important;
}

.panel-border{
    border-radius: 1px;
    box-shadow: 0 0 0 4px rgba(191, 191, 191, 0.6);
    padding: 20px 15px;
    border: solid 1px  #183b65
}

.reverse-btn{
    height: 50px;
    border-radius: 0px;
    line-height: 2.3;
    border-color: #1a5276;
    color: #1a5276;
}

.reverse-btn:hover{
    background-color: #ebedee  ;
    border-color:  #1a5276;
    color: #1a5276;
}

.panel-heading-big{
    color:  #4f5254;
    cursor: auto;
    font-family: "museo-sans-fontspring","Helvetica Neue","Helvetica","Arial",sans-serif;
    font-style: normal;
    font-weight: normal;
    line-height: 1.5;
}

 .display-none{
     display: none ;
 }

.mobile-display-none{
    display: block
}

 .mark, mark {
     background-color: #fafafa;
     font-family: "museo-sans-fontspring","Helvetica Neue","Helvetica","Arial",sans-serif;
     padding: 0.2em;
 }

 .social-icons-refer{
     color: #fff;
     cursor: pointer;
     display: inline-block;
     height: 50px;
     overflow: hidden;
     position: relative;
     transition: all 0.3s ease 0s;
     z-index: 1;
     box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.25) !important;
 }

.social-icons-refer i {
    color: #fff;
    display: inline-block;
    line-height: 50px;
    text-align: center;
    /*width: 50px;*/
 }
.shadow-aff-link {
    border: 2px dashed #f76d52;
    padding: 5px;
    font-size: 20px;

}
.btn-greenbordercolor{
    border-color: #00af66;
    border-radius: 0;
    color: #00af66;
    line-height: 2.3;
}
.text-color-green{
    color:#00af66 !important;
}

.loyality-link:hover{
    color:#a9a9a9;
}

.premium-border{
    border: 3px solid #1d1d1d;
    width:90%;
    margin-left:5%;
    margin-right:5%
}

.text-grid:hover{
    background-color: #fff;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    -webkit-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
    }

.premium-heading{
    color: #a5a5a5 ;
    margin: 1.5em 3em;
    text-align: center;
    font-style: italic ;
    font-size: 25px;
    font-family: Merriweather,serif !important;
}

.premium hr {
    border: 0;
    border-top: 1px solid #8c8c8c;
    text-align: center;
}
.premium hr:after {
    content: 'Features';
    display: inline-block;
    position: relative;
    top: -15px;
    padding: 0 10px;
    background: #fff;
    color: #8c8c8c;
    font-size: 30px;
}

.heading-accordion{
    color:  #1a5276 ;
    font-weight: 700;
    font-family:inherit;
}

.kt-quickview-popup table{
    width: 100% !important;
}

.close-btn-layout{
    background-color: #000 !important;
    border-radius: 4px !important;
    color: #fff !important;
    font-size: 18px !important;
    font-weight: 700;
    height: 20px !important;
    line-height: 10px !important;
    margin: 2px;
    opacity: 1 !important;
    width: 20px !important;
    text-align: center;
}

.brand-item:hover .hover-btn {
    opacity: 1; /* added */
    top: 0; /* added */
    z-index: 500;
}
/* added */
.brand-item:hover .hover-btn span {
    top: 50%;
    position: absolute;
    left: 0;
    right: 0;
    transform: translateY(-50%);
}
/* added */
.brand-item .hover-btn {
    display: block;
    position: absolute;
    opacity: 0;
    left: 0;
    bottom: 0;
    right: 0;
    text-align: center;
    background: rgba(0, 0, 0, 0.04);
    transition: .50s ease-in 0s ease-out ;
}

.stores-btn{
    background-color:  #9b9e9c ;
    color: #fff;
}

.stores-btn:hover{
    background-color: #626262;
    color: #fff;
}

.admin-opt {
    position: relative;
    z-index: 1;
}

.campaign-table th {
    padding: 15px !important;
    font-size: 14px !important;
    /*font-family: roboto mono !important;*/
}

.campaign-table td {
    padding: 25px !important;
    font-size: 16px !important;
    /*font-family: roboto mono !important;*/
}

.layer-overlayer {
    position: relative;
    width: 100%; /* for IE 6 */
    z-index: 1;
}

.layer-overlayer-text {
    position: absolute;
    top: 170px;
    left: 0;
    width: 100%;
}

.clean-table table{
    border: none;
}

.clean-table td{
    border: none;
    padding: 11px 0 !important;
    width: 50%;
}

.width-37{
    width: 37%;
}

.width-26{
    width: 26%;
}


.right-negative-224{
    right: -224px !important;
}

#slideout {
    position: fixed;
    top: 160px;
    right: 0;
    -webkit-transition-duration: 0.3s;
    -moz-transition-duration: 0.3s;
    -o-transition-duration: 0.3s;
    transition-duration: 0.3s;
}
#slideout_inner {
    position: fixed;
    top: 160px;
    right: -550px;
    -webkit-transition-duration: 0.3s;
    -moz-transition-duration: 0.3s;
    -o-transition-duration: 0.3s;
    transition-duration: 0.3s;
}
.right-370 {
    right: 370px !important;
}
.right-0 {
    right: 0 !important;
}

#affiliate-data, #affiliate-title {
    -webkit-transition-duration: 0.3s;
    -moz-transition-duration: 0.3s;
    -o-transition-duration: 0.3s;
    transition-duration: 0.3s;
}
#bigTriangleColor path {
    fill: #000;
    stroke: #000;
    opacity: 0.9;
}

.read-more-target {
    opacity: 0;
    max-height: 0;
    font-size: 0;
    padding:0 !important;
    transition: .25s ease;
}

.display-none:checked ~ .read-more-wrap .read-more-target {
    opacity: 1;
    font-size: inherit;
    max-height: 999em;
    padding:8px !important;
}

.display-none ~ .read-more-trigger:before {
    content: 'Show more';
}

.display-none:checked ~ .read-more-trigger:before {
    content: 'Show less';
}

.read-more-trigger {
    cursor: pointer;
    display: inline-block;
    padding: 0 .5em;
    color: #666;
    font-size: .9em;
    line-height: 2;
    border: 1px solid #ddd;
    border-radius: .25em;
}

.read-more-accordion {
    opacity: 0;
    max-height: 0;
    font-size: 0;
    padding:0 !important;
    transition: .25s ease;
}

.display-none:checked ~ .read-more-wrap .read-more-accordion {
    opacity: 1;
    font-size: inherit;
    max-height: 999em;
    padding:10px 15px !important;
}

.read-more-store {
    opacity: 0;
    max-height: 0;
    font-size: 0;
    padding:0 !important;
    transition: .25s ease;
}

.display-none:checked ~ .read-more-wrap .read-more-store {
    opacity: 1;
    font-size: inherit;
    max-height: 999em;
    padding:0 !important;
}

.read-more-outer-store {
    opacity: 0;
    max-height: 0;
    font-size: 0;
    padding:0 !important;
    transition: .25s ease;
}

.display-none:checked ~ .read-more-wrap .read-more-outer-store {
    opacity: 1;
    font-size: inherit;
    max-height: 999em;
    padding:20px 0 10px 20px  !important;
}

.affiliate-store-layout{
    width:14.28%;
    padding:0 !important;
    margin:0 !important;
    overflow: hidden;
    float: left
}

.part_about{
    display: none;
}

.para-about p{
    margin-bottom: 10px;
}

.overlay-loader {
    /*position: fixed;*/
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;

}

.overlay-loader .loader-background {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: #2C4762;
    -webkit-transition: background-color .2s 0s linear,right .2s .3s ease-out;
    -moz-transition: background-color .2s 0s linear,right .2s .3s ease-out;
    -ms-transition: background-color .2s 0s linear,right .2s .3s ease-out;
    -o-transition: background-color .2s 0s linear,right .2s .3s ease-out;
    transition: background-color .2s 0s linear,right .2s .3s ease-out;
}

.overlay-loader .loader-background.color-flip {
    -webkit-animation: color-flip 6.5s .6s infinite linear;
    -moz-animation: color-flip 6.5s .6s infinite linear;
    -ms-animation: color-flip 6.5s .6s infinite linear;
    -o-animation: color-flip 6.5s .6s infinite linear;
    animation: color-flip 6.5s .6s infinite linear;
}

@-webkit-keyframes color-flip {
    0% { background-color: #2c4762 }
    18% { background-color: #2c4762 }
    20% { background-color: #a77dc2 }
    38% { background-color: #a77dc2 }
    40% { background-color: #4aa8d8 }
    58% { background-color: #4aa8d8 }
    60% { background-color: #56bc8a }
    78% { background-color: #56bc8a }
    80% { background-color: #d95e40 }
    98% { background-color: #d95e40 }
    100% { background-color: #2c4762 }
}

@-moz-keyframes color-flip {
    0% { background-color: #2c4762 }
    18% { background-color: #2c4762 }
    20% { background-color: #a77dc2 }
    38% { background-color: #a77dc2 }
    40% { background-color: #4aa8d8 }
    58% { background-color: #4aa8d8 }
    60% { background-color: #56bc8a }
    78% { background-color: #56bc8a }
    80% { background-color: #d95e40 }
    98% { background-color: #d95e40 }
    100% { background-color: #2c4762 }
}

@-o-keyframes color-flip {
    0% { background-color: #2c4762 }
    18% { background-color: #2c4762 }
    20% { background-color: #a77dc2 }
    38% { background-color: #a77dc2 }
    40% { background-color: #4aa8d8 }
    58% { background-color: #4aa8d8 }
    60% { background-color: #56bc8a }
    78% { background-color: #56bc8a }
    80% { background-color: #d95e40 }
    98% { background-color: #d95e40 }
    100% { background-color: #2c4762 }
}

@keyframes color-flip {
    0% { background-color: #2c4762 }
    18% { background-color: #2c4762 }
    20% { background-color: #a77dc2 }
    38% { background-color: #a77dc2 }
    40% { background-color: #4aa8d8 }
    58% { background-color: #4aa8d8 }
    60% { background-color: #56bc8a }
    78% { background-color: #56bc8a }
    80% { background-color: #d95e40 }
    98% { background-color: #d95e40 }
    100% { background-color: #2c4762 }
}

.or-spacer {
    margin-top: 30px;
    margin-left: 100px;
    width: 82%;
    position: relative;
}
.or-spacer .mask {
    overflow: hidden;
    height: 20px;
}
.or-spacer .mask:after {
    content: '';
    display: block;
    margin: -25px auto 0;
    width: 100%;
    height: 25px;
    border-radius: 125px / 12px;
    box-shadow: 0 0 8px black;
}

.or-spacer span {
    width: 30px;
    height: 30px;
    position: absolute;
    bottom: 100%;
    margin-bottom: -15px;
    left: 50%;
    margin-left: -15px;
    border-radius: 100%;
    box-shadow: 0 2px 4px #999;
    background: white;
}
.or-spacer span i {
    position: absolute;
    top: 4px;
    bottom: 4px;
    left: 4px;
    right: 4px;
    border-radius: 100%;
    text-align: center;
    line-height: 20px;
    font-style: normal;
    color: #999;
}

.side-space-70{
    padding: 0 70px;
}

.side-space-130{
    padding: 0 130px;
}

.redirectionbg{
    background-color:white;
    width:97.5%;
    height:93.5%;
    margin-top:20px;
    overflow-y: auto;
}

.height-responsive-redirectionlogo{
    height: 70px;
}

/* JS-Snippet */
.js-page-background{
    background: #27ae60 none repeat scroll 0 0;
    color: white;
    overflow: hidden;
    padding: 25px 0;
    text-align: left;
    width:100%
}

.js-page-background h1{
    color: white !important;
    font-size: 30px;
    line-height: 40px;
    text-align: center;
}
/* JS-Snippet */

.generate-link-text{
    font-size:14px;
    line-height:24px;
}

.skip_btn{
    position: absolute;
    top: 30px;
    right: 40px;
}

.block-stores-padding{
    padding: 20px 50px 20px 0;
}

.text-left{
    text-align: left !important;
}

.text-right{
    text-align: right !important;
}

.highlighted-border{
    background-color: white;
    box-shadow:0px 4px 8px 0px rgba(0, 0, 0, 0.2);
    border: 1px dashed threedlightshadow
}

.border-radius-none{
    border-radius: 0 !important;
}


/*Heading*/
.user-title{
    font-size: 30px;
    color: #34495e;
    font-weight: 900;
    text-shadow: none;
    text-transform: uppercase;
    font-family: Raleway, sans-serif;
    line-height: 40px;
}

.headings-shopper h4{
    margin: 2em 0;
    color: #00a99d;
    font-size: 25px;
}

.headings-shopper h4 span {
    display: inline-block;
    position: relative;
}
.headings-shopper h4 span:before, .headings-shopper h4 span:after {
    content: "";
    border-bottom: 2px solid #00a99d;
    width: 3em;
    margin: 0 1.5em;
    position: absolute;
    bottom: .5em;
}
.headings-shopper h4 span:before {
    right: 100%;
}
.headings-shopper h4 span:after {
    left: 100%;
}

.text-cashback{
    font-size:12px !important;
    font-weight:500 !important;
}

.btn-circle-small{
    border-radius: 10px;
    font-size: 10px;
    height: 20px;
    padding: 2px 0;
    width: 20px;
}

.background-white{
    background-color: #fff !important;
}

.bg-white{
    background-color: #fff;
}

.padding-70-mobile-0{
    padding:0 70px;
}

.user-signup-button{
    border: 2px solid white;
    border-radius:4px;
    box-shadow: 0 30px rgba(82, 92, 118, 0.3);
    font-weight: 400;
}

.user-signup-button:hover{
    background-color: #fff;
    color:#666 !important;
}

.hover-grey:hover{
    color: #666
}

.ext-video-height{
    height: 476px;
}

.install .panel-heading.active{
    background-color: #00bc41 !important;
    color:white !important;
}

.dashboard-store-text{
    font-size: 14px;
}

.dashboard-store-border{
    background: #fff none repeat scroll 0 0;
    box-shadow: 0 2px 4px 0 rgba(96, 122, 101, 0.3);
    margin-left: 0px !important;
    margin-right: 0px !important;
    text-align:center;
}

.compare-title{
    font-size: 26px;
    color: #00af66;
    font-weight: 500;
    text-shadow: none;
    font-family: Raleway, sans-serif;
    line-height: 40px;
}

.compared-price{
    color:  #01b06b ;
    font-size: 33px;
}

.compare-discount{
    font-size: 17px;
    color: orangered;
}

.transparent{
    background-color: transparent !important;
}

.border-right{
    border-right: 1px solid gainsboro;
}

.rate-text{
    font-size: 14px;
}

#button-bottom{
    position: fixed;
    bottom: -4px;
    z-index: 999;
    width: 100%;
}

.text-transform-none{
    text-transform: none;
}

.font-weight-100{
    font-weight: 100 !important;
}
.font-weight-200{
    font-weight: 200 !important;
}
.font-weight-300{
    font-weight: 300 !important;
}
.font-weight-400{
    font-weight: 400 !important;
}
.font-weight-500{
    font-weight: 500 !important;
}
.font-weight-600{
    font-weight: 600 !important;
}
.font-weight-700{
    font-weight: 700 !important;
}
.font-weight-800{
    font-weight: 800 !important;
}
.font-weight-900{
    font-weight: 900 !important;
}

.font-size-12{
    font-size: 12px !important
}.font-size-13{
    font-size: 13px !important
}
.font-size-14{
    font-size: 14px !important
}
.font-size-15{
    font-size: 15px !important
}

.font-size-16{
    font-size: 16px !important
}
.font-size-17{
    font-size: 17px !important
}
.font-size-18{
    font-size: 18px !important
}
.font-size-19{
    font-size: 19px !important
}
.font-size-20{
    font-size: 20px !important
}
.font-size-21{
    font-size: 21px !important
}
.font-size-22{
    font-size: 21px !important
}

.font-size-23{
    font-size: 23px !important
}

.two-button-one-row{
    width: 48%
}

.display-table-cell{
    display: table-cell !important;
}

.search-compare-text{
    color: slategray;
    font-family: "Helvetica neue",Helvetica,Arial,"sans-serif";
    font-size: 15px;
}

.border-table-data{
    border-color: #e5e5e5 !important;
    border-style: solid !important;
    border-width: 0 1px 1px !important;
    padding: 14px 10px !important;
}
.booster-noti{
    border-radius: 50%;
    color: rgb(255, 255, 255);
    height: 20px;
    left: 15px;
    position: absolute;
    text-align: center;
    line-height: 20px;
    font-size: 14px;
    width: 20px;
    background-color: goldenrod;
    top: 0;
}

.button-darkgreen{
    background-color: #45bc6f;
    color: #fff;
    border-color: #45bc6f;
}

.button-darkgreen:hover{
    background-color: #111;
    color: #fff;
    border-color: #111;
}

.stars {
    display: inline-block;
}

.stars input {
    display: none;
}

.stars label {
    float: right;
    padding: 2px;
    font-size: 40px;
    color: #444;
    transition: all .2s;
}

.stars label:before {
    content: '\2605';
}

.stars input:checked ~ label:before {
    color: gold;
    transition: all .25s;
}

.stars label:hover {
    transform: scale(1.3);
}

.stars-orange {
    display: inline-block;
}

.stars-orange input {
    display: none;
}

.stars-orange label {
    float: right;
    padding: 2px;
    font-size: 40px;
    transition: all .2s;
}

.stars-orange label:before {
    content: '\2606';
    font-weight: 400;
    font-size: 30px;
}

.stars-orange input:checked ~ label:before {
    content: '\2605';
    color: orangered;
    transition: all .25s;
}

.stars-orange label:hover {
    color: orangered;
    content: '\2605';
    transform: scale(1.3);
}

.float-none{
   float: none !important;
}

.service-center-box{
    background-color: #fff;
    border-radius: 6px;
    transform: translate3d(0,0,0);
    position: relative;
    border: 1px solid #eaeff5;
    -webkit-box-shadow: 0 0 10px 1px rgba(71,85,95,.08);
    -moz-box-shadow: 0 0 10px 1px rgba(71,85,95,.08);
}

.report-number{
    box-shadow: 0 2px 10px 0 #d8dde6;
    position: absolute;
    width: 40px;
    height:40px;
    text-align:center;
    line-height:43px;
    border-radius: 100px;
    right: 30px;
    top:160px;
    background-color:white;
    color:orangered;
    font-size: 21px
}

.service-station-number{
    border-radius: 6px;
    box-shadow: 0 0 10px 1px rgba(71, 85, 95, 0.08);
    color: gray;
    letter-spacing: 2px;
}

.working-hours li{
    list-style: none;
    padding: 10px;
    display: inline-block;
    width: 100%;
    border-bottom: 1px dashed #eaeff5;
}

.service-submit .btn{
    line-height: 2.2 !important;
}

.responsive-padding-30{
    padding: 0 30px;
}

.button-view-all{
    background-color: #fe4715 ;
    padding:4px 8px;
    color: white;
    font-size:13px
}

.services-bg{
    background-position: center center;
    min-height: 1px;
    padding: 50px;
}

.city-option option{
    font-size: 14px !important;
    padding: 5px 20px; !important;
    color: #333 !important;
    font-weight: 400 !important;
    line-height: 1.42857;
    font-family: 'Arimo', sans-serif;
}

.font-mobile-service{
    font-size: 30px;
}

.font-mobile-service-store{
    font-size: 23px;
    line-height: 28px;
}

.font-family-lato{
    font-family: lato !important;
}

.font-family-helvetica{
    font-family: Helvetica !important;
}

.add-cursor{
    cursor: pointer;
}

.no-border{
    border: none !important;
}
.display-block{
    display: block;
    position: relative;
}

.hidelongtext {
    width: 350px;
    display: block;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}

.height-48{
    height:48px !important;
    overflow: hidden !important;
}

.btn-coupon-code {
    background: #13416a none repeat scroll 0 0;
    border: 1px dashed #13416a;
    border-radius: 40px;
    font-weight: 700;
    height: 40px;
    line-height:24px;
    padding: 8px 8px;
    position: relative;
    border-left:none;
    width: 220px;
}
.btn-coupon-code:before {
    position: absolute;
    width: 100%;
    height: 40px;
    font-size: 14px;
    padding: 6px 0;
    font-weight: bold;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    z-index: 2;
    left: 0;
    top: -1px;
    background: #fff none repeat scroll 0 0;
    content: "Get Your Code";
    border-radius: 40px;
    transition: .35s;
    -webkit-transition: .35s;
    -moz-transition: .35s;
    line-height:24px;
    border: 1px solid #13416a;
}

.btn-coupon-code.btn-exclusive:before {
    content: "Get Your Code";
    text-align: center;;
    width: 91%;
    background: #13416a none repeat scroll 0 0;
    /*box-shadow: inset -8px 0 #218c74;*/
    color: #fff;
    font-family: 'Montserrat',serif !important;
    border: 1px solid #13416a;
    -webkit-border-radius: 40px;
    -moz-border-radius:40px;
    border-radius:40px;
}

.btn-coupon-code:hover:before {
    width: 100%;
    background: #13416a none repeat scroll 0 0;

}
.btn-coupon-code.btn-exclusive {
    width: 100%;
    content: "222";
    text-align: right;
    background: #f5f5f5 none repeat scroll 0 0;
    color: #000;

}
.btn-deal-exclusive {
    background: #13416a none repeat scroll 0 0;
    border: 1px solid #13416a;
    border-radius: 40px;
    color: #fff;
    font-family: "Montserrat",serif;
    font-size: 15px;
    font-weight: 900;
    height: 40px;
    line-height: 40px;
    text-align: center;
    width: 100%;
}

.btn-deal-expired {
    background: #919191 none repeat scroll 0 0;
    border: 1px solid #919191;
    border-radius: 40px;
    color: white;
    font-family: "Montserrat",serif;
    font-size: 15px;
    font-weight: 900;
    height: 40px;
    line-height: 40px;
    text-align: center;
    width: 100%;
    opacity: 0.7;
}

.btn-border-white{
    box-shadow: 0 2px 5px 0 rgba(0,0,0,.16),
    0 2px 10px 0 rgba(0,0,0,.12);
    border:2px solid white;
    color: white;
    background: transparent;
    font-family: Roboto,sans-serif;
    font-size: 12px;
}

.tag-bg-white{
    background-color: white;
}

.font-family-roboto-sans-serif{
    font-family: Roboto,sans-serif !important;
}
.btn-success:hover, .btn-success:focus, .btn-success.active, .btn-success:active{
    background-color: #5cb85c!important;
}

.inline-submit-form .form-input{
    background-color: #fcfcfc;
    border: 1px solid #ededed;
    border-radius: 40px;
    padding: 10px 30px;
    padding-right: 120px;
    min-height: 48px;
}
.inline-submit-form .form-button{
    background-color: #13416a;
    border-radius: 35px;
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    height: 40px;
    line-height: 40px;
    padding: 0 10px;
    right: 108px;
    text-transform: uppercase;
    width: auto;

}

.border-color-green{
    border: 1px solid #13416a !important;
}
.z-index-10{
    z-index: 10;
}
.footer-fixed-signup{
    background-color: #154360 ;
    position:fixed;
    bottom:0;
    width:100%;
    z-index:10;
}

.submitstorebtn{
    height:55px;
    line-height:55px;
    border-radius: 0 55px 55px 0
}

.submitstorebtn:hover {
    background-color: rgba(255, 255, 255, 0.19);
}

.line-height-28{
    line-height: 28px !important;
}

.mce-notification {display:none!important;}
.inr-customer-care{height: 80px;top: -50px !important;width: 80px;}
.coupon-offers{background-color: #fff; border-radius: 4px}
.login-sidebar{margin: 70px 0 30px 0; padding: 15px; border-radius:8px}
.input-classic{height:50px; border-radius:0px !important; border-color:#dadada!important; box-shadow:none!important; }
.date-coupon{ color: #aaa;    font-size: 12px;}
.gold-color{color: gold !important}
.facebook-color{color:#3b5998!important;}
.linkedin-color{color:#0077B5!important;}
.twitter-color{color:#4099ff!important;}
.google-color{color:#d34836!important;}
.whatsapp-color{color:#34AF23!important;}
.pinterest-color{color:#C92228!important;}
.sms-color{color:#27ae60!important;}
.mail-color{color:#3498db!important;}
.dribbble-color{color:#EA4C89!important;}
.tumblr-color{color:#2C3D52!important;}
.reddit-color{color:#336699!important;}
.youtube-color{color:#D12827!important;}
.phone-color{color:#27ae60!important;}
.skype-color{color:#12A5F4!important;}
.facebook-color:hover, .twitter-color:hover, .google-color:hover, .pinterest-color:hover, .sms-color:hover, .mail-color:hover, .dribbble-color:hover, .tumblr-color:hover, .reddit-color:hover, .youtube-color:hover, .phone-color:hover{color:#FFFFFF;}
.bg-turquoise{background-color: #00cfd5; !important;}
.bg-inrgreen{background-color: #5cb85c; !important;}
.product-tabs .nav-tab li .bg-primary{background-color: #f6c31e }
.color-gray-low-opacity {color:#919191; opacity: 0.7;}
.bg-facebook{background-color:#3b5998!important;}
.bg-google{background-color:#d34836!important;}
.bg-twitter{background-color:#4099ff!important;}


li.menu-li.active a {
    background-color: #13416a !important;
}
li.menu-li a:hover{
    background-color: #13416a !important;
}

.block-box .block-head .title:after {
    background: #13416a !important;
}