body.in-app {
    background-color: #fff;
}

.banner-content .img-responsive  {
    width: 100%;
}

body.in-app .common-home {
    background-color: red;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

body.in-app .header-logo {
    margin-top: 8px;
    margin-bottom: 8px;
    margin-left: 0;
}

.menu__wrap {
    display: none;
}

body.in-app .menu__wrap {
    display: flex;
    height: 90px;
    width: 100%;
    position: fixed;
    bottom: 0;
    background-color: #000;
    z-index: 999;
}

body.in-app .app-container {
    display: flex;
}

body.in-app .lang-curr .pull-left {
    border-top: none;
}

.app-container {
    display: none;
}

body.in-app .menu__wrap .d-flex a {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    font-size: 12px;
}


body.in-app .menu__wrap .d-flex {
    flex: 1; /* Растягивает элементы равномерно */
    text-align: center; /* Центрирование текста по желанию */
    border: 1px solid #000; /* Для наглядности */
    align-items: center;
    justify-content: center;
}

body.in-app #cart-total-mobile {
    display: block;
    position: absolute;
    right: auto;
    left: 16px;
    top: 3px;
    min-width: 18px;
    min-height: 18px;
    line-height: 18px;
    background-color: #D14507;
    color: #ffffff;
    padding: 0px 4px;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    font-weight: 400;
    font-size: 14px;
}

.d-flex {
    display: flex;
}

.top__wrap {
    justify-content: space-between;
    margin-top: 25px;
}

.title__wrap {
    flex-direction: column;
}

body.in-app .dropdown.myaccount {
    margin-top: 6px;
}

body.in-app .header-container {
    background-color: #000;
    padding-top: 5px;
}

body.in-app .header-container > .container {
    border-bottom: 1px solid rgba(0, 0, 0, .2);
    border-top: 1px solid rgba(0, 0, 0, .2);
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
}

body.in-app header .dropdown.myaccount > a {
    background-image: url('../image/codezeel/app/account.svg');
    background-size: contain;
}

body.in-app .nav-container, body.in-app .header-cart, body.in-app .header-main .input-group {
    display: none;
}

body.in-app .content-top .main-slider {
  display: none;
}

body .content-top .mobile-banner {
  display: none;
}

body.in-app .content-top .mobile-banner {
  display: block;
}

:root {
    --hue: 223;
    --bg: hsl(var(--hue),10%,90%);
    --fg: hsl(var(--hue),10%,10%);
    --primary: #D14507;
    --trans-dur: 0.3s;
}
.preloader {
    position: absolute;
    background-color: #fff;
    width: 100%;
    height: 100vh;
    z-index: 99;
    align-items: center;
    justify-content: center;
    display: none;
    text-align: center;
    flex-direction: column;
}
.preloader__text {
    position: relative;
    height: 1.5em;
}
.preloader__msg {
    animation: msg 0.3s 13.7s linear forwards;
}
.preloader__msg--last {
    animation-direction: reverse;
    animation-delay: 14s;
    visibility: hidden;
}
.cart {
    display: block;
    margin: 0 auto 1.5em auto;
    width: 8em;
    height: 8em;
}
.cart__lines,
.cart__top,
.cart__wheel1,
.cart__wheel2,
.cart__wheel-stroke {
    animation: cartLines 2s ease-in-out infinite;
}
.cart__lines {
    stroke: var(--primary);
}
.cart__top {
    animation-name: cartTop;
}
.cart__wheel1 {
    animation-name: cartWheel1;
    transform: rotate(-0.25turn);
    transform-origin: 43px 111px;
}
.cart__wheel2 {
    animation-name: cartWheel2;
    transform: rotate(0.25turn);
    transform-origin: 102px 111px;
}
.cart__wheel-stroke {
    animation-name: cartWheelStroke
}
.cart__track {
    stroke: hsla(var(--hue),10%,10%,0.1);
    transition: stroke var(--trans-dur);
}

/* Dark theme */
@media (prefers-color-scheme: dark) {
    :root {
        --bg: hsl(var(--hue),10%,10%);
        --fg: hsl(var(--hue),10%,90%);
    }
    .cart__track {
        stroke: hsla(var(--hue),10%,90%,0.1);
    }
}

/* Animations */
@keyframes msg {
    from {
        opacity: 1;
        visibility: visible;
    }
    99.9% {
        opacity: 0;
        visibility: visible;
    }
    to {
        opacity: 0;
        visibility: hidden;
    }
}
@keyframes cartLines {
    from,
    to {
        opacity: 0;
    }
    8%,
    92% {
        opacity: 1;
    }
}
@keyframes cartTop {
    from {
        stroke-dashoffset: -338;
    }
    50% {
        stroke-dashoffset: 0;
    }
    to {
        stroke-dashoffset: 338;
    }
}
@keyframes cartWheel1 {
    from {
        transform: rotate(-0.25turn);
    }
    to {
        transform: rotate(2.75turn);
    }
}
@keyframes cartWheel2 {
    from {
        transform: rotate(0.25turn);
    }
    to {
        transform: rotate(3.25turn);
    }
}
@keyframes cartWheelStroke {
    from,
    to {
        stroke-dashoffset: 81.68;
    }
    50% {
        stroke-dashoffset: 40.84;
    }
}

.app__search {
    display: none;
}

body.in-app .app__search {
    display: flex;
}

body.in-app #search {
    width: 100%;
    margin-right: 0;
    margin-top: 10px;
}

body.in-app #search .input-lg {
    border-bottom-right-radius: 0;
    border-top-right-radius: 0;
    height: 39px;
    border: 0;
    background-color: #F0F0F0;
}

body.in-app #search .input-group-btn {
    width: auto;
}

body.in-app #search .btn {
    display: flex;
    height: 100%;
    align-items: center;
    justify-content: center;
}

body.in-app #search .d-flex {
    width: 100%;
    display: flex;
}

body.in-app .nav-responsive{
    display: none;
}

body {
    color: #666666;
    font-family: 'Heebo', sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 26px;
    letter-spacing: 0.5px;
    background-color: #f0f0f0;
    -webkit-font-smoothing: antialiased;
}
/*:focus{outline:none !important;}*/
h1, h2, h3, h4, h5, h6 {
    color: #333;
}
/* default font size */
.fa {
    font-size: 14px;
}
.fa-stack{width: 12px;
    font-size: 8px;
}
.fa-stack .fa{ font-size:12px; color: #dedddc; }
/* Override the bootstrap defaults */
h1 {
    font-size: 33px;
}
h2 {
    font-size: 27px;
}
h3 {
    font-size: 21px;
}
h4 {
    font-size: 15px;
}
h5 {
    font-size: 12px;
}
h6 {
    font-size: 10.2px;
}
a {
    color: #000000;
}
a:hover {
    text-decoration: none;
}
legend {
    font-size: 18px;
    padding: 7px 0px
}
label {
    font-size: 14px;
    font-weight: 500;
    color: #222222;
}
h1, h2, h3, h4, h5, h6 {
    color: #262626;
}
select.form-control, textarea.form-control, input[type="text"].form-control, input[type="password"].form-control, input[type="datetime"].form-control, input[type="datetime-local"].form-control, input[type="date"].form-control, input[type="month"].form-control, input[type="time"].form-control, input[type="week"].form-control, input[type="number"].form-control, input[type="email"].form-control, input[type="url"].form-control, input[type="search"].form-control, input[type="tel"].form-control, input[type="color"].form-control {
    font-size: 14px;
}
.input-group input, .input-group select, .input-group .dropdown-menu, .input-group .popover {
    font-size: 14px;
}
.input-group .input-group-addon {
    font-size: 14px;
    height: 30px;
}

/* Fix some bootstrap issues */
span.hidden-xs, span.hidden-sm, span.hidden-md, span.hidden-lg {
    display: inline;
}
span.hidden-xs, span.hidden-sm, span.hidden-md, span.hidden-lg {
    display: inline-block !important;
}
.nav-tabs {
    margin-bottom: 15px;
}
div.required .control-label:before {
    content: '* ';
    color: #F00;
    font-weight: bold;
}
/* Gradent to all drop down menus */
.dropdown-menu li > a:hover {
    text-decoration: none;
    color: #888;
}
/* top */

.lang-curr {
    margin: 0px;
    float: left;
    padding: 8px 0px 8px 0px;
}
.lang-curr .pull-left {
    padding-right: 0;
    width: 100%;
    border-top: 1px solid #dddddd;
    text-align: left;
}
#form-language, #form-currency {
    padding: 0px;
    margin-right: 0px;
    margin-bottom: 12px;
    margin-top: 10px;
}
#form-currency {
    margin-bottom: 2px;
}
#form-currency .btn-link,
#form-language .btn-link {
    padding: 3px 0;
    text-transform: uppercase;
    font-weight: 500;
    font-size: 14px;
    line-height: 26px;
    text-decoration: none;
    color: #000000;
    border: none;
    float: none;
    letter-spacing: 0.5px;
}
#form-language img {
    vertical-align: inherit;
    padding-right: 3px;
}
.lang-curr .pull-left ul {
    padding: 0px;
}
.lang-curr .pull-left li {
    display: inline-block;
    vertical-align: top;
}
#form-currency .currency-menu li .btn-link,
#form-language .language-menu li .btn-link {
    padding: 0px 15px 0px 0px;
    font-weight: normal;
    text-transform: capitalize;
    line-height: initial;
    font-size: 14px;
    display: block;
    margin: 5px 0px 5px;
    color: #555555;
}
#form-currency .currency-menu li .btn-link {
    border: 1px solid #dddddd;
    padding: 4px 12px;
    margin: 4px 2px 0px;
    border-radius: 5px;
    -webkit-border-radius: 5px;
}

.lang-curr .fa{ padding-left: 3px; }

.fa-caret-down{vertical-align:middle; color: #b2b2b2; margin:0 0 0 2px;}
.lang-curr .fa{ padding-left: 3px; }
header .language-selector .expand-more {
    padding: 0 15px 0 0;
    border-right: 1px solid #ededed;
}
header .currency-selector .expand-more {
    padding: 15px 0 15px 0;
}
.fa-caret-down{vertical-align:middle; color: #b2b2b2; margin:0 0 0 2px;}


header .btn-link, header li, header a {
    text-decoration: none;
    color: #666666;
}
header li{
    list-style: none;
}


/* header cms start*/

#top-links li,.header-search li{padding:0; list-style:none}
header .btn-link:hover,header .btn-link:focus, #top-links a:hover,  #top-links a:focus{
    color: #888;
    background:none;
    text-decoration:none
}
#top-links .dropdown-menu a {
    text-shadow: none;
}
#top-links .dropdown-menu a:hover,#top-links .dropdown-menu a:focus {
    color: #888;
}
#top .btn-link strong {
    font-weight: normal;
}
#top-links {
    padding-top: 0px;
}
#top-links a + a {
    margin-left: 15px;
}

#top-links ul.list-inline{float:left; margin-top:2px; margin-right: 5px;}

#top-links ul.list-inline li{  padding:0 15px 0 8px; font-weight:300}

#form-currency .currency-menu li .btn-link:hover,
#form-language .language-menu li .btn-link:hover {
    color: #D14507;
    border-color: #D14507;
}

#form-currency .btn-link strong{font-weight:normal; }
.dropdown.myaccount a{color:#888888; }
.dropdown.myaccount a:hover {
    color: #D14507;
}
.dropdown.myaccount .fa{ padding-left: 3px;}
.dropdown.myaccount {
    margin: 30px 26px 0px 40px;
    float: right;
}
.dropdown.myaccount .myaccount-menu {
    margin: 0px 0px;
    padding: 12px 20px;
    right: 0;
    left: auto;
    top: 68px;
    border: 1px solid #dddddd;
    text-align: left;
    min-width: 265px;
    border-radius: 5px;
    -webkit-border-radius: 5px;
}
.dropdown.myaccount .myaccount-menu li a {
    text-transform: capitalize;
    padding: 3px 0px;
    margin-bottom: 1px;
    display: block;
    color: #555555;
    font-size: 14px;
}
.dropdown.myaccount .myaccount-menu li a:hover { color: #D14507;}

/* logo */

.header-logo {
    margin: 35px 0px 35px;
    float: left;
    max-width: 300px;
    position: relative;
    z-index: 9;
}
.header-search{float:left;}
.header-cart {
    position: relative;
    text-align: center;
    width: auto;
    margin: 32px 0px 0px 19px;
    z-index: 9;
    float: right;
}
.header-main {
    display: block;
    float: left;
    position: relative;
    width: 100%;
    clear: both;
}

.col-sm-3.sort{width:33.1%; padding:0;}
.searchbar .col-sm-3.sort { padding:0 15px; width:25%; }

.col-sm-3.sort select.form-control{
    padding: 10px 33px;
    height: 40px;
    text-transform: capitalize;
    background-color:#fff;
    color:#262626;
    border:none;
    overflow:hidden;
    border-radius: 20px 0 0 20px;
    -webkit-border-radius: 20px 0 0 20px;
    left:15px;
}

.head-right-bottom {
    position: relative;
}

#logo {
    text-align: left;
}

/* search */

#search {
    float: right;
    width: 38.34%;
    margin: 34px 55px 0px 0px;
}
#search .search_button {
    display: none;
    font-size: 0;
    padding: 0;
    text-align: center;
    cursor: pointer;
    z-index: 9;
    height: 30px;
    width: 30px;
    background-image: url(../image/codezeel/search.svg);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 18px;
    background-color: transparent;
}
#searchbox { position: relative; }
#search .input-lg {
    padding: 6px 60px 6px 22px;
    font-weight: 400;
    width: 100%;
    background-color: #f0f0f0;
    color: #777777;
    font-size: 14px;
    height: 40px;
    text-transform: capitalize;
    border: 1px solid #f0f0f0;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    letter-spacing: 0.3px;
}
#search .input-lg::placeholder {
    color: #aaa;
}
#search .search_toggle .input-group-btn .btn-lg {
    display: block;
    position: absolute;
    right: 0px;
    font-size: 0px;
    font-weight: 400;
    color: #fff;
    border: 0;
    text-transform: capitalize;
    padding: 0px;
    background-image: url(../image/codezeel/btn-search.svg);
    background-repeat: no-repeat;
    background-position: 15px 11px;
    background-size: 17px;
    background-color: #D14507;
    height: 40px;
    width: 48px;
    border-radius: 0px 5px 5px 0px;
    -webkit-border-radius: 0px 5px 5px 0px;
}
#search .search_toggle .btn-lg .fa {
    font-size: 0px;
    display: none;
}
.show-result {
    overflow: hidden;
}
.header-search .show-result > li {
    margin-bottom: 10px;
    overflow: hidden;
    position: relative;
    width: 100%;
}
.product-search #content > p{margin-top:10px;}

header .dropdown.myaccount > a {
    float: left;
    text-align: left;
    position: relative;
    color: #ffffff;
    cursor: pointer;
    line-height: 22px;
    margin-top: 4px;
    transition: none;
    background-image: url(../image/codezeel/user.svg);
    background-repeat: no-repeat;
    background-position: left 3px;
    background-size: 34px;
    padding-left: 42px;
    background-color: transparent;
    height: 40px;
}
header .dropdown.myaccount:hover > a {
    background-image: url(../image/codezeel/user-hover.svg);
}
header .dropdown.myaccount .account_title {
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    color: #ffffff;
    display: block;
}
header .dropdown.myaccount:hover .account_title {
    color: #D14507;
}
header .dropdown.myaccount .account_text,
header .dropdown.myaccount .acc_wel_text {
    display: block !important;
    font-size: 13px;
    color: #cccccc;
    line-height: 20px;
}
header .dropdown.myaccount .account_desc {
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 0.6px;
    line-height: 24px;
    color: #888;
}
header .dropdown.myaccount a .fa {
    display: none;
}
header {
    min-height: 163px;
    clear: both;
}
.header-container {
    z-index: 5;
    background-color: #000000;
}
header .header-top-inner {
    position: relative;
    clear: both;
    background-color: #D14507 !important;
}
.header-container .row{ margin: 0px; }
.header-container.smaller{z-index:999;}
.header-logo img{
    max-width:100%;
    width: 80px;
    text-align: center;
    display: inline;
}
.hed-right-top {
    position: relative;
    width: 100%;
    transition: all 300ms linear 0s;
    -webkit-transition: all 300ms linear 0s;
    -moz-transition: all 300ms linear 0s;
    -ms-transition: all 300ms linear 0s;
    -o-transition: all 300ms linear 0s;
    margin: 0px;
    opacity: 1;
    filter: alpha(opacity=100);
}
.btn-group.btn-block .cart_heading {
    text-decoration: none;
    padding: 0;
    color: #ffffff;
    cursor: pointer;
    text-transform: capitalize;
    font-size: 14px;
    font-weight: 400;
    padding-left: 42px;
    display: block;
    text-align: left;
    transition: none;
    line-height: 25px;
    letter-spacing: 0.4px;
    padding-top: 1px;
}
.btn-group.btn-block .cart_heading:before {
    content: "";
    position: absolute;
    display: block;
    height: 35px;
    width: 30px;
    left: 0px;
    top: 8px;
    background-image: url(../image/codezeel/head-cart.svg);
    background-repeat: no-repeat;
    background-position: left 0px;
    background-size: 31px;
    background-color: transparent;
}
#cart:hover .cart_heading:before {
    background-image: url(../image/codezeel/head-cart-hover.svg);
}
.btn-group.btn-block > .btn {
    color: #ffffff;
    display: block;
    font-weight: 600;
    font-size: 14px;
    line-height: 26px;
    padding: 0;
    overflow: hidden;
    padding-left: 42px;
    background: none;
}
.btn-group.btn-block #cart-quantity {
    display: block;
    position: absolute;
    right: auto;
    left: 16px;
    top: 3px;
    min-width: 18px;
    min-height: 18px;
    line-height: 18px;
    background-color: #D14507;
    color: #ffffff;
    padding: 0px 4px;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    font-weight: 400;
    font-size: 14px;
}
#cart-total {
    color: #cccccc;
    text-transform: capitalize;
    display: block;
    font-size: 13px;
    line-height: 16px;
    font-weight: 400;
    letter-spacing: 0.3px;
    position: relative;
}

.btn-group.btn-block > .btn .fa{display:none}

header .btn-group.btn-block li a, header .btn-group.btn-block li {color:#222222;}

#cart.open > .btn {
    color: #fff;
    box-shadow: none;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    text-shadow: none;
}
#cart.open > .btn:hover {
    color: #fff;
}
.btn-group.btn-block .dropdown-menu {
    background: #fff;
    z-index: 1001;
}
.btn-group.btn-block .dropdown-menu {
    position: absolute;
    overflow: hidden;
    top: 66px;
    margin-top: 0px;
    z-index: 100;
    height: auto;
    background: white;
    border: 1px solid #dddddd;
    width: 310px;
    padding: 8px 0px;
    left: auto;
    border-radius: 5px;
    -webkit-border-radius: 5px;
}
.btn-group.btn-block .dropdown-menu strong {
    font-weight: 500;
    color: #222222;
    font-size: 15px;
}
.btn-group.btn-block .dropdown-menu li{float:none; padding: 10px 10px;}

/* cart menu scrollbar css */

.btn-group.btn-block .dropdown-menu li:first-child {
    max-height: 120px;
    overflow-y: auto;
    padding-top: 0px;
    scrollbar-color: #999 #ccc;
    scrollbar-width: thin;
}
.btn-group.btn-block .dropdown-menu li:first-child::-webkit-scrollbar {
    height: 4px;
    width: 4px;
}
.btn-group.btn-block .dropdown-menu li:first-child::-webkit-scrollbar-thumb {
    border: 4px solid #999;
}
.btn-group.btn-block .dropdown-menu li:first-child::-webkit-scrollbar-track {
    background: #cccccc;
}

/* end cart menu scrollbar css */

.btn-group.btn-block .dropdown-menu li + li {
    border-top: 1px solid #dddddd;
}

.btn-group.btn-block .button-container {
    width: auto;
    float:right;
}
.btn-group.btn-block .dropdown-menu table {
    margin-bottom: 10px;
    border: none;
    display: inline-table;
}

.btn-group.btn-block .dropdown-menu table td { border:none; background:none; padding:5px 5px; }
.btn-group.btn-block .dropdown-menu table td.text-right {
    color: #000000;
    font-weight: 500;
    font-size: 16px;
}
.btn-group.btn-block .dropdown-menu table.total-table td{border:medium none;}

.btn-group.btn-block .dropdown-menu li p {
    margin:20px auto;
    color:#888;
}
.content-bottom > .container{width:100%; background-color: #fff;}

.common-home .alert {margin-bottom:20px}

/* menu */

.nav-container {
    margin-bottom: 0px;
    text-align: left;
    padding: 0px 0px 0px 31px;
    float: left;
    width: 74%;
}
.nav-responsive { display:none;}

@keyframes slide-down {
    0% {
        transform: translateY(-100%);
    }
    100% {
        transform: translateY(0);
    }
}
@-webkit-keyframes fixedAnim {
    0% {
        top: -100%
    }
    100% {
        top: 0
    }
}
@-moz-keyframes fixedAnim {
    0% {
        top: -100%
    }
    100% {
        top: 0
    }
}
@keyframes fixedAnim {
    0% {
        top: -100%
    }
    100% {
        top: 0
    }
}

@media(max-width: 991px) {
    nav.nav-container.fixed {
        position: fixed;
        top: 0;
        left:0;
        width: 100%;
        z-index: 999;
        -moz-box-shadow: 0 2px 6px rgba(0,0,0,0.2);
        -webkit-box-shadow: 0 2px 6px rgba(0,0,0,0.2);
        box-shadow: 0 2px 6px rgba(0,0,0,0.2);
        animation: 0.9s ease 0s normal both 1 running fixedAnim;
        -webkit-animation: 0.9s ease 0s normal both 1 running fixedAnim;
        -moz-animation: 0.9s ease 0s normal both 1 running fixedAnim;
        -o-animation: 0.9s ease 0s normal both 1 running fixedAnim;
    }
    nav.nav-container.fixed #res-menu {
        border-radius: 0;
    }
    nav.nav-container.fixed > .main-menu ul > li > a, nav.nav-container.fixed > .hiden_menu li > a{ padding-top: 17px; padding-bottom:  17px; }
}

@media(min-width: 992px) {
    header .header-container.fixed {
        position: fixed;
        top: 0;
        left:0;
        width: 100%;
        z-index: 999;
        -moz-box-shadow: 0 4px 16px rgb(0 0 0 / 29%);
        -webkit-box-shadow: 0 4px 16px rgb(0 0 0 / 29%);
        box-shadow: 0 4px 16px rgb(0 0 0 / 29%);
        animation: 0.9s ease 0s normal both 1 running fixedAnim;
        -webkit-animation: 0.9s ease 0s normal both 1 running fixedAnim;
        -moz-animation: 0.9s ease 0s normal both 1 running fixedAnim;
        -o-animation: 0.9s ease 0s normal both 1 running fixedAnim;
        background-color: #000000;
    }
    header .header-container.fixed #res-menu {
        border-radius: 0;
    }
    header .header-container.fixed > .main-menu ul > li > a, header .header-container.fixed > .hiden_menu li > a{ padding-top: 17px; padding-bottom:  17px; }
    header .header-container.fixed .header-logo {
        margin-top: 20px;
        margin-bottom: 20px;
        max-width: 180px;
    }
    header .header-container.fixed .header-cms-block {
        margin-top: 18px;
    }
    header .header-container.fixed #search {
        margin-top: 18px;
    }
    header .header-container.fixed #form-language .dropdown-menu,
    header .header-container.fixed #form-currency .dropdown-menu {
        top: 43px;
    }
    header .header-container.fixed .dropdown.myaccount {
        margin-top: 12px;
    }
    header .header-container.fixed .header-cart {
        margin-top: 14px;
    }
    header .header-container.fixed .btn-group.btn-block .dropdown-menu {
        top: 58px;
    }
    header .header-container.fixed .dropdown.myaccount .myaccount-menu {
        top: 60px;
    }
}
.responsive-menu,
.main-menu {
    height: auto;
    border-radius: 0px;
    padding: 0px ;
    display:none;
    /*overflow:hidden; HIDE CATEGORIES THOSE ARE OUT OF MANU.  */
}

.main-menu ul {
    list-style: none;
    margin: 0;
    padding: 0;
}
#menu ul li .megamenu ul.list-unstyled {
    padding: 0px 15px 0px 0px ;
}
#menu ul li .megamenu ul.list-unstyled:last-child{ padding-right: 0px; }
#menu > ul {
    display: block !important;
    text-align: left;
}
#menu ul {
    display: table-cell;
    float: none;
    list-style: outside none none;
    margin: 0;
    top: auto;
    padding:0;
}
.main-menu > ul > li {
    position: relative;
    float: none;
    display: inline-block;
    background-color:transparent;
}
.main-menu > ul > li:first-child {
    margin-left: 0;
}
.main-menu > ul > li:last-child .dropdown-menu {
    right: 0;
    left: auto;
}
.nav-container .main-menu .dropdown .dropdown-menu ul.list-unstyled.childs_2 a:after {
    background-image: none;
    height: auto;
    width: auto;
}
.main-menu > ul > .dropdown ul > li > a:before {
    content: "";
    border-bottom: 1px solid #dddddd;
    bottom: 0px;
    float: left;
    height: 1px;
    position: absolute;
    width: 50%;
}
.nav-responsive span,
.main-menu > ul > li > a {
    font-size: 14px;
    line-height: 26px;
    font-weight: 600;
    color: #222222;
    display: block;
    padding: 20px 20px;
    margin-bottom: 0px;
    z-index: 3;
    position: relative;
    text-transform: uppercase;
}
.main-menu ul > li > a, .hiden_menu li > a {
    padding: 12px 12px;
    font: 500 14px/26px 'Heebo', sans-serif;
    color: #ffffff;
    display: block;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    width: auto;
    position: relative;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
    margin: 0px 16px;
    outline: 0px;
}
.main-menu ul > li:first-child > a {
    margin-left: 0px;
}
.main-menu ul > li > a:hover {
    color: #fff;
    text-decoration: none;
}
.main-menu ul > li > a:hover:before {
    width: 100%;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
}
.main-menu ul > li > a:after {
    content: "";
    position: absolute;
    top: 13px;
    right: -15px;
    height: 24px;
    width: 2px;
    background: black;
}
.main-menu ul > li:last-child > a:after {
    background: none;
}
.main-menu > ul > .dropdown .megamenu.column1 ul > li.dropdown > a::after{
    font-family:'FontAwesome';
    content:'\f105';
    position:absolute;
    color:#999999;
    right:-5px;
    font-size:14px;
}
.main-menu > ul > .dropdown .megamenu ul > li.dropdown > a::after,
.main-menu .hiden_menu .dropdown > a::after{content:none;}


.main-menu a:hover { text-decoration:none}

.main-menu > ul > li > ul , .responsive-menu .main-navigation{
    background: #fff none repeat scroll 0 0;
    border-bottom: 1px solid #e5e5e5;
    border-left: 1px solid #e5e5e5;
    border-right: 1px solid #e5e5e5;
    display: none;
    padding: 5px;
    position: absolute;
    z-index: 5;
}
.main-menu > ul > li:hover > ul {
    display: block;
}
.main-menu > ul > li ul > li > ul {
    display: none;
    background: #15BCF0;
    position: absolute;
    z-index: 5;
    padding: 5px;
    margin-left:-13px;
}
.main-menu > ul > li ul > li:hover > ul {
    display: block;
    top: 0px;
    left: 173px;
}
#menu ul.nav li .megamenu.column1 ul.list-unstyled > li.dropdown .dropdown-menu {
    display: none;
    left: 200px;
    padding: 15px 0;
    position: absolute;
    top: 0;
    border: 1px solid #e5e5e5;
}
.main-menu > ul > li ul > li > a {
    color: #262626;
    display: block;
    white-space: nowrap;
}
.responsive-menu .main-navigation li a {
    padding: 7px;
    color: #262626;
    display: block;
    white-space: normal;
}
#menu ul li .megamenu.column1 a{ font-weight: 400; }

/* #menu ul li .megamenu.column1 a:hover,
.main-menu ul > li.dropdown:hover > a{color:#D14507;} */
.main-menu > ul > li ul > li > .dropdown-inner ul li a{color:#adadad;}
.main-menu > ul > li ul > li > a{min-width: 160px;}
.main-menu > ul > .dropdown ul > li > a, .hiden_menu .top_level > a {
    color: #D14507;
    font-size: 15px;
    padding: 0 0 10px;
    margin-bottom: 0px;
    font-weight: 500;
}
.main-menu ul li ul .list-unstyled a{font-weight:normal; color:#666; text-transform:capitalize; padding: 4px 0; font-size: 14px; margin: 0px;}
.main-menu > ul > li ul > li > a:hover  , .responsive-menu .main-navigation li a:hover  {
    color: #D14507;
}
#menu ul li .megamenu.column1  li > a,
.main-menu > ul > li > ul > ul > li > a {
    color: #666666;
    padding: 0;
    text-transform: capitalize;
}

#menu ul li .megamenu.column1  li > a:before,
.main-menu ul li ul .list-unstyled a:before{ display: none; margin-bottom: 0px; }

#menu ul.nav li .megamenu.column1 ul.list-unstyled > li.dropdown:hover > .dropdown-menu {
    display: block;
}
#menu .nav li .list-unstyled .dropdown {
    float: left;
}
#menu .dropdown .dropdown-menu {
    padding:20px 20px;
    border: 1px solid #ddd;
    background: #ffffff;
    opacity: 0;
    filter: alpha(opacity=0);
    transform: scale(0, 0);
    -moz-transform: scale(0, 0);
    -ms-transform: scale(0, 0);
    -o-transform: scale(0, 0);
    -webkit-transform: scale(0, 0);
    transform-origin: 20% 20% 0;
    -ms-transform-origin: 20% 20% 0;
    -webkit-transform-origin: 20% 20% 0;
    -o-transform-origin: 20% 20% 0;
    -moz-transform-origin: 20% 20% 0;
    transition: all 0.3s ease 0s;
    -webkit-transition: all 0.3s ease 0s;
    -moz-transition: all 0.3s ease 0s;
    -ms-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    visibility: visible !important;
    display:block;
    text-align: left;
}
#menu ul li.hiden_menu .dropdown-menu {
    opacity: 0;
    filter: alpha(opacity=0);
    display:block;
    transform: scale(0, 0);
    -moz-transform: scale(0, 0);
    -ms-transform: scale(0, 0);
    -o-transform: scale(0, 0);
    -webkit-transform: scale(0, 0);
    transform-origin: 20% 20% 0;
    -ms-transform-origin: 20% 20% 0;
    -webkit-transform-origin: 20% 20% 0;
    -o-transform-origin: 20% 20% 0;
    -moz-transform-origin: 20% 20% 0;
    transition: all 0.3s ease 0s;
    -webkit-transition: all 0.3s ease 0s;
    -moz-transition: all 0.3s ease 0s;
    -ms-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    visibility: visible !important;
}
#menu ul.nav li .megamenu ul.list-unstyled li .dropdown-menu {
    border: medium none;
    margin: 0;
    padding: 5px 0;
    position: relative;
}

#menu ul li .megamenu.column1, #menu ul li.hiden_menu .dropdown-menu{
    padding: 10px 0;
}
.hiden_menu .dropdown-menu{min-width:215px;}
#menu ul li .megamenu.column1 ul.list-unstyled {
    padding: 0;
}
#menu ul li .megamenu.column1 ul.list-unstyled li, .hiden_menu li.top_level {
    float: left;
    padding: 3px 20px;
    width:100%;
}
#menu li.hiden_menu:hover .dropdown-menu.megamenu{display:none;}

.hiden_menu .top_level > a{color:#262626;}

@media (min-width: 768px) {
    #menu li:hover .dropdown-menu, #menu ul li.hiden_menu:hover .dropdown-menu {
        opacity: 1;
        filter: alpha(opacity=100);
        transform: scale(1, 1);
        -ms-transform: scale(1, 1);
        -o-transform: scale(1, 1);
        -moz-transform: scale(1, 1);
        -webkit-transform: scale(1, 1);
        visibility: visible;
    }
}
@media (max-width: 767px) {
    #menu div.dropdown-inner > ul.list-unstyled {
        display: block;
    }
    #menu div.dropdown-menu {
        margin-left: 0 !important;
        padding-bottom: 10px;
        background-color: rgba(0, 0, 0, 0.1);
    }
    #menu .dropdown-inner {
        display: block;
    }
    #menu .dropdown-inner a {
        width: 100%;
        color: #fff;
    }
    #menu .dropdown-menu a:hover,
    #menu .dropdown-menu ul li a:hover {
        background: rgba(0, 0, 0, 0.1);
    }
    #menu .see-all {
        margin-top: 0;
        border: none;
        border-radius: 0px;
        color: #fff;
    }
}

/* header menu slide function responsive css */

@media (max-width: 991px) {
    body.menu-open {
        position: relative;
        width: 100%;
        overflow: hidden;
        height: 100%;
    }
    body.menu-open:before {
        content: "";
        background: #000;
        opacity: 0.7;
        filter: alpha(opacity=70);
        position: absolute;
        left: 300px;
        height: 100%;
        width: calc(100% - 300px);
        top: 0;
        z-index: 99999;
        overflow: hidden;
        -webkit-transition: all 0.5s ease;
        -moz-transition: all 0.5s ease;
        -o-transition: all 0.5s ease;
        transition: all 0.5s ease;
    }
    header .responsive-menu .main-navigation {
        position: fixed;
        z-index: 9999;
        display: block;
        margin-top: 0px;
        padding: 0px 10px 10px;
        width: 300px;
        height: 100%;
        max-height: initial;
        background-color: #ffffff;
        list-style: none;
        overflow: auto;
        left: -100%;
        top: 0;
        border: 1px solid #ededed;
        -webkit-box-shadow: 0 8px 15px 0 rgb(0 0 0 / 10%);
        box-shadow: 0 8px 15px 0 rgb(0 0 0 / 10%);
        -webkit-transition: all 0.3s ease 0s;
        -moz-transition: all 0.3s ease 0s;
        -o-transition: all 0.3s ease 0s;
        transition: all 0.3s ease 0s;
    }
    header .responsive-menu.open .main-navigation {
        left: 0px;
        -webkit-transition: all 0.3s ease;
        -moz-transition: all 0.3s ease;
        -o-transition: all 0.3s ease;
        transition: all 0.3s ease;
    }
    header .responsive-menu.open .main-navigation .menu.expandable {
        border-bottom: 1px solid #dfdfdf;
        margin-bottom: 10px;
        padding: 10px 0px 10px 30px;
        position: sticky;
        background-color: #fff;
        top: 0;
        z-index: 99;
        cursor: pointer;
    }
    header .responsive-menu.open .main-navigation .menu.expandable span {
        font-size: 15px;
        text-align: left;
        line-height: 26px;
        font-weight: 600;
        color: #222222;
        display: block;
        text-transform: capitalize;
    }
    header .responsive-menu.open .main-navigation .menu.expandable span:after {
        content: "";
        background-position: center;
        background-color: transparent;
        background-repeat: no-repeat;
        left: 5px;
        display: block;
        top: 10px;
        font-weight: 400;
        position: absolute;
        width: 17px;
        height: 26px;
        background-size: 16px;
        background-image: url(../image/codezeel/menu-close.svg);
    }
    header .nav-responsive .expandable.open {
        width: auto;
    }
    .nav-responsive .expandable:before {
        content: "";
        background-image: url(../image/codezeel/menu.svg);
        background-repeat: no-repeat;
        background-position: -1px 0px;
        background-color: transparent;
        background-size: 32px;
        width: 32px;
        height: 32px;
        position: absolute;
        left: 0px;
        top: 20px;
        z-index: 6;
    }
    header .nav-responsive .expandable.open:before {
        background-image: url(../image/codezeel/menu-close.svg);
        background-size: 17px;
        width: 18px;
        height: 18px;
        background-position: 0px 0px;
    }
}
/* end header menu slide function responsive css */

/* Codezeel Category CSS */

.home_row.row{ margin:0px; }
#column-left .box.category-left-box , #column-right .box.category-left-box  { margin-bottom: 30px !important; }
.catgory-left { width:24%; float:left; padding-right:30px; }
.category-left-box { border:1px solid #E0E0E0; border-top:none; background:#ffffff; margin:0 !important; }
.category-left-box .box-content { display:block; }
.category-left-box .box-content ul li a{
    transition: all 0.3s ease 0s;
    -webkit-transition:all 0.3s ease 0s;
    -moz-transition:all 0.3s ease 0s;
    -ms-transition:all 0.3s ease 0s;
    -o-transition:all 0.3s ease 0s;
}
.category-left-box .box-content > ul > li:hover > a{
    padding-left:15px;
    transition: all 0.3s ease 0s;
    -webkit-transition:all 0.3s ease 0s;
    -moz-transition:all 0.3s ease 0s;
    -ms-transition:all 0.3s ease 0s;
    -o-transition:all 0.3s ease 0s;
}

/* vertical menu css */

#verticalmenublock.box.category {
    margin-bottom: 0px;
    min-height: auto;
    float: left;
    width: 22.5%;
    border: 0px;
    padding: 0px;
    overflow: initial;
}
#verticalmenublock.box.category .box-heading {
    background-color: #D76943;
    padding: 12px 20px 12px;
    border: 0px;
    color: #ffffff;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 0px;
    cursor: pointer;
}
#verticalmenublock.box.category .box-heading:after {
    border-bottom: 0px;
    margin-top: 0px;
    margin-bottom: 0px;
    width: auto;
}
#verticalmenublock.box.category .dropdown-arrow {
    float: right;
    padding-top: 4px;
    line-height: initial;
}
#verticalmenublock.box.category .dropdown-arrow:before {
    content: "\f107";
    font-family: "FontAwesome";
    font-size: 18px;
    padding-left: 0px;
    font-weight: 400;
}
#verticalmenublock.box.category.open .dropdown-arrow:before {
    content: "\f106";
}
#verticalmenublock.box.category .box-content {
    background: #fff;
    width: 100%;
    margin: 18px 0px 0px 0px;
    position: absolute;
    padding-left: 0px;
    padding-right: 0px;
    padding-bottom: 10px;
    padding-top: 5px;
    border: 1px solid #e5e5e5;
    z-index: 5;
    opacity: 0;
    filter: alpha(opacity=0);
    visibility: hidden;
    display: block;
    transform: perspective(600px) scaleY(0);
    transform-origin: top center;
    transition: all 0.5s ease-in-out 0s;
    -webkit-transition: all 0.5s ease-in-out 0s;
    -moz-transition: all 0.5s ease-in-out 0s;
    -ms-transition: all 0.5s ease-in-out 0s;
    -o-transition: all 0.5s ease-in-out 0s;
    border-radius: 0px 0px 5px 5px;
    -webkit-border-radius: 0px 0px 5px 5px;
}
#verticalmenublock.box.category.open .box-content {
    visibility: visible !important;
    transform: perspective(600px) scale(1);
    transition: all 0.5s ease-in-out 0s;
    -webkit-transition: all 0.5s ease-in-out 0s;
    -moz-transition: all 0.5s ease-in-out 0s;
    -ms-transition: all 0.5s ease-in-out 0s;
    -o-transition: all 0.5s ease-in-out 0s;
    opacity: 1;
    filter: alpha(opacity=100);
}
#verticalmenublock.box.category .box-content:before {
    content: "";
    right: 10px;
    top: -20px;
    bottom: auto;
    position: absolute;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 5px 10px 0 10px;
    border-top: 5px solid transparent;
    border-bottom: 15px solid #ffffff;
    border-right: 15px solid transparent;
    border-left: 15px solid transparent;
}
#verticalmenublock.open .box-content {
    display: block;
}
#verticalmenublock.box.category .box-content ul li.top_level.main {
    padding: 0px 20px;
    cursor: pointer;
    color: #555555;
}
#verticalmenublock.box.category .box-content li.hiden_vertical_menu li.more-menu {
    padding: 12px 20px 5px;
    cursor: pointer;
    color: #333333;
}
#verticalmenublock.box.category .box-content li.hiden_vertical_menu li.more-menu:hover {
    color: #D14507;
}
#verticalmenublock.box.category .box-content li.hiden_vertical_menu li.more-menu:before {
    content: "\f107";
    font-family: 'FontAwesome';
    font-size: 20px;
    font-weight: normal;
    font-style: normal;
    float: right;
}
#verticalmenublock.box.category .box-content li.hiden_vertical_menu li.more-menu.active:before {
    content: "\f106";
}
#verticalmenublock.box.category .box-content ul li > a {
    color: #333333;
    padding: 12px 0px 12px 0px;
    -webkit-transition: all 0.5s ease 0s;
    -moz-transition: all 0.5s ease 0s;
    -o-transition: all 0.5s ease 0s;
    transition: all 0.5s ease 0s;
    border-bottom: 1px solid #e5e5e5;
}
#verticalmenublock.box.category .box-content ul li:hover > a {
    color: #D14507;
}
#verticalmenublock.box.category #nav-one li .megamenu ul.list-unstyled li > a {
    padding: 4px 0px 4px;
    margin-bottom: 2px;
    font-weight: 400;
    color: #333333;
    font-size: 14px;
    letter-spacing: 0.5px;
    text-transform: capitalize;
    min-width: 156px;
    border-bottom: 0px;
}
#verticalmenublock.box.category #nav-one li .megamenu ul.childs_1 li.dropdown > a {
    padding: 4px 0px 10px;
    margin-bottom: 0px;
    color: #D14507;
    font-size: 15px;
    font-weight: 500;
}
#nav-one li .megamenu ul.childs_1 .dropdown-menu ul li {
    padding: 0px;
}
#verticalmenublock.box.category #nav-one li .megamenu ul.list-unstyled li > a:hover {
    color: #D14507;
}
.box.category .box-content ul li:last-child:before {
    border: 0;
}
.box.category .box-content ul li.main .main,
#column-left .box .box-content ul li.main .main {
    padding: 12px 0px 12px 0px;
    width: 100%;
    display: block;
    color: #222222;
    line-height: 25px;
    text-transform: capitalize;
    font-size: 14px;
    font-weight: 400;
    float: none;
}
.box.category .box-content ul li.main span.main:before, #column-left .box .box-content ul li.main span.main:before {
    content: "";
    font-family: 'FontAwesome';
    font-size: 20px;
    content: "\F107";
    font-weight: normal;
    font-style: normal;
    float: right;
}
.box.category .box-content ul li.main span.main.active:before, #column-left .box .box-content ul li.main span.main.active:before {
    content: "\F106";
}
#column-left #nav-one li.hiden_vertical_menu .dropdown-inner .top_level.main {
    background: none;
    padding: 0;
}
.box.category .box-content ul li.main span.main:hover,
#column-left .box .box-content ul li.main .main:hover {
    color: #D14507;
}
#nav-one .dropdown:hover .dropdown-menu, #nav-one .hiden_menu:hover .dropdown-menu {
    display: block;
    opacity: 1;
    filter: alpha(opacity=100);
    -webkit-transform: scale(1,1);
    -ms-transform: scale(1,1);
    transform: scale(1,1);
    overflow: visible;
}
#nav-one .hiden_menu .dropdown-menu li.dropdown .dropdown-menu { display:none; }
#nav-one > li > .dropdown-menu {
    background: #ffffff;
    padding: 15px 20px 15px;
    left: 100%;
    top: 0px;
    overflow: hidden;
    clear: both;
    margin: 0px;
    border: 1px solid #e5e5e5;
    display: block !important;
    transform-origin: left center 0;
    -ms-transform-origin: left center 0;
    -webkit-transform-origin: left center 0;
    -webkit-transform: scale(0,1);
    -ms-transform: scale(0,1);
    transform: scale(0,1);
    border-radius: 0px 5px 5px 0px;
    -webkit-border-radius: 0px 5px 5px 0px;
    transition: all 500ms ease;
    -webkit-transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
}

#nav-one > li.dropdown:after,
#nav-one > li.hiden_menu:after{
    font-family: 'FontAwesome';
    content: '\f105';
    font-size: 18px;
    position: absolute;
    right: 20px;
    top: 10px;
}
#nav-one > li.dropdown:hover:after, #nav-one > li.hiden_menu:hover:after {
    color: #D14507;
}
#nav-one > li.dropdown .column1 ul .dropdown:after{
    font-family:'FontAwesome';
    content:'\f105';
    font-size:14px;
    position:absolute;
    right:5px;
    top:10px;
    transition: all 0.3s ease 0s;
    -webkit-transition:all 0.3s ease 0s;
    -moz-transition:all 0.3s ease 0s;
    -ms-transition:all 0.3s ease 0s;
    -o-transition:all 0.3s ease 0s;
}
#nav-one > li.hiden_menu > .dropdown-menu{padding:10px 0;}
.top_level.hiden_menu{position:relative;}
#nav-one li .megamenu ul.childs_1 {
    padding: 0px;
}
#nav-one li ul {
    display: table-cell;
    float: none;
    width: 210px;
}
#nav-one ul {
    display: inline-block;
    float: none;
    margin: 0 auto;
    text-align: left;
}
#nav-one li .megamenu ul.list-unstyled li > a, .hiden_menu .top_level a {
    background: rgba(0, 0, 0, 0) none repeat scroll 0 0;
    font-size: 13px;
    font-weight: 700;
    padding: 1px 8px;
}
#nav-one li .megamenu ul.list-unstyled li > a:before {
    content: "";
    position: absolute;
    border-bottom: 1px solid #dddddd;
    width: 50%;
    top: 35px;
}
#nav-one li .megamenu ul.list-unstyled li .dropdown-menu ul.list-unstyled li > a:before {
    border: none;
}
#nav-one li .megamenu.column1 ul.list-unstyled li > a:before {
    border: none;
}
#nav-one > li ul > li > a {
    min-width: 188px;
}
#nav-one li.hiden_vertical_menu .dropdown-inner .top_level.main a:hover {
    color: #D14507;
}
#nav-one li ul > li > a, .responsive-menu .main-navigation li a {
    color: #333333;
    display: block;
    font-size: 14px;
    white-space: nowrap;
}
#nav-one li.hiden_vertical_menu .dropdown-inner {
    display: none;
    margin: 0;
    width: auto;
}
#nav-one li.hiden_vertical_menu .dropdown-inner .top_level.main {
    padding: 0;
}
#nav-one li .megamenu ul.list-unstyled li .dropdown-menu {
    background: #fff none repeat scroll 0 0;
    margin: 0;
    padding: 10px 0px 0px;
    position: relative;
    width: 200px;
    border: none;
    display: block;
}
#nav-one li .megamenu ul.list-unstyled li:hover .dropdown-menu {
    display: block;
    -webkit-transform: scale(1,1);
    -ms-transform: scale(1,1);
    transform: scale(1,1);
    opacity: 1;
    filter: alpha(opacity=100);
    overflow: visible;
    -webkit-transition: all 500ms ease 0s;
    -moz-transition: all 500ms ease 0s;
    -o-transition: all 500ms ease 0s;
    transition: all 500ms ease 0s;
}
#nav-one li .megamenu ul.list-unstyled li .dropdown-menu ul.list-unstyled li > a {
    background: rgba(0, 0, 0, 0) none repeat scroll 0 0;
    color: #000000;
    display: inline-block;
    font-size: 13px;
    font-weight: 400;
    line-height: 1.5;
    margin-bottom: 0;
    position: relative;
    text-transform: capitalize;
    letter-spacing: 0.5px;
}
#nav-one li .megamenu ul.list-unstyled.childs_2 a {
    min-width: 145px;
}
#nav-one li .megamenu.column1 ul.childs_1 {
    border: medium none;
    padding: 0px 0px;
}
#nav-one li .megamenu.column1 ul.childs_1 > li {
    padding: 0px;
}
#nav-one li .megamenu.column1 ul.list-unstyled li > a, .hiden_menu .top_level > a {
    background: none;
    font-size: 14px;
    font-weight: 400;
    line-height: 23px;
    color: #333333;
    text-transform: none;
    padding: 2px 0;
    border: none;
    margin: 0px;
}
#nav-one li .megamenu.column1 ul.list-unstyled > li.dropdown .dropdown-menu {
    display: none;
    left: 188px;
    padding: 10px;
    position: absolute;
    top: 0;
}
#nav-one li .megamenu.column1 ul.list-unstyled > li.dropdown:hover > .dropdown-menu {
    display: block;
    padding:15px 30px;
    border:1px solid #e5e5e5;
}
#nav-one li .megamenu.column1 ul.list-unstyled > li.dropdown:hover > .dropdown-menu ul { min-width:190px; }
#nav-one li .megamenu.column1 ul.list-unstyled li:hover > a, #nav-one li .megamenu ul.list-unstyled li .dropdown-menu ul.list-unstyled li:hover > a, .hiden_menu .top_level:hover > a {
    color: #D14507;
}
.column_left_cms .box.last .list-group{
    border-bottom: medium none;
    margin-bottom:0;
    padding:4px 0 0;
}
/* Codezeel Category CSS */

@media (min-width: 768px) {
    #product-product .product-left {
        width: 52%;
    }
    #product-product .product-right {
        width: 48%;
    }
}
/* 1-col layout */

#column-left{
    width: 24.4%;
}
#column-right{
    width: 24.4%;
}
/* 2-col layout */

.layout-2.left-col #column-left {
    width: 24.4%;
}
.layout-2.right-col #column-right {
    width: 24.4%;
}
.layout-2 #content {
    width: 78.32%;
}
.layout-2.left-col #content {
    width: 75.6%;
}
.layout-2.right-col #content {
    width: 75.6%;
}

.layout-2 .content-bottom #content{width:100%; padding:0; margin-left:auto; margin-right:auto}

/* 3-col layout */
.layout-3 #column-left {
    width:24%;
}
.layout-3 #column-right {
    width:24%;
}
.layout-3 #content {
    width:52%;
    padding-top: 5px;
}

/* content */
#content {
    padding-top: 0px;
    padding-bottom: 0px;
    float: left;
    width: 100%;
}
.common-home #content {
    padding: 0px 0px 10px;
}
#product-category .breadcrumb {
    margin-top: 10px;
    margin-bottom: 17px;
}

/* footer */

footer {
    color: #cccccc;
    position: relative;
    margin-top: 20px;
    float: left;
    width: 100%;
    clear: both;
    background-color: #222222;
}
footer a {
    color: #cccccc;
}
#footer .column li a {
    cursor: pointer;
    line-height: 30px;
}
#footer .column li a:hover,#footer .column li a:focus {
    color:#D14507;
}
footer a:hover,footer a:focus {
    color: #ffffff;
}
#footer .block-social {
    display: inline-block;
    vertical-align: top;
    margin-top: 2px;
}
#footer .block-social ul {
    margin-bottom: 0px;
    padding: 0px;
}
#footer .block-social li {
    height: 35px;
    width: 35px;
    text-align: center;
    display: inline-block;
    vertical-align: top;
    margin-right: 4px;
    cursor: pointer;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
}
#footer .block-social li:hover {
    border-color: #D14507;
}
#footer .block-social li a {
    display: block;
    line-height: initial;
}
#footer .block-social li a span {
    display: none;
}
#footer .block-social li a:before {
    font-size: 20px;
    font-family: "FontAwesome";
    display: inline-block;
    font-weight: normal;
    height: 35px;
    width: 35px;
    color: #cccccc;
    line-height: 30px;
    padding-top: 4px;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
#footer .block-social li a:hover:before {
    color: #D14507;
}
#footer .block-social li a:after { display: none; }
.facebook a:before {
    content: "\F09A";
}
.twitter a:before {
    content: "\F099";
}
.youtube a:before {
    content: "\F16A";
}
.googleplus a:before {
    content: "\F0D5";
}
.instagram a:before {
    content: "\F16D";
}
.cz_newsletterdiv{
    display: inline-block;
    width: 67%;
    padding: 27px 115px 41px;
    background-color: #262626;
    margin-top: 0px;
}
.cz_newsletterdiv .newsletter { display: block; }

.newsletter .block_content .sub-title {
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 0.6px;
    display: inline-block;
    width: auto;
    color: #000;
    line-height: 22px;
    width: 80%;
    padding-bottom: 30px;
}
#column-left .newsletter .block_content, #column-right .newsletter .block_content {
    background: #ffffff;
    padding: 25px 15px;
    overflow: hidden;
    width: 100%;
    border: 1px solid #ededed;
    border-top: 0;
}
footer h5 {
    color: #ffffff;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    margin: 0px 0px 25px 0px;
    cursor: pointer;
    padding: 0px 0px 8px;
    position: relative;
}
#footer {
    top:auto;
    margin-top: 0px;
}
#footer .row {
    margin: 0;
}
#footer .footer-blocks .row {
    margin: 0 -15px;
}
footer .footer-before {
    position: relative;
    padding: 20px 0px;
    background: #D14507;
}
#footer #contact.col-sm-3.column .fa {
    clear: left;
    color: #fec107;
    float: left;
    font-size: 16px;
    margin-right: 10px;
    margin-top: 6px;
}
#footer #contact.col-sm-3.column .fa.fa-envelope {
    font-size: 12px;
    margin-top: 8px;
}
#footer #contact.col-sm-3.column { font-size:14px; }
#footer #contact.col-sm-3.column li a { background:none; padding:0; }
.address_content {
    overflow: hidden;
    padding-left:45px;
    padding-right:135px;
    background:rgba(0, 0, 0, 0) url("../image/codezeel/footer-icon.png") no-repeat scroll -8px 4px;
    margin-bottom:35px;
}
#contact .phone { background:url(../image/codezeel/footer-icon.png) no-repeat scroll -6px -66px transparent; padding-left:45px; margin-bottom:35px; padding-top:7px; }
#contact .email { background:url(../image/codezeel/footer-icon.png) no-repeat scroll -6px -132px transparent; padding-left:45px; }

#footer .column {
    width: 22%;
    float: left;
    padding-left: 15px;
    padding-right: 15px;
}
#footer .footerleft.column {
    width: 28%;
}
#footer .footerleft .contact-block ul {
    list-style: none;
    padding: 0;
}
.footer-blocks li {
    margin-bottom: 0.3125rem;
}
#footer .footerleft.column li {
    margin-bottom: 8px;
}
#footer .footerleft .contact-block ul li .fa {
    display: none;
}
#footer .footerright.column {
    width: 28%;
    padding-left: 50px;
}
#footer .footerright ul {
    list-style-type: none;
    padding-left: 0;
    margin-bottom: 0;
}
#footer .footerright ul {
    padding-right: 0;
}
#footer .footerright ul li .fa {
    padding-right: 2px;
    padding-left: 0;
}
#footer .footerright ul li .fa {
    color: #D14507;
    font-size: 15px;
    height: 25px;
    margin-top: 5px;
    width: 25px;
    padding-left: 2px;
    float: left;
}
#footer .footerright ul li {
    line-height: 26px;
    margin-bottom: 0px;
}
#footer .footerright ul li span {
    float: left;
}
#footer #contact.column h5 { display:none;  }

#footer .column:nth-child(1):after{
    height:100%;
}

#footer .column:nth-child(2):after{
    height:90%;
}

#footer .column:nth-child(3):after{
    height:90%;
}

#footer .column:nth-child(4):after{
    height:105%;
}

#contact ul,#aboutcms ul{list-style:none; padding:0}

#aboutcms h5{display:none}

.footer-logo {
    margin-bottom: 5px;
}
.newsletter .input-news {
    width: 100%;
    position: relative;
    overflow: hidden;
}
.input-news .text-danger {
    margin: 5px 0 0px;
    border: 0;
    padding: 5px 15px;
    font-size: 14px;
    text-align: left;
    background-color: #f2dede;
    border-color: #ebcccc;
    border-radius: 5px;
    -webkit-border-radius: 5px;
}
.subscribe-btn {
    position: absolute;
    right: 0px;
    top: 0px;
}
.newsletter .newsright {
    margin-top: 22px;
    position: relative;
}
.newsletter .form-grou {
    margin: 0;
    width: 100%;
    position: relative;
}
.newsletter label {
    display: none;
}
.newsletter #txtemail {
    border: none;
    padding: 10px 55px 10px 20px;
    width: 100%;
    color: #555555;
    text-align: left;
    background-color: #f0f0f0;
    border-radius: 5px 5px;
    -webkit-border-radius: 5px 5px;
}
.newsletter .form-control::placeholder{color:#999999;}
.subscribe-btn .btn.btn-lg {
    color: #ffffff;
    border: 0;
    font-size: 0px;
    font-weight: 500;
    text-transform: initial;
    height: 40px;
    width: 44px;
    padding: 0px;
    border-radius: 0px 5px 5px 0px;
    -webkit-border-radius: 0px 5px 5px 0px;
    background: url(../image/codezeel/btn-newsletter.png) no-repeat scroll 10px center;
    background-color: #D14507;
}
.newsletter .text-danger {
    border: 1px solid #ebcccc;
    padding: 6px 20px 4px;
    line-height: 24px;
}

#contact ul li,.newsletter ul li{line-height:22px;}

#contact li.call-num {
    margin-top: 15px;
}

.categoryblock {
    padding-left: 11px;
    padding-right: 11px;
    float:left;
    width:33.333%;
    margin-bottom:22px;
}

.category-cms{
    width: 100%;
    float: left;
    padding-bottom: 15px;
    padding-top: 0px;
    margin-bottom: 2px;
}

.category-container{
    position:relative;
    margin:0 auto;
    width:100%;
}

.category-row {
    margin-left: -11px;
    margin-right: -11px;
}

#aboutcms li.content {
    line-height: 25px;
}
.cate-heading{text-transform:uppercase; font-size:16px; color:#1e1f22; font-weight:700; float:left; margin-bottom: 15px;}

.category{padding:0px 20px; border:1px solid #dddddd; overflow:auto; display:block; min-height:162px; overflow:hidden; position:relative;}

.category .image{float: right;}

.category .image img {
    backface-visibility: hidden;
    max-width: none;
    transform: translate3d(0px, 0px, 0px);
    -webkit-transform: translate3d(0px, 0px, 0px);
    -moz-transform: translate3d(0px, 0px, 0px);
    -ms-transform: translate3d(0px, 0px, 0px);
    -o-transform: translate3d(0px, 0px, 0px);
    transition: all 400ms ease 0s;
    -webkit-transition: all 400ms ease 0s;
    -moz-transition: all 400ms ease 0s;
    -ms-transition: all 400ms ease 0s;
    -o-transition: all 400ms ease 0s;
}
.category:hover .image img {
    overflow: hidden;
    transform: scale(1.1);
    -moz-transform: scale(1.1);
    -ms-transform: scale(1.1);
    -o-transform: scale(1.1);
    -webkit-transform: scale(1.1);
    transition: all 400ms ease 0s;
    -webkit-transition: all 400ms ease 0s;
    -moz-transition: all 400ms ease 0s;
    -ms-transition: all 400ms ease 0s;
    -o-transition: all 400ms ease 0s;
}
.cat-desc{float:left; padding-top: 24px;}

.bottomfooter {
    margin: 0;
    text-align: center;
    clear: both;
    border-top: 1px solid #494949;
    padding: 17px 0 17px;
}
.bottomfooter a{ text-decoration: underline; }
.bottomfooter a:hover{
    color: #D14507;
    text-decoration: none;
}
.bottomfooter ul li {
    display: inline-block;
    padding: 0 1px;
}

.bottomfooter ul li:first-child {
    border: medium none;
    padding-left:0;
}

p.powered {
    text-align: left;
    float: left;
    margin: 0;
}
.footerbottom-cms { float:right; }

.bottomfooter .paiement_logo_block {
    text-align: right;
    float: right;
}
.bottomfooter .paiement_logo_block img {
    margin: 0 0px 0px 5px;
    cursor: pointer;
}
.bottomfooter .paiement_logo_block img:hover {
    filter:grayscale(0);
}

/* alert */
.alert {
    padding: 8px 14px 8px 14px;
}
/* breadcrumb */

.common-home .wrap-breadcrumb { display: none; }
.common-home .wrap {
    padding-top: 0px;
}
.wrap {
    width: 100%;
    padding: 35px 0px 0px;
    clear: both;
    position: relative;
}
.wrap-breadcrumb {
    margin: 0px;
    width: 100%;
    padding: 0;
    overflow: hidden;
    position: relative;
}
.wrap-breadcrumb .breadcrumb {
    display: block;
    float: none;
    padding: 0;
    margin-top: 28px;
    margin-bottom: 28px;
}
.breadcrumb {
    padding: 0;
    margin-top: 12px;
    margin-bottom: 23px;
    list-style: none;
    float: left;
    width: 100%;
    color: #666666;
}

#content .breadcrumb {
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
}
#product-product ul.breadcrumb {
    margin-top: -12px;
}
#information-contact ul.breadcrumb {
    margin-top: 0px;
}
.breadcrumb i {
    font-size: 15px;
    display: flex!important;
    align-items: center;
    flex-wrap: nowrap;
}
.breadcrumb > li {
    position: relative;
    white-space: normal;
    display: flex!important;
    align-items: center;
}
.breadcrumb > li + li:before {
    content: '';
    padding: 0;
}
.breadcrumb > li:last-child a, .breadcrumb > li a:hover, .breadcrumb > li a.active {
    color:#555555;
}
.breadcrumb > li a{color:#555555;}
.breadcrumb > li a:hover{ color: #D14507;}
.pagination {
    margin: 0;
}
/* buttons */
.buttons {
    margin: 1em 0;
    display:inline-block;
    width:100%;
}
.btn {
    padding: 6px 15px;
    font-size: 14px;
    border: 1px solid #dddddd;
}
.btn-xs {
    font-size: 9px;
}
.btn-sm {
    font-size: 10.2px;
}
.btn-lg {
    padding: 10px 16px;
    font-size: 15px;
}
.btn-group > .btn, .btn-group > .dropdown-menu, .btn-group > .popover, .dropdown-menu.myaccount-menu{

    text-transform: capitalize;
}
.btn-group > .btn-xs {
    font-size: 9px;
}
.btn-group > .btn-sm {
    font-size: 10.2px;
}
.btn-group > .btn-lg {
    font-size: 15px;
}
.btn-primary {
    color: #fff;
    background-color: #000;
    border:1px solid #000;
}
.btn-primary:hover, .btn-primary:active, .btn-primary.active, .btn-primary.disabled, .btn-primary[disabled] {
    color: #fff;
    background-color: #222222;
    border:1px solid #222222;
}
.btn-warning {
    color: #ffffff;
    background-color: #faa732;
    background-image: linear-gradient(to bottom, #fbb450, #f89406);
    background-repeat: repeat-x;
    border-color: #f89406 #f89406 #ad6704;
}
.btn-warning:hover, .btn-warning:active, .btn-warning.active, .btn-warning.disabled, .btn-warning[disabled] {
    box-shadow: inset 0 1000px 0 rgba(0, 0, 0, 0.1);
    -webkit-box-shadow: inset 0 1000px 0 rgba(0, 0, 0, 0.1);
    -moz-box-shadow: inset 0 1000px 0 rgba(0, 0, 0, 0.1);

}
.btn-danger {
    color: #ffffff;
    background: #d9534f;
}
.btn-danger:hover, .btn-danger:active, .btn-danger.active, .btn-danger.disabled, .btn-danger[disabled] {
    box-shadow: inset 0 1000px 0 rgba(0, 0, 0, 0.1);
    -webkit-box-shadow: inset 0 1000px 0 rgba(0, 0, 0, 0.1);
    -moz-box-shadow: inset 0 1000px 0 rgba(0, 0, 0, 0.1);
}
.btn-success {
    color: #ffffff;
    background-color: #5bb75b;
    background-image: linear-gradient(to bottom, #62c462, #51a351);
    background-repeat: repeat-x;
    border-color: #51a351 #51a351 #387038;
}
.btn-success:hover, .btn-success:active, .btn-success.active, .btn-success.disabled, .btn-success[disabled] {
    box-shadow: inset 0 1000px 0 rgba(0, 0, 0, 0.1);
    -webkit-box-shadow: inset 0 1000px 0 rgba(0, 0, 0, 0.1);
    -moz-box-shadow: inset 0 1000px 0 rgba(0, 0, 0, 0.1);
}
.btn-info {
    color: #ffffff;
    background-color: #df5c39;
    background-image: linear-gradient(to bottom, #e06342, #dc512c);
    background-repeat: repeat-x;
    border-color: #dc512c #dc512c #a2371a;
}
.btn-info:hover, .btn-info:active, .btn-info.active, .btn-info.disabled, .btn-info[disabled] {
    background-image: none;
    background-color: #df5c39;
}
.btn-link {
    border-color: rgba(0, 0, 0, 0);
    cursor: pointer;
    color: #23A1D1;
    border-radius: 0;
}
.btn-link, .btn-link:active, .btn-link[disabled] {
    background-color: rgba(0,0,0,0);
    background-image: none;
    box-shadow: none;
    -moz-box-shadow: none;
    -webkit-box-shadow: none;

}
.btn-inverse {
    color: #ffffff;
    background: #363636;
    border:none;
}
.btn-inverse:hover, .btn-inverse:active, .btn-inverse.active, .btn-inverse.disabled, .btn-inverse[disabled] {
    background-color: #222222;
    background-image: linear-gradient(to bottom, #262626, #111111);
}

/* list group */

.box .filterbox {
    border: medium none;
}
.list-group a {
    padding: 5px 0px;
    text-transform:capitalize;
    font-size: 14px;
}
.list-group a.active, .list-group a.active:hover, .list-group a:hover {
    color: #D14507;
}
.list-group-item.group-name {
    color: #222222;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 0;
    padding: 0 18px;
    text-transform: capitalize;
}
.filterbox .list-group-item{padding:0px;}
.filterbox .panel-footer {
    padding: 0 ;
    margin-top: 10px;
    text-align: right;
    border:medium none;
    background:#FFFFFF;
}
#column-left .box .filterbox .btn-primary, #column-right .box .filterbox .btn-primary {
    background: none;
    border: 0;
    color: #222222;
    text-decoration: underline;
    padding: 0px;
}
#column-left .box .filterbox .btn-primary:hover, #column-right .box .filterbox .btn-primary:hover {
    color: #D14507;
    text-decoration: none;
    -webkit-transition: all 0.5s ease 0s;
    -moz-transition: all 0.5s ease 0s;
    -o-transition: all 0.5s ease 0s;
    transition: all 0.5s ease 0s;
}
.filterbox .list-group-item label {
    color: #555555;
}
/* carousel */
.carousel-caption {
    color: #FFFFFF;
}
.carousel-control .icon-prev:before {
    content: '\f053';
    font-family: FontAwesome;
}
.carousel-control .icon-next:before {
    content: '\f054';
    font-family: FontAwesome;
}
/* product list */
.product-thumb {
    overflow: auto;
    background-color: #fff;
    padding: 10px 15px 20px;
}
.product-block .image_wrapper {
    position: relative;
    width: auto;
    overflow: hidden;
}
.product-thumb .image {
    text-align: center;
    position:relative;
    overflow:hidden;
}
.product-thumb .image a {
    display: block;
}
.product-thumb .image img {
    margin-left: auto;
    margin-right: auto;
    width: 100%;
    border-radius: 5px;
    zoom: 1.1;
}
.product-grid .product-thumb .image {
    float: none;
}
.image_content {
    position: absolute;
    height: 100%;
    width: 100%;
}

.product-layout.product-grid, .product-layout.product-list{padding:0px; }
#products .product-list:last-child {
    margin-bottom: 15px;
}
.product-layout.product-grid {
    width: 24.65%;
    float: none;
    display: inline-block;
    vertical-align: top;
}
.product-layout.product-grid .product-block {
    margin: 15px 13px 15px 13px;
}
.product-list .product-block {
    padding: 0px;
    border-bottom: 0;
    border: 0;
    margin: 15px 13px 20px 13px;
}
.product-list:last-child .product-block {
    border-bottom: 0;
}
.product-list .product-thumb .product-block-inner {
    border: 0;
    max-width: 100%;
}
.product-layout.product-list .product-block .image_wrapper {
    float: left;
    width: 22.5%;
}
#products .row,
.row.cat_prod { margin: 0px -13px; }
#products {
    margin-left: 1px;
}

.alert-success .fa.fa-check-circle{margin-right:5px;}
.tooltip .tooltip-inner {
    background-color: #262626;
    color: #fff;
    font-size: 11px;
}
.tooltip.top .tooltip-arrow {
    border-top-color: #262626 !important;
}
.product-grid .product-thumb .top__wrap {
    display: block;
}
.product-grid .product-thumb .title__wrap.price {
    display: block; 
}
.product-thumb h4 {
    font-weight: 400;
    margin-top: 2px;
    margin-bottom: 7px;
    font-size: 14px;
    line-height: 20px;
    color: #333333;
    clear: both;
}
.product-thumb h4 a {
    color: #333333;
    font-size: 12px;
    text-decoration: none;
    text-align: left;
    font-weight: 400;
    text-transform: capitalize;
}
.product-list .product-thumb h4 {
    margin-bottom: 5px;
    display: block;
    padding-bottom: 0px;
    text-transform: capitalize;
}
.product-thumb h4:hover, .product-thumb h4:hover a, header .btn-group.btn-block li a:hover{color:#D14507;}


.product-thumb .caption {
    text-align: left;
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%; /* обязательно */
    justify-content: space-between;
}
.account-wishlist table .text-center img {
    border: 1px solid #dddddd;
}
.product-thumb .rating {
    padding-bottom: 7px;
    line-height:normal;
}
.product-thumb .percentsaving {
    background-color: #f00;
    padding: 0px 10px;
    color: #fff;
    border-radius: 5px;
    line-height: 20px;
    font-weight: 500;
    font-size: 13px;
    letter-spacing: 0.3px;
    text-transform: uppercase;
    position: absolute;
    top: 8px;
    left: 10px;
    border-bottom: 1px solid #f00;
    transition: all 0.3s ease 0s;
    -webkit-transition: all 0.3s ease 0s;
    -moz-transition: all 0.3s ease 0s;
    -ms-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
}
.product-block.product-thumb:hover .percentsaving {
    opacity: 0;
    filter: alpha(opacity=0);
}
.product-list .product-thumb .percentsaving.list-save { right:5px; top:0px; display:block; position:absolute; }
.product-list .product-thumb .percentsaving.grid-save, .product-grid .product-thumb .percentsaving.list-save { display:none; }

.rating .fa-stack,#review .fa-stack {
    font-size: 8px;
    width: 10px;
    color: #dedddc;
}
.rating .fa-star,#review .fa-star,.rating-wrapper .fa-star {
    color: #ffba00;
    font-size: 12px;
}
.rating .fa-star + .fa-star-o,#review .fa-star + .fa-star-o,.rating-wrapper .fa-star + .fa-star-o{
    color: #ffba00;
}

.rating .fa-star.off,.rating-wrapper .fa-star.off, #review table .fa-star.off{color:#b5b5b5;}
.fa-star-o:before {
    content: '\f005';
}
h2.price {
    margin: 0;
}
.product-thumb .title__wrap.price {
    display: flex;
    align-items: end;
}
.product-thumb .price {
    display: inline-block;
    vertical-align: top;
    line-height: 26px;
    color: #000000;
    font-weight: 500;
    margin-bottom: 8px;
    font-size: 14px;
    letter-spacing: 0px;
    width: 100%;
}
.product-thumb .price-new {
    position: relative;
}
body.in-app .product-thumb .price-old {
    color: #666666;
    text-decoration: line-through;
    margin-left: 3px;
    font-size: 16px;
    line-height: 18px;
    font-weight: 400;
}

.product-thumb .price-old {
    color: #666666;
    text-decoration: line-through;
    margin-left: 3px;
    font-size: 16px;
    line-height: 18px;
    font-weight: 400;
}
.product-thumb .price-tax {
    color: #999;
    display: none;
    font-size: 12px;
}

.product-list .product-thumb .price-tax{display:block; clear:both; line-height:18px;}
#content h3.product-option {
    font-size: 16px;
}
.product-thumb .product-details {
    /* убираем float */
    float: none;

    width: 100%;
    overflow: hidden;
    padding: 10px;

    /* пусть растягивается внутри product-block-inner */
    flex: 1 1 auto;

    /* и сам тоже становится flex-контейнером */
    display: flex;
}
.product-thumb .button-group {
    position: absolute;
    top: -20px;
    width: auto;
    z-index: 1;
    right: 8px;
    opacity: 0;
    filter: alpha(opacity=0);
    transition: all 0.5s ease 0s;
    -webkit-transition: all 0.5s ease 0s;
    -moz-transition: all 0.5s ease 0s;
    -ms-transition: all 0.5s ease 0s;
    -o-transition: all 0.5s ease 0s;
}
.product-thumb:hover .button-group {
    top: 5px;
    opacity: 1;
    filter: alpha(opacity=100);
    transition: all 0.5s ease 0s;
    -webkit-transition: all 0.5s ease 0s;
    -moz-transition: all 0.5s ease 0s;
    -ms-transition: all 0.5s ease 0s;
    -o-transition: all 0.5s ease 0s;
}
.product-grid .product-thumb .product-details .button-group {
    opacity: 0;
    filter: alpha(opacity=0);
}
.product-grid .product-thumb:hover .product-details .button-group {
    opacity: 1;
    filter: alpha(opacity=100);
}

.product-list .product-thumb .image .button-group .bottom-btn {
    display: none;
}
.product-list .product-thumb .product-details .button-group {
    position: static;
    margin-top: 10px;
    opacity: 1;
    filter: alpha(opacity=100);
    display: inline-block;
    width: auto;
    margin-left: 3px;
}
.product-list .product-details .button-addtocart {
    display: inline-block;
    vertical-align: top;
}
.product-list .product-thumb button.addtocart {
    margin-top: 8px;
    transition: none;
    font-size: 14px;
    background: #D14507;
    border-color: #D14507;
    text-transform: uppercase;
    padding: 8px 25px;
    display: block;
    color: #ffffff;
}
.product-list .product-block button.addtocart:hover {
    text-decoration: none;
}
.product-list .product-thumb:hover button.addtocart {
    background-color: #222222;
    border-color: #222222;
    color: #ffffff;
}
.product-thumb .button-group button {
    height: 36px;
    width: 36px;
    border: none;
    background-color: transparent;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 17px;
    color: #ffffff;
    padding: 0px;
    text-align: center;
    text-transform: uppercase;
    position: relative;
    transition: none;
    display: block;
    margin-bottom: 1px;
    font-size: 0px;
}

.product-thumb .button-group button .fa { display:none; }

.product-list .product-thumb .caption { position: relative; border: none; padding: 15px 0px 30px 25px; text-align: left; }

.product-list .product-block .rating , .product-grid .product-block .rating.list-rate  { margin:15px 0; display:none; }
.product-list .product-block .rating.list-rate {
    margin: 0px 0px;
    display: inline-block;
    vertical-align: top;
    opacity: 1;
    filter: alpha(opacity=100);
}
.product-list .product-block .desc {
    margin-bottom: 8px;
    font-size: 14px;
    margin-top: 2px;
}
.btn-group.btn-block .text-right .addtocart{
    background: #888888;
}
.btn-group.btn-block .text-right .addtocart,.btn-group.btn-block .text-right .checkout {
    width: auto;
    border: none;
    float: left;
    color: #fff;
    padding: 9px 20px;
    font-weight: 400;
    text-align: center;
    font-size: 14px;
    text-transform: uppercase;
    transition: all 300ms linear 0s;
    -webkit-transition: all 300ms linear 0s;
    -moz-transition: all 300ms linear 0s;
    -ms-transition: all 300ms linear 0s;
    -o-transition: all 300ms linear 0s;
}
.btn-group.btn-block .dropdown-menu .img-thumbnail{width:auto; max-width:none; border: 1px solid #dddddd;}

.btn-group.btn-block .text-right .addtocart strong { color: #ffffff; font-size: 14px;}
.btn-group.btn-block .text-right .checkout strong {
    color: #ffffff;
    font-size: 14px;
}
.btn-group.btn-block .text-right .checkout:hover strong,
.btn-group.btn-block .text-right .checkout:active strong,
.btn-group.btn-block .text-right .checkout:focus strong {
    color: #ffffff;
}
.btn-group.btn-block .text-right .addtocart {
    margin: 0px 8px 5px 0px;
    background-color:#222222;
    color: #ffffff;
    -webkit-transition: all 0.5s ease 0s;
    -moz-transition: all 0.5s ease 0s;
    -o-transition: all 0.5s ease 0s;
    transition: all 0.5s ease 0s;
}
.productbox-grid .product-block .button-addtocart,
.product-carousel .product-block .button-addtocart,
.product-grid .product-block .button-addtocart {
    display: inline-block;
    vertical-align: top;
    margin-top: 4px;
}
.productbox-grid .product-block button.addtocart,
.product-carousel .product-block button.addtocart,
.product-grid .product-block button.addtocart {
    color: #fff;
    font-size: 13px;
    overflow: hidden;
    text-transform: uppercase;
    border: 0px;
    padding: 7px 26px;
    background-color: #D14507;
    transition: none;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    font-weight: 500;
    transition: all 0.5s ease 0s;
    -webkit-transition: all 0.5s ease 0s;
    -moz-transition: all 0.5s ease 0s;
    -ms-transition: all 0.5s ease 0s;
    -o-transition: all 0.5s ease 0s;
}
.productbox-grid .product-block:hover button.addtocart,
.product-carousel .product-block:hover button.addtocart,
.product-grid .product-block:hover button.addtocart {
    background-color: #D14507;
    color: #ffffff;
}
.product-thumb  button.addtocart .fa {
    display: none;
}
.btn-group.btn-block .text-right .addtocart:hover,
.btn-group.btn-block .text-right .addtocart:active,
.btn-group.btn-block .text-right .addtocart:focus {
    color: #ffffff;
    background-color:#D14507;
    outline: 0px;
    -webkit-transition: all 0.5s ease 0s;
    -moz-transition: all 0.5s ease 0s;
    -o-transition: all 0.5s ease 0s;
    transition: all 0.5s ease 0s;
}
.product-thumb .button-group button.wishlist {
    background-image: url(../image/codezeel/wishlist.svg);
}
.product-thumb .button-group button.wishlist:hover,
.product-thumb .button-group button.wishlist:focus {
    background-image: url(../image/codezeel/wishlist-hover.svg);
}
.product-thumb .button-group button.compare {
    display: none;
    background-image: url(../image/codezeel/compare.svg);
}
.product-thumb .button-group button.compare:hover,
.product-thumb .button-group button.compare:focus {
    background-image: url(../image/codezeel/compare-hover.svg);
}
.product-grid .product-thumb .button-group button.addtocart,
.productbox-grid .button-group .product-thumb button.addtocart,
.product-carousel .product-block .button-group button.addtocart,
.category_tab  .button-group.addtocart {
    background: url(../image/codezeel/icons.png) no-repeat scroll center -20px #000000;
    display: inline-block;
}
.thumbnails {
    /* overflow: auto; */
    clear: both;
    list-style: none;
    padding: 0;
    margin: 0;
}
.thumbnails > img {
    width: 100%;
}
.image-additional a {
    margin-bottom: 20px;
    padding: 0px;
    display: block;
}
.image-additional a img {
    border: 1px solid transparent;
}
.product-info .image-additional img:hover {
    border-color: #D14507;
}
.image-additional a:hover{
    border-color: #D14507;
}
.thumbnails .image-additional {
    float: left;
}
.product-list .product-thumb .button-group button.addtocart {
    display: none;
}
.product-block .product-details span.brand_title {
    float: left;
    width: 100%;
    margin-bottom: 4px;
    cursor: pointer;
}
.product-block .product-details span.brand_title a {
    color: #666666;
}
.product-block .product-details span.brand_title a:hover {
    text-decoration: underline;
}
.product-block .rating {
    display: inline-block;
    vertical-align: middle;
    padding-bottom: 0px;
    transition: all 0.5s ease 0s;
    -webkit-transition: all 0.5s ease 0s;
    -moz-transition: all 0.5s ease 0s;
    -ms-transition: all 0.5s ease 0s;
    -o-transition: all 0.5s ease 0s;
    /* opacity: 0; */
    filter: alpha(opacity=0);
}
.product-block:hover .product-details .rating {
    opacity: 1;
    filter: alpha(opacity=100);
}
.product-list .product-thumb .caption .percentsaving {
    position: static;
    float: none;
    display: inline-block;
    margin-top: 0;
    line-height: 26px;
    vertical-align: top;
    padding: 0 4px;
}
.product-info .image {
    display:block;
    margin-bottom: 15px;
    text-align: center;
    float: right;
    width: 82%;
}
.productpage .product-info .thumbnail {
    margin-bottom: 10px;
    border: 0px;
}
#content.productpage h3 {margin-top:0;font-size: 18px; margin-bottom:0px; font-weight:500;}
.product-info .zoomContainer{ z-index:9; } /* It need for ie7 */
.product-info .additional-carousel {
    position: relative;
}
.product-info .image-additional {
    clear: both;
    overflow: hidden;
    padding-left: 0px;
    padding-right: 0px;
    width: 430px;
    float: none;
    margin-left: auto;
    margin-right: auto;
}
.product-info .horizontal-carousel {
    position: relative;
    clear: both;
}

/* product-page vertical slider */

.product-info #vertical-carousel_slide {
    width: 18%;
    float: left;
    height: 100%;
}
.product-info .vertical-carousel {
    width: auto;
    padding-bottom: 45px;
    padding-top: 45px;
}
.product-info .vertical-carousel .product-block {
    margin: 0px 0px 6px 0px;
}
.product-info .vertical-carousel .product-block a {
    margin: 2px 0px;
}
.product-info .vertical-carousel .product-block a img {
    height: initial;
}
.product-info .vertical-carousel .bx-viewport {
    height: 445px !important;
}
.product-info .vertical-carousel .bx-wrapper .bx-controls-direction a.bx-prev,
.product-info .vertical-carousel .bx-wrapper .bx-controls-direction a.bx-next {
    background-color: #ffffff;
    width: 95px;
    height: 31px;
    color: #333333;
    padding: 2px 0px 0px;
    z-index: 2;
}
.product-info .vertical-carousel .bx-wrapper .bx-controls-direction a.bx-prev {
    top: -45px;
}
.product-info .vertical-carousel .bx-wrapper .bx-controls-direction a.bx-next {
    bottom: -42px;
}
.product-info .vertical-carousel .bx-wrapper .bx-controls-direction a:before {
    font-size: 22px;
}
.product-info .vertical-carousel .bx-wrapper .bx-controls-direction a.bx-next:before {
    content: "\f107";
}
.product-info .vertical-carousel .bx-wrapper .bx-controls-direction a.bx-prev:before {
    content: "\f106";
}

/* end product-page vertical slider */

#content .col-sm-6.product-left .product-carousel .slider-item {
    border-right: transparent;
}
.product-info .image-additional img { max-width: 100%;}
.product-info .image-additional a {
    display: block;
}

.product-right .btn-group .wishlist .fa,.product-right .btn-group .compare .fa{margin-right:5px;}

#input-captcha, #input-payment-captcha{margin-bottom:10px}

.productpage .form-group.qty .wishlist,
.productpage .form-group.qty .compare,
.quickview .form-group.qty .wishlist,
.quickview .form-group.qty .compare {
    width: auto;
    height: auto;
    padding: 2px 0px 0px 24px;
    border: 0px;
    font-weight: 400;
    text-transform: capitalize;
    font-size: 15px;
    transition: none;
    color: #222222;
}
.productpage .form-group.qty .wishlist, .quickview .form-group.qty .wishlist {
    background-image: url(../image/codezeel/wishlist.svg);
    background-color: transparent;
    background-repeat: no-repeat;
    background-position: left center;
    background-size: 17px;
}
.productpage .form-group.qty .wishlist:hover, .quickview .form-group.qty .wishlist:hover {
    color: #D14507;
    background-image: url(../image/codezeel/wishlist-hover.svg);
}
.productpage .form-group.qty .compare , .quickview .form-group.qty .compare {
    background-image: url(../image/codezeel/compare.svg);
    background-color: transparent;
    background-repeat: no-repeat;
    background-position: left center;
    background-size: 17px;
}
.productpage .form-group.qty .compare:hover, .quickview .form-group.qty .compare:hover {
    color: #D14507;
    background-image: url(../image/codezeel/compare-hover.svg);
}
.productpage #input-quantity, .quickview #input-quantity {
    float: left;
    margin-right: 10px;
    width: auto;
    height: 44px;
    text-align: center;
    margin-left: 5px;
}
.productpage .input-group-btn .btn {
    padding: 6px 20px;
}
.quickview .form-group.qty .btn-lg,
.productpage .form-group.qty .btn-lg {
    padding: 9px 25px;
    min-width: 170px;
    color: #ffffff;
    background: #D14507;
    border-color: #D14507;
    transition: all 0.3s ease 0s;
    -webkit-transition: all 0.3s ease 0s;
    -moz-transition: all 0.3s ease 0s;
    -ms-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    font-size: 15px;
}
.quickview .form-group.qty .btn-lg:hover,
.productpage .form-group.qty .btn-lg:hover {
    background-color: #222222;
    border-color: #222222;
    color: #ffffff;
}
.form-group.qty .control-label{
    float: left;
    margin: 6px 10px 0 0;
    font-size:14px;
}

/* Codezeel Start */

/* box */
.box {
    margin-bottom:12px;
}

.hometab-heading.box-heading {
    margin-bottom: 20px;
}
.hometab .tab-content{
    clear: both;
}
#tab-latest #tablatest-grid .product-items,
#tab-special #tabspecial-grid .product-items,
#tab-bestseller #tabbestseller-grid .product-items {
    display: none;
    width: 206px;
}
.box-heading {
    text-align: left;
    border: medium none;
    display: block;
    width: 100%;
    margin: 0 auto 15px;
    padding: 0px 0px 0px;
    color: #222222;
    position: relative;
    font: 600 18px/26px 'Heebo', sans-serif;
    text-transform: uppercase;
    border-bottom: 1px solid #dddddd;
    letter-spacing: 0.4px;
    clear: both;
}
.box-heading:after {
    content: "";
    display: block;
    text-align: left;
    width: 65px;
    margin-top: 15px;
    margin-bottom: -2px;
    border-bottom: 3px solid #D14507;
    -webkit-transition: all 0.5s ease 0s;
    -moz-transition: all 0.5s ease 0s;
    -o-transition: all 0.5s ease 0s;
    transition: all 0.5s ease 0s;
}
.category_tab h3 {
    font-weight: 700 !important;
    margin: 0 0 10px !important;
}
.box .box-content {
    background: none;
    border-radius: 0px;
    border:none;
    padding: 0;
    position: relative;
    margin: 0px -15px;
    clear: both;
}
.hometab .customNavigation {
    top: -60px;
}
#carousel-0 .product-carousel .slider-wrapper, #carousel-0 .product-carousel .slider-item {
    border: 0;
}
.box .box-content ul , #content .content ul {
    padding:0px;
    margin:0px;
    list-style:none;
}
.box .box-content ul li , #content .content ul li {
    line-height: 22px;
    padding: 2px 0;
    position: relative;
}
.box .box-content ul li a + a , .box .box-content ul li a + a:hover{ background:none; padding-left:0; }

.box .box-content ul ul {
    margin-left: 15px;
    z-index: 99;
    width: auto;
}
.box.latest, .box.bestseller, .box.featured, .box.special {
    margin: 60px 0px 30px;
    clear: both;
    float: left;
    width: 100%;
    position: relative;
}
.box-product {
    list-style-type: none;
    position:relative;
    width: 100%;
    padding:0px;
    margin:0px;
    list-style: none;
    overflow: hidden;
}

.box-product .product-items {
    margin-bottom: 14px;
    padding: 0;
    margin:0;
    position:relative;
    overflow: hidden;
}
#categorylist .box-product .product-items,
#categorylist .product-carousel .slider-item {
    width: 305px;
}
.product-grid li,
.box-product .product-items,
.product-carousel .slider-item {
    width: 245px;
    float: left;
}
.ie7 .product-grid li{ width:192px !important; }
.image-additional .slider-item {
    float: left;
}

.image-additional .slider-item .product-block {
    margin:4px 5px;
    background:transparent;
    border-radius: 0px;
    clear:both;
    overflow:hidden;
    text-align: center;
    border: 0;
}

.image-additional .slider-item .product-block:hover {   box-shadow: none !important; -webkit-box-shadow: none !important; -moz-box-shadow: none !important; }

.grid_default_width { width: 206px;}
.featured_default_width{ width: 206px;}
.module_default_width{ width: 160px;}
.latest_default_width{ width: 206px;}
.special_default_width{ width: 206px;}
.related_default_width{ width: 206px;}
.bestseller_default_width{ width: 206px;}
.tabspecial_default_width{ width: 206px;}
.tabbestseller_default_width{ width: 206px;}
.tablatest_default_width{ width: 206px;}
.additional_default_width{ width: 90px;}
.testimonial_default_width{width: 100%;}
.ourcategory_default_width{width: 206px;}
.categorylist_default_width{width: 248px;}
#content .banners-slider-carousel .product-carousel .product-block-inner,#content .banners-slider-carousel .product-grid .product-block-inner{text-align:center;}

.product-block  {
    margin: 15px 15px 15px;
    padding: 0px;
    background-color: transparent;
    clear:both;
    overflow:hidden;
    transition: all 0.3s ease 0s;
    -webkit-transition: all 0.3s ease 0s;
    -moz-transition: all 0.3s ease 0s;
    -ms-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
}

.ie7 #content .product-carousel .product-block,
    /*.ie7 #content .product-grid-list .product-block,*/
.ie7  .product-block {border:1px solid #ddd;}

.ie7 #content .product-carousel .product-block:hover,
    /*.ie7 #content .product-grid-list .product-block:hover,*/
.ie7 .product-block:hover {border:1px solid #ddd;}


.product-grid .product-thumb .desc,.productbox-grid .product-thumb .price-tax,.product-carousel .product-thumb .price-tax{display:none;}
.product-list .product-thumb .product-details { width: 77.5%; min-height: initial; }

.product-block-inner {
    padding: 0;
    text-align: left;
    overflow: hidden;
    position: relative;
    margin: 0;
    border: 0;
    /* background-color: #ffffff; */
    border-radius: 5px;
    -webkit-border-radius: 5px;

    display: flex;
    flex-direction: column;
    height: 100%; 
}
.sale {
    color: #000000;
    font-size: 13px;
    font-weight: 400;
    left: 8px;
    top: 8px;
    padding: 0;
    position: absolute;
    text-align: right;
    line-height: 20px;
    text-transform: uppercase;
    border-bottom: 1px solid #000000;
    opacity: 0;
    filter: alpha(opacity=0);
    transition: all 0.3s ease 0s;
    -webkit-transition: all 500ms ease 0s;
    -moz-transition: all 500ms ease 0s;
    -o-transition: all 500ms ease 0s;
    transition: all 500ms ease 0s;
}
.product-block.product-thumb:hover .sale {
    opacity: 1;
    filter: alpha(opacity=100);
}
.product-list .sale {
    left: 13px;
}
/* box products for Left Column and Right Column */
#column-left .box-product,
#column-right .box-product {
    width: 100%;
    overflow: hidden;
}
#column-left .box-product > div,
#column-right .box-product > div  {
    display:block;
    margin-right:0px;
    margin-top: 0px;
    margin-bottom:0;
    width:100%;
    border: 0;
}
#column-left .box .box-heading,
#column-right .box .box-heading {
    color: #222222;
    padding: 14px 0px;
    font-weight: 600;
    font-size: 15px;
    line-height: 20px;
    background-color: #ffffff;
    margin: 0 0 0px 0;
    letter-spacing: 0.4px;
    border: 0px;
}
#column-left .box .box-heading:after,
#column-right .box .box-heading:after {
    border-bottom: 0px;
    margin-top: 0px;
    margin-bottom: 0px;
    width: auto;
}
#column-left .product-thumb .product-block-inner,
#column-right .product-thumb .product-block-inner {
    border: 0;
}
#column-left .box .box-content div.product-items:last-child > div, #column-right .box .box-content div.product-items:last-child > div,
#column-left .box .box-content div.slider-item:last-child > div, #column-right .box .box-content div.slider-item:last-child > div {
    border: 0 none;
}
#column-left .box-product .image_wrapper,
#column-right .box-product .image_wrapper {
    float: left;
}
#column-left .box-product .image,
#column-right .box-product .image {
    display: block;
    margin-bottom: 0;
    float: left;
    margin-right: 10px;
    margin-top: 0;
}

#column-left .product-items .product-details,
#column-right .product-items .product-details{
    width:auto; /* specify width as per your requirement */
    overflow: hidden;
}
#column-left .product-thumb .product-details,
#column-right .product-thumb .product-details {
    width: auto;
    float: none;
    min-height: initial;
}
#column-left .product-thumb .caption,
#column-right .product-thumb .caption {
    padding: 0;
    border: none;
}
#column-left .caption a, #column-right .caption a {
    word-wrap: break-word;
    color: #222222;
}
#column-left .caption a:hover, #column-right .caption a:hover {
    color: #D14507;
}
#column-left .box-product .product-thumb h4,
#column-right .box-product .product-thumb h4 {
    font-weight: normal;
    font-size: 14px;
    margin: 0 0 5px;
    color: #222222;
    line-height: 22px;
}
#column-left .box-product .name,
#column-right .box-product .name {
    display: block;
}
#column-left .box-product .cart,
#column-right .box-product .cart {
    display: block;
}
#column-left .box-product .cart .button,
#column-right .box-product .cart .button{
    padding:0;
    background:none;
    box-shadow:none;
    -moz-box-shadow:none;
    -webkit-box-shadow:none;
    height:auto;
    font-weight:normal;
    border-radius: 0px;
    color:#555;
    display:block;
    text-align:left;
}
#column-left .box-product .cart .button:hover,
#column-right .box-product .cart .button:hover {text-decoration:underline;}
#column-left .box-product .image img,
#column-right .box-product .image img { width: 85px; }
#column-left .box-product .image img.hover-image,
#column-right .box-product .image img.hover-image {
    display: none;
}
#column-left .box-product .rating,
#column-right .box-product .rating,
#column-left .box-product .name,
#column-right .box-product .name,
#column-left .box-product .price,
#column-right .box-product .price,
#column-left .box-product .cart,
#column-right .box-product .cart {
    float: left;
    clear: both;
    display: block;
    line-height: inherit;
    margin-bottom: 2px;
}
#column-left .box-product .price .price-old,
#column-right .box-product .price .price-old{
    margin-left: 2px;
}
#column-left .box .box-content, #column-right .box .box-content,
#column-left .box .list-group, #column-right .box .list-group,
#column-left .box .filterbox, #column-right .box .filterbox {
    margin: 0px;
    padding: 22px 0px;
    border-top: 1px solid #dddddd;
}
#column-left .box .list-group,
#column-right .box .list-group {
    padding-top: 5px;
    padding-bottom: 10px;
}
#column-left .box .list-group .list-group-item,
#column-right .box .list-group .list-group-item {
    text-transform: initial;
}
#column-left .box .list-group .list-group-item:last-child,
#column-right .box .list-group .list-group-item:last-child {
    border: 0;
}
#column-left .box .list-group .list-group-item:hover,
#column-right .box .list-group .list-group-item:hover {
    background-position: 4px 22px;
}
#column-left .box .filterbox label:hover,
#column-right .box .filterbox label:hover{
    color: #D14507;
}
#column-left .box-product .rating,
#column-right .box-product .rating {
    margin-bottom: 0px;
    opacity: 1;
    filter: alpha(opacity=100);
    padding-bottom: 5px;
}
#column-left .product-thumb, #column-right .product-thumb {
    border:none;
    margin: 0px 0px;
    padding: 10px 0;
    background:#ffffff;
}
#column-left .product-thumb:hover, #column-right .product-thumb:hover{
    background:#fff;
}
#column-left .sale, #column-left .price-tax, #column-left .wishlist, #column-left .compare, #column-left .percentsaving, #column-left .quickview-button, #column-left .rating, #column-left .brand_title,
#column-right .sale, #column-right .price-tax, #column-right .wishlist , #column-right .compare, #column-left .percentsaving, #column-right .quickview-button, #column-right .rating, #column-right .brand-title {
    display:none !important;
}
#column-left .product-block .button-addtocart,
#column-right .product-block .button-addtocart {
    position: static;
    clear: both;
    display: inline-block;
    vertical-align: top;
    text-align: left;
    background-color: transparent;
    border-radius: 0px;
}
#column-left .product-thumb .button-group button,
#column-right .product-thumb .button-group button  {
    background: none repeat scroll 0 0 transparent;
    padding: 0;
    width: auto;
    line-height: 28px;
    color:#262626;
    text-transform:capitalize;
    left:0;
    height:auto;
    position:static;
    text-align: left;
}
#column-left .product-thumb .button-group button span,
#column-right .product-thumb .button-group button span { display:block !important; }

#column-left .product-thumb .button-group button:hover,
#column-right .product-thumb .button-group button:hover{color:#888888}

#column-left .product-thumb .button-group button .fa,
#column-right .product-thumb .button-group button .fa{display:none;}

#column-left .product-thumb .button-group,
#column-right .product-thumb .button-group { display: none; }


#column-left .product-thumb .image .button-group,
#column-right .product-thumb .image .button-group {display:none}

#column-left .container,
#column-right .container{width:auto; padding: 0;}
#column-left .box,
#column-right .box {
    margin-bottom: 30px;
    position: relative;
    padding: 0px 15px;
    overflow: visible;
    clear: both;
    margin-top: 0px;
    background-color: #ffffff;
    border-radius: 5px 5px;
    -webkit-border-radius: 5px 5px;
}
#column-left .box .customNavigation,
#column-right .box .customNavigation {
    display: none;
    top: -38px;
}
#column-left .box .product-thumb  button.addtocart,
#column-right .box .product-thumb  button.addtocart {
    text-align: left;
    font-weight: 500;
    text-transform: uppercase;
    font-size: 14px;
    background: none;
    color: #666;
    width: auto;
    height: auto;
    padding: 0px;
    text-decoration: underline;
}
#column-left .box .product-block button.addtocart:hover,
#column-right .box .product-block button.addtocart:hover {
    background: transparent;
    text-decoration: none;
}


/********************Special Product********************/

#column-left .box.special .special-box-heading, #column-right .box.special .special-box-heading {
    background: transparent;
    color: #fff;
    font: 600 18px/28px 'Heebo', sans-serif;
    text-transform: capitalize !important;
    letter-spacing: 0.6px;
    padding: 13px 20px;
    text-align: left;
    background: #000000;
}
#column-left .box.special .product-carousel .slider-item, #column-right .box.special .product-carousel .slider-item {
    width: 100%;
}
#column-left .box.special .box-content, #column-right .box.special .box-content{
    border: none;
    padding:0;
    position: unset;
    display:block;
    border-top: 0;
    border: 1px solid #e7e7e7;
}
#column-left .box.special .box-content .product-thumb.product-block, #column-left .box.special .box-content .product-thumb.product-block{border: none;	padding:10px 14px 30px;}
#column-left .box.special .box-product .rating, #column-right .box.special .box-product .rating{
    display:block;
    float:none;
    opacity: 1;
    filter: alpha(opacity=100);
}
#column-left .box.special .box-product .image, #column-right .box.special .box-product .image{
    float:none;
    border:none;
    margin:0 auto;
}
#column-left .box.special .box-product .sale, #column-left .box.special .box-product .percentsaving,
#column-right .box.special .box-product .sale, #column-right .box.special .box-product .percentsaving {
    display: block !important;
}
#column-left .box.special .box-product .image img, #column-right .box.special .box-product .image img{
    width:auto;
}
#column-left .box.special .box-product .image .hover-image,#column-right .box.special .box-product .image .hover-image{display:none;}
#column-left .box.special .box-product .product-details .caption, #column-right .box.special .box-product .product-details .caption{
    width: 100%;
    text-align: center;
    padding: 15px 0px 0px;
}
#column-left .box.special .product-thumb button.addtocart, #column-right .box.special .product-thumb button.addtocart{
    width: auto;
    font-size: 14px;
    color: #ffffff;
    padding: 10px 20px 8px 60px;
    background: #D14507;
    position: relative;
    height: auto;
    text-align: center;
    margin: 0 auto;
    margin-top: 5px;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
}
#column-left .box.special .product-thumb button.addtocart:before, #column-right .box.special .product-thumb button.addtocart:before {
    content: "";
    background:url(../image/codezeel/icons.png) no-repeat scroll center -38px #b30213;
    width: 45px;
    height: 40px;
    position: absolute;
    left: 0px;
    top: 0;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
}
#column-left .box.special .box-product .price, #column-right .box.special .box-product .price{float:none;}
#column-left .box.special .product-thumb button.addtocart:hover, #column-right .box.special .product-thumb button.addtocart:hover{
    text-decoration: none;
    background-color: #000;
}
#column-left .box.special .product-thumb button.addtocart:hover:before, #column-right .box.special .product-thumb button.addtocart:hover:before{
    background-color: #000;
}
#column-left .product-carousel .owl-buttons, #column-right .product-carousel .owl-buttons{
    display:none;
}

@media only screen and (max-width: 991px) {
    #column-left .box.special .box-content .product-thumb.product-block,
    #column-left .box.special .box-content .product-thumb.product-block {
        padding-left: 10px;
        padding-right: 10px;
    }
}
@media (max-width: 1459px) and (min-width: 992px) {
    #column-left .product-items .product-details,
    #column-right .product-items .product-details {
        width: 100%;
        display: block;
        padding-top: 15px;
    }
}
@media only screen and (max-width: 991px) {
    #column-left .box.special .product-thumb .product-details .caption, #column-right .box.special .product-thumb .product-details .caption{
        text-align:center;
    }
    #column-right .box.special .toggle .mobile_togglemenu:before, #column-left .box.special .toggle .mobile_togglemenu:before{color:#000000; top:0;}
    #column-left .box.special .box-heading, #column-right .box.special .box-heading {
        margin-bottom: 10px;
    }
}
@media only screen and (max-width: 479px) {
    .breadcrumb > li a{
        max-width: 120px;
        display: inline-block;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }
    #column-left .box.special .box-content .product-thumb.product-block, #column-left .box.special .box-content .product-thumb.product-block {
        margin: 0px auto;
    }
    #column-left .box.special .box-content, #column-right .box.special .box-content {
        margin: 0px auto;
    }
}

.top_button {
    background: #D14507;
    bottom: 20px;
    cursor: pointer;
    height: 40px;
    padding: 6px 13px;
    position: fixed;
    right: 20px;
    text-align: center;
    width: 40px;
    z-index: 99;
    font-size: 0;
}
.top_button:before{
    color: #fff;
    content: "\f102";
    font-family: "FontAwesome";
    font-size: 22px;
    font-weight: 300;
}
.top_button:hover {
    background: #D14507;
}

#content ul.list-unstyled {
    margin-bottom: 10px;
    overflow: auto;
}
#content ul.list-unstyled li {
    line-height: 26px;
    padding: 3px 0px;
}
.quickview #content ul.list-unstyled.price {
    margin-bottom: 0px;
    padding-top: 10px;
}
.manufacturer-list {
    border: 0px;
    margin-bottom: 20px;
    padding: 5px;
    background: #fff;
}
.manufacturer-heading {
    background: none repeat scroll 0 0 #f8f8f8;
    font-size: 15px;
    font-weight: bold;
    margin-bottom: 6px;
    padding: 5px 8px;
}
.manufacturer-content {
    padding: 8px;
}
.manufacturer-list ul {
    float: left;
    list-style: outside none none;
    margin: 0 0 10px;
    padding: 0;
    width: 25%;
}
.category_filter .sort .form-control {cursor:pointer;}
.category_filter .sort .form-control,
.category_filter .limit .form-control {
    padding: 3px 12px 6px;
}
.productpage .box {
    position: relative;
    margin-bottom: 20px;
    margin-top: 60px;
    float: left;
    width: 100%;
    clear: both;
}

.tab-content {
    overflow:hidden;
}
.col-sm-4.total_amount { margin-top: 70px;}
.product-tag{margin:5px 0;}
.aboutus {
    clear: both;
    margin-bottom: 40px
}

.aboutus h3 {
    margin-bottom:10px;
    color: #000;
    font-weight: 600;
}
.image1 {
    background: url("../image/codezeel/cms-sprite.png") no-repeat scroll 0px 0px;
    float: left;
    height: 50px;
    width: 60px;
}

.image2 {
    background: url("../image/codezeel/cms-sprite.png") no-repeat scroll 0px -114px;
    float: left;
    height: 50px;
    width: 60px;
}

.image3 {
    background: url("../image/codezeel/cms-sprite.png") no-repeat scroll 0px -53px;
    float: left;
    height: 50px;
    width: 60px;
}
.image4 {
    background: url("../image/codezeel/cms-sprite.png") no-repeat scroll 0px -172px;
    float: left;
    height: 50px;
    width: 60px;
}
.aboutus h2{clear:both;font-size:20px;}
.about-content{overflow:hidden;}
.information-information .right{float:right;}

.category_filter #grid-view,.category_filter #list-view {
    border-radius: 0;
    border:none;
    padding:6px 12px;
}

.category_filter #grid-view{
    background:url(../image/codezeel/sprite.png) no-repeat scroll -3px -31px;
    width:24px;
    height:24px;
}
.category_filter #list-view{
    background:url(../image/codezeel/sprite.png) no-repeat scroll -41px -31px;
    width:24px;
    height:24px;
}
.category_filter #list-view.active, .category_filter #list-view:hover{
    background-position:-41px -1px;
}
.category_filter #grid-view:hover, .category_filter #grid-view.active {
    background-position: -3px -1px;
}
.category_filter #grid-view .fa, .category_filter #list-view .fa{display:none}

#list-view{margin-left:6px}

.category_filter #grid-view:hover .fa,.category_filter #list-view:hover .fa{color:#fff;}
.category_filter .btn-list-grid{float:left;width:auto; padding: 2px 0 0 0;}
.compare-total { float: left; margin: 2px 20px 0; }
.pagination-right { float: right;margin:0; width: auto;}
.category_filter .sort-by {float: left;margin: 2px 10px 0 0; width: auto;padding:0;}
.category_filter .show {float: left; margin: 2px 10px 0;padding:0; width:auto;}
.category_filter .sort { float: left; width: 150px;padding:0;}
.category_filter .limit {float: right; width: 100px;padding:0;}
.sort-by-wrapper,.show-wrapper{
    float: left;
}
.category_thumb .category_img, .category_thumb .category_description {
    float: left;
    width: 100%;
}
.category_thumb .category_description {
    margin-bottom: 20px;
}
.category_img img{margin-bottom:20px; border:none; max-width:100%;}
.category_list ul {
    padding: 0;
    display: inline-block;
    margin-bottom: 15px;
}
#content .refine-search {
    margin-bottom: 15px;
    margin-top: 5px;
    color: #222222;
    font-size: 15px;
    font-weight: 500;
    text-transform: uppercase;
}
.refine-search ul{padding:0;}
.refine-search ul li{list-style:none;}
.category_list li a {
    color: #666666;
    display: block;
    padding: 5px 15px;
    font-size: 14px;
    border: 1px solid #dddddd;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    background-color: #ffffff;
}
.category_list li a:hover {
    color: #D14507;
    border-color:#D14507;
}
.category_list li {
    float: left;
    list-style: outside none none;
    margin: 0 10px 5px 0;
}
.pagination-wrapper {
    display: inline-block;
    padding: 15px 0px 10px;
    width: 100%;
    background: none;
}
.category_filter {
    border: none;
    display: inline-block;
    margin-bottom: 5px;
    padding: 0px 0px 0px 0px;
    width: 100%;
    background: none;
}
.pagination-wrapper .page-link {
    float: right;
    width: auto;
    margin-top: 0px;
}
.pagination-wrapper .page-result{
    float: left;
    width: auto;
    margin: 10px 0 13px;
    line-height: 19px;
}
.contact-info .left {
    float: left;
    width: 50%;
}
.contact-info .right {
    float: right;
    width: 50%;
}
.row.contact-info {
    padding: 0 15px;
}
.information-contact .panel-body{padding:30px;overflow:auto;}

.contact-info .address-detail strong {
    background: url("../image/codezeel/cms-sprite.png") no-repeat scroll -6px -235px transparent;
    padding: 0px 0 0 40px;
    height:28px;
    margin:10px 0 0;
    float:left;
    clear:both;
    font-weight: 600
}
.contact-info .address-detail,.contact-info .telephone,.contact-info .fax,  .contact-info .openingtime,.contact-info .comments{float:left;width:100%;}
.contact-info .telephone strong{
    background: url("../image/codezeel/cms-sprite.png") no-repeat scroll -5px -314px transparent;
    padding: 0px 0 0 40px;
    margin:10px 0 0;
    height:28px;
    float:left;
    clear:both;
    font-weight: 600
}
.contact-info .fax strong{
    background: url("../image/codezeel/cms-sprite.png") no-repeat scroll -5px -272px transparent;
    padding: 0px 0 0 40px;
    height:28px;
    margin:10px 0 0;
    float:left;
    clear:both;
    font-weight: 600
}
.contact-info .openingtime strong{
    background: url("../image/codezeel/cms-sprite.png") no-repeat scroll -5px -355px transparent;
    padding: 0px 0 0 40px;
    height:28px;
    margin:10px 0 0;
    float:left;
    clear:both;
    font-weight: 600
}
.contact-info .comments strong{
    background: url("../image/codezeel/cms-sprite.png") no-repeat scroll -5px -399px transparent;
    padding: 0px 0 0 40px;
    height:28px;
    margin:10px 0 0;
    float:left;
    clear:both;
    font-weight: 600
}
.contact-info address {
    margin: 0 0 0 40px;
    float:left;
    clear:both;
}
.address-detail .btn {
    clear: both;
    float: left;
    margin: 15px 0 0 37px;
}
#spinner {
    background: url(../image/codezeel/loading.gif) no-repeat center center #ffffff;
    width: 100%;
    height: 100%;
    z-index: 99;
    position: absolute;
    top: 0;
    background-size: 12%;
}
.main-slider {
    position: relative;
    width: 100%;
    float: left;
}
.main-slider .swiper-pager div {
    text-decoration: none;
    display: block;
    margin: 30px 0 0;
    position: absolute;
    z-index: 10;
    top: 40%;
    overflow: hidden;
    opacity: 0;
    filter: alpha(opacity=0);
    cursor: pointer;
    font-size: 0;
    height: 40px;
    width: 40px;
    border: 0;
    padding: 0px 14px;
    border-radius: 5px 5px;
    -webkit-border-radius: 5px 5px;
    background: none;
    -webkit-transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease;
    direction: ltr !important;
    background-color: #151515;
}
.main-slider:hover .swiper-pager div {
    opacity: 1;
    filter: alpha(opacity=100);
    -webkit-transition: all 200ms ease;
    -moz-transition: all 200ms ease;
    -o-transition: all 200ms ease;
    transition: all 200ms ease;
}
.main-slider .swiper-pager div:before {
    color: #fff;
    display: inline-block;
    float: none;
    font-family: "FontAwesome";
    font-size: 32px;
    line-height: 32px;
    -webkit-transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease;
}
.main-slider .swiper-pager div:hover {
    background-color: #D14507;
}
.main-slider .swiper-pager .swiper-button-prev:before {
    content: '\2039';
}
.main-slider .swiper-pager .swiper-button-next:before {
    content: '\203a';
}
.main-slider .swiper-pager .swiper-button-prev {
    left: 50px;
}
.main-slider .swiper-pager .swiper-button-next {
    right: 50px;
    text-align: right;
}
.main-slider:hover .swiper-pager .swiper-button-prev {
    left: 95px;
}
.main-slider:hover .swiper-pager .swiper-button-next {
    right: 95px;
}

.information-sitemap .sitge-map ul{padding:0 0 0 20px;}
.forget-password {margin: 5px 0 0;}
.productpage .write-review,.productpage .review-count {margin: 0 10px;}
.productpage .rating-wrapper, .quickview .rating-wrapper { margin: 5px 0 5px;}
.quickview .review-count , .quickview .write-review { display:none; }

#content.productpage ul.list-unstyled{border-bottom:medium none;}
.panel-default>.panel-heading:hover{  border-color: #888; }
.panel-default>.panel-heading:hover .panel-title {background-color: #ffffff;}
#accordion h4.panel-title a.accordion-toggle {display: block;}
.checkout-cart #accordion .panel-title > a, .checkout-checkout #accordion .panel-title {
    color: #444;
    font-weight: 500;
    padding: 10px;
}
#accordion .panel-title > a {color: inherit;}
#accordion .panel-heading .fa.fa-caret-down {float: right; margin-top:4px;}
#accordion .col-sm-10 {width: 75%;}
#accordion .form-horizontal .control-label {text-align:left;}
#accordion .panel-default .panel-body h2 {
    font-size: 16px;
    font-weight: 500;
    text-transform: capitalize;
}
.checkout-cart #content .buttons .pull-left .btn {
    background-color: #222222;
    border-color: #222222;
    color: #ffffff;
}
.checkout-cart #content .buttons .pull-left .btn:hover,
.checkout-cart #content .buttons .pull-left .btn:focus,
.checkout-cart #content .buttons .pull-left .btn:active {
    background-color: #D14507;
    border-color: #D14507;
    color: #ffffff;
    outline: 0px;
}
.checkout-success p a {
    color: #262626;
}
.checkout-cart .hasCustomSelect{width: 95% !important;}

#content ul.list-unstyled.attr span {
    font-weight: 500;
    color: #222222;
    font-size: 14px;
}
#content ul.list-unstyled.attr {
    padding-bottom: 15px;
    border-bottom: 1px solid #dddddd;
    padding-top: 0;
    margin-bottom: 10px;
}
#content ul.list-unstyled.attr li{clear:both}
.productpage .product-right ul.price,.productpage .product-right ul.price {
    padding-bottom:10px
}
#content ul.list-unstyled.price li { float:left; padding:1px 0px; font-size: 12px; }

.productpage .product-right ul li span.old-price, .productpage .product-right ul li span.special-price {font-size: 18px; float: left; margin-bottom:0px; }

.productpage .product-right ul li.discount,.productpage .product-right ul li.rewardpoint,.productpage .product-right ul li.price-tax {
    clear: both;
}

span.old-price {
    margin-right: 10px;
    font-size: 19px;
    color: #666666;
    font-weight: 400;
}
#content h3.product-price,
#content h3.special-price {
    font-size: 22px;
    margin-bottom: 0;
    font-weight: 600;
    color: #000000;
}

div#product {
    padding-top: 5px;
}
#product .form-group.qty {
    padding: 0px;
    margin-top: 10px;
    margin-bottom: 15px;
}
div#product .form-group .hasCustomSelect{ width: 90% !important; }
.page-title{
    padding:0px;
}
.page-title,.refine-search,.product-title,.product-option {
    font-size: 18px;
    font-weight: 600;
    line-height: 24px;
    text-transform: capitalize;
    margin-bottom: 15px;
}
.copy-right {
    border-top: 1px solid #dddddd;
    padding: 10px 0;
    text-align:center;
}
.account-address .table>tbody>tr>td{vertical-align:middle;}
.account-address .btn-info{margin:2px 0;}

.affiliate-account .btn-primary .list-group-item,.affiliate-account .btn-primary .list-group-item:hover{padding:0; background:none; color:#fff;}


.shopping-cart .img-thumbnail{max-width:none;}

.shopping-cart .input-group .form-control {
    width: auto;
    height: 40px;
    text-align: center;
}

#accordion label.col-sm-2.control-label{margin:7px 0 0; padding:0 15px 0 0;}
#accordion #collapse-shipping label.col-sm-2.control-label{padding:0 15px;}
.checkout-checkout #accordion label.col-sm-2.control-label{padding-left:15px;}
.checkout-cart .input-group-btn:last-child > .btn, .checkout-cart .input-group-btn:last-child > .btn-group {
    margin-left: 5px;
    font-size: 13px;
    border-radius: 0px;
}
#checkout-cart .table.table-bordered td.text-right strong {
    font-weight: 500;
}

.col-sm-3.search_subcategory {width: auto; margin-top:7px;}
#product-search .sort span.customSelect {
    height: 40px;
}
#product-search .sort select.form-control.hasCustomSelect {
    padding: 0px;
    border-radius: 0px;
}

#button-search{float:right;}
.product-search h2{clear:both;}

/*----------------------- Manufacture Block Home page ----------------------*/

@keyframes swing {
    20% {
        transform: rotate3d(0, 0, 1, 15deg);
    }
    40% {
        transform: rotate3d(0, 0, 1, -10deg);
    }
    60% {
        transform: rotate3d(0, 0, 1, 5deg);
    }
    80% {
        transform: rotate3d(0, 0, 1, -5deg);
    }
    to {
        transform: rotate3d(0, 0, 1, 0deg);
    }
}

.banners-slider-carousel {
    margin-bottom: 20px;
    margin-top: 25px;
    position: relative;
    float: left;
    width: 100%;
    clear: both;
    text-align: center;
}
.banners-slider-carousel .carousel-block {
    position: relative;
    margin: 0px -15px;
    padding: 30px 0px 20px;
}
#carousel-0 .customNavigation a {
    position: absolute;
}
.banners-slider-carousel .product-block .product-block-inner {
    text-align: center;
    background-color: transparent;
}
.banners-slider-carousel img {
    max-width: 100%;
    cursor: pointer;
    -webkit-transition: all 0.5s ease 0s;
    -moz-transition: all 0.5s ease 0s;
    -o-transition: all 0.5s ease 0s;
    transition: all 0.5s ease 0s;
}
.banners-slider-carousel .product-block:hover img {
    -webkit-transition-duration: 400ms;
    -moz-transition-duration: 400ms;
    -ms-transition-duration: 400ms;
    -o-transition-duration: 400ms;
    transition-duration: 400ms;
    animation: 3s linear 2s swing;
    animation: swing 2s;
}

@-webkit-keyframes slideDashXopp {
    from { -webkit-transform: translateX( 0% ); transform: translateX( 0% ); -moz-transform: translateX( 0% ); -ms-transform: translateX( 0% ); -o-transform: translateX( 0% );  }
    to   { -webkit-transform: translateX( -50% ); transform: translateX( -50% ); -moz-transform: translateX( -50% ); -ms-transform: translateX( -50% ); -o-transform: translateX( -50% );}
}


@-moz-keyframes slideDashXopp {
    from { -webkit-transform: translateX( 0% ); transform: translateX( 0% ); -moz-transform: translateX( 0% ); -ms-transform: translateX( 0% ); -o-transform: translateX( 0% );  }
    to   { -webkit-transform: translateX( -50% ); transform: translateX( -50% ); -moz-transform: translateX( -50% ); -ms-transform: translateX( -50% ); -o-transform: translateX( -50% );}
}

@keyframes slideDashXopp {
    from { -webkit-transform: translateX( 0% ); transform: translateX( 0% ); -moz-transform: translateX( 0% ); -ms-transform: translateX( 0% ); -o-transform: translateX( 0% );  }
    to   { -webkit-transform: translateX( -50% ); transform: translateX( -50% ); -moz-transform: translateX( -50% ); -ms-transform: translateX( -50% ); -o-transform: translateX( -50% );}
}

@-webkit-keyframes slideDash {
    from { -webkit-transform: translateX( -50% ); transform: translateX( -50% ); -moz-transform: translateX( -50% ); -ms-transform: translateX( -50% ); -o-transform: translateX( -50% ); }
    to   { -webkit-transform: translateX( 0% ); transform: translateX( 0% ); -moz-transform: translateX( 0% ); -ms-transform: translateX( 0% ); -o-transform: translateX( 0% ); }
}


@-moz-keyframes slideDash {
    from { -webkit-transform: translateX( -50% ); transform: translateX( -50% ); -moz-transform: translateX( -50% ); -ms-transform: translateX( -50% ); -o-transform: translateX( -50% ); }
    to   { -webkit-transform: translateX(   0% ); transform: translateX( 0% ); -moz-transform: translateX( 0% ); -ms-transform: translateX( 0% ); -o-transform: translateX( 0% ); }
}

@keyframes slideDash {
    from { -webkit-transform: translateX( -50% ); transform: translateX( -50% ); -moz-transform: translateX( -50% ); -ms-transform: translateX( -50% ); -o-transform: translateX( -50% ); }
    to   { -webkit-transform: translateX(   0% ); transform: translateX( 0% ); -moz-transform: translateX( 0% ); -ms-transform: translateX( 0% ); -o-transform: translateX( 0% ); }
}


@-webkit-keyframes slideDashY {
    from { -webkit-transform: translateY( -50% ); transform: translateY( -50% ); -moz-transform: translateY( -50% ); -ms-transform: translateY( -50% ); -o-transform: translateY( -50% ); }
    to   { -webkit-transform: translateY( 0% ); transform: translateY( 0% ); -moz-transform: translateY( 0% ); -ms-transform: translateY( 0% ); -o-transform: translateY( 0% ); }
}


@-moz-keyframes slideDashY {
    from { -webkit-transform: translateY( -50% ); transform: translateY( -50% ); -moz-transform: translateY( -50% ); -ms-transform: translateY( -50% ); -o-transform: translateY( -50% ); }
    to   { -webkit-transform: translateY( 0% ); transform: translateY( 0% ); -moz-transform: translateY( 0% ); -ms-transform: translateY( 0% ); -o-transform: translateY( 0% ); }
}

@keyframes slideDashY {
    from { -webkit-transform: translateY( -50% ); transform: translateY( -50% ); -moz-transform: translateY( -50% ); -ms-transform: translateY( -50% ); -o-transform: translateY( -50% ); }
    to   { -webkit-transform: translateY( 0% ); transform: translateY( 0% ); -moz-transform: translateY( 0% ); -ms-transform: translateY( 0% ); -o-transform: translateY( 0% ); }
}


@-webkit-keyframes slideDashYopp {
    from { -webkit-transform: translateY( 0% ); transform: translateY( 0% ); -moz-transform: translateY( 0% ); -ms-transform: translateY( 0% ); -o-transform: translateY( 0% ); }
    to   {  -webkit-transform: translateY( -50% ); transform: translateY( -50% ); -moz-transform: translateY( -50% ); -ms-transform: translateY( -50% ); -o-transform: translateY( -50% );}
}


@-moz-keyframes slideDashYopp {
    from { -webkit-transform: translateY( 0% ); transform: translateY( 0% ); -moz-transform: translateY( 0% ); -ms-transform: translateY( 0% ); -o-transform: translateY( 0% ); }
    to   {  -webkit-transform: translateY( -50% ); transform: translateY( -50% ); -moz-transform: translateY( -50% ); -ms-transform: translateY( -50% ); -o-transform: translateY( -50% );}
}

@keyframes slideDashYopp {
    from { -webkit-transform: translateY( 0% ); transform: translateY( 0% ); -moz-transform: translateY( 0% ); -ms-transform: translateY( 0% ); -o-transform: translateY( 0% ); }
    to   {  -webkit-transform: translateY( -50% ); transform: translateY( -50% ); -moz-transform: translateY( -50% ); -ms-transform: translateY( -50% ); -o-transform: translateY( -50% );}
}



/* CMS */

.box .box-content ul li .hitarea {
    position: absolute;
    right: 5px;
    top: 6px;
}
.box .box-content ul li:last-child a {
    border: medium none;
}
.box .box-content ul li ul li a {
    border: none;
}
section.page-container.container .container {
    padding: 0;
}
.box.category
.box .box-content .box-category {
    padding: 0px;
}
#content .content ul li {
    line-height:22px;
    padding:5px;
}
#column-left #nav-one li .megamenu ul.list-unstyled li > a {
    background: none;
    padding: 0;
    margin-bottom: 5px;
    border: 0;
}
.box.category .box-content li > a:hover,
.box .box-content ul li ul li + li{border-top:medium none;}
.box .box-content ul li a , #content .content ul li a {
    padding: 5px 0;
    color: #555555;
    text-transform: capitalize;
    line-height: 20px;
    display: inline-block;
    vertical-align: top;
    width: 100%;
}
.box .box-content ul li a + a , .box .box-content ul li a + a:hover{ background:none; padding-left:0; }
.box .box-content ul li a:hover , #content .content ul li a:hover{
    color: #D14507;
}

.single-banner { margin:0px 0px 30px; border: 0; text-align: center;}
#column-left .swiper-wrapper {
    height: auto;
}
#column-left .single-banner .swiper-pagination,
#column-right .single-banner .swiper-pagination{
    display: none;
}
#column-left .single-banner .swiper-slide a:before,
#column-right .single-banner .swiper-slide a:before{
    background: rgba(255, 255, 255, 0.59);
    bottom: 0;
    content: "";
    height: 0;
    opacity: 1;
    filter: alpha(opacity=100);
    position: absolute;
    right: 0;
    width: 0;
}
#column-left .single-banner .swiper-slide:hover a:before,
#column-right .single-banner .swiper-slide:hover a:before{
    width: 100%;
    height: 100%;
    -webkit-transition-duration: 1.0s;
    transition-duration: 1.0s;
    opacity: 0;
    filter: alpha(opacity=0);
    width: 100%;
}
#content .single-banner { margin:15px 0 50px; }
#content #banner2 a { position:relative; display:block; }
#content #banner2 a:before {
    content:"";
    position:absolute;
    box-shadow:0 0 125px rgba(0,0,0,0.56) inset;
    height:100%;
    width:100%;
    opacity: 0;
    filter: alpha(opacity=0);
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    z-index:9;
}
#content #banner2:hover a:before {
    opacity: 1;
    filter: alpha(opacity=100);
}

.box .box-content ul ul li ul {padding:0;}

.box .box-content ul ul li:hover ul {
    display: block;
}
.product-block-inner a img{vertical-align:middle;}


    .slider-item .product-block-inner a img {
        object-fit: none;
    }
.box-category-heading {
    background-color: #000;
    color: #fff;
    padding: 20px;
    font-size: 14px;
    font-weight:600;
    text-transform: uppercase;
    width: 270px;
    float: left;
    overflow:hidden;
    position:relative;
    letter-spacing: 0.5px;
    cursor:pointer;
}
.box-category-heading .fa {
    float: right;
    font-size: 20px;
    font-weight: 600;
}

.shipping-cms {
    display: inline-block;
    background:url(../image/codezeel/plane.png) no-repeat scroll left center transparent;
    height: 26px;
    padding-left: 75px;
}

.shipping-text .text1{
    text-transform: uppercase;
    font-weight: 700;
    font-size: 14px;
    color: #64c1dd;
}

.shipping-text .text2{
    font-weight: 300;
    text-transform: uppercase;
}


.contact-text .text1 {
    color:#1e1f22;
    font-weight:600;
    text-transform:uppercase;
    display:inline-block
}

.contact-text .text2 {
    color:#f2ab33;
    text-transform:uppercase;
    display:none
}

.content_footer_top {
    background: #262626;
}
.site-map ul li { line-height: 36px;  }
.content_footer_top .container { padding-top:0; }
.content_footer_bottom {
    text-align:center;
}
.footer-blocks {
    display: inline-block;
    vertical-align: top;
    width: 100%;
    padding: 60px 0px 61px;
    position:relative;
}
.footer-blocks .footerleft .footerdiv{padding-right:0px;}
.footer-blocks .footerleft #footerlogo .footerlogo{
    width: 100%;
    min-height: 55px;
    background: transparent url(../image/codezeel/footer-logo.png) no-repeat scroll 0 0;
    max-width: 314px;
    margin-bottom: 10px;
}
.footer-blocks .footerleft #footerlogo .footerlogo img{
    max-width: 100%;
}
.footer-blocks .footerleft #footerlogo .footerdesc{
    padding: 0;
    line-height: 30px;
}
.footer-blocks .footerleft #footerlogo .social-block {
    left: 5px;
    position: absolute;
}
.footer-blocks .footerleft .social-block ul{ padding: 0px; }
.footer-blocks .footerleft .social-block ul li{
    display: inline-block;
    text-align: center;
    margin: 0;
}
#footer .footer-blocks .footerleft .social-block ul li a{
    color:#848484;
    display: inline-block;
    font-size: 18px;
    line-height: 34px;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    padding-left: 0px;
    padding-right: 0;
}
.footer-blocks .footerleft .social-block ul li a span{  display:none; background-color:#000; }
#footer  .footer-blocks .footerleft .social-block ul li a:hover {

    -webkit-transition: 500ms;
    transition: 500ms;
    color: #D14507;
}
.footer-blocks .footerleft .social-block ul li a:before {
    font-family: "FontAwesome";
    display: inline-block;
    font-weight: normal;
    height: 35px;
    width: 35px;
}
.footer-blocks .footerleft .social-block ul li.facebook a:before{ content: "\f09a";  }
.footer-blocks .footerleft .social-block ul li.twitter a:before{     content: "\f099"; }
.footer-blocks .footerleft .social-block ul li.rss a:before{  content: "\f09e"; }
.footer-blocks .footerleft .social-block ul li.google-plus a:before{ content: "\f0d5";  }
.footer-blocks .footerleft .social-block ul li.instagram a:before{content:"\F16D";}

/* Tab cms */
.tab-head , .box-head {
    text-align: center;
}
.hometab,.categorytab {
    clear: both;
    float: left;
    width: 100%;
    position: relative;
    margin: 40px 0px 20px;
}
.categorytab .tabs {
    line-height: normal;
    padding: 0;
    border-bottom: medium none;
    min-height:405px;
}
#tabs_info {
    margin-top: 50px;
    margin-bottom: 20px;
    float: left;
    width: 100%;
    clear: both;
}
#tabs_info .nav-tabs,
.etabs {
    float: none;
    padding: 0;
    text-align: left;
    margin-top: 0px;
}
#tabs ul.etabs {
    margin: 0px 35px 15px 0px;
    float: right;
    text-align: right;
    margin-top: -57px;
}
#tabs_info .tab-content {
    padding: 25px 15px;
    border: 0px;
    background: #fff;
    text-align: left;
    margin-bottom: 0;
    border-radius: 0px 5px 5px 5px;
    -webkit-border-radius: 0px 5px 5px 5px;
}
#tabs_info .tab-content .tab-pane{ padding: 0px; border: 0px; }
#tabs_info b, #tabs_info strong {
    font-weight: 500;
    color: #222222;
}
.htabs .etabs li,.categorytab .nav-tabs li, #tabs_info .nav-tabs  li {
    display: inline-block;
    vertical-align: top;
    float: none;
    list-style: none outside none;
    position: relative;
    margin: 0 0px;
}
.hometab #tabs ul.etabs li.tab:first-child a {
    margin-left: 0px;
}
.categorytab .nav-tabs{border:none; float: right; margin-right: 55px; margin-top: -37px; padding:0;}

#tabs_info .nav-tabs li:last-child,
.htabs .etabs li:last-child,.categorytab .nav-tabs li:last-child {background:none}
#tabs_info .nav-tabs li {
    margin-left: 0px; margin-right: 0;
    float: left;
}
#tabs_info .nav-tabs li:first-child a {
    margin-left: 0px;
}
#tabs_info .nav-tabs a,
.nav-tabs a, .htabs a,.categorytab .nav-tabs a {
    color: #222222;
    display: block;
    text-transform: capitalize;
    float: left;
    font-weight: 500;
    font-size: 15px;
    line-height: 22px;
    border: 0px;
    border-bottom: 0px;
    margin: 0px 20px;
    padding: 0px 0px;
    text-align: center;
    position: relative;
}
.htabs li:hover a {
    color: #D14507;
}
#tabs_info .nav.nav-tabs li a {
    border-bottom: 0px;
    padding: 15px 15px 12px;
    margin: 0px 3px;
    border-radius: 5px 5px 0px 0px;
    -webkit-border-radius: 5px 5px 0px 0px;
}
#tabs_info .nav.nav-tabs li:first-child a {
    margin-left: 0px;
}
#tabs_info .nav.nav-tabs li.active a,
#tabs_info .nav.nav-tabs li:hover a {
    background-color: #ffffff;
}
#tabs_info .nav-tabs li.active a, .nav-tabs a, .htabs a.selected, .categorytab .nav-tabs li.active a,
.htabs a:hover, #tabs_info .nav-tabs a:hover {
    color: #D14507;
    -webkit-transition: all 0.5s ease 0s;
    -moz-transition: all 0.5s ease 0s;
    -o-transition: all 0.5s ease 0s;
    transition: all 0.5s ease 0s;
}
.htabs .etabs li a:before {
    content: "";
    position: absolute;
    width: 0;
    height: 2px;
    background: #D14507;
    bottom: -15px;
    left: 0;
    right: 0;
    margin: 0 auto 0;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
}
.htabs .etabs li a.selected:before,
.htabs .etabs li.active a.selected:before,
.htabs .etabs li:hover a:before {
    width: 100%;
}
#tabs_info .nav-tabs a {
    padding-bottom: 14px;
}
.tab-content .tab {
    display: none;
}
.tab-content {
    position:relative;
    padding: 0px;
    z-index: 2;
    overflow: visible;
    margin-bottom:0px;
}
.btn_viewmore {
    margin-top: 35px;
    margin-bottom: 20px;
}
.cz-status {
    bottom: 0;
    display: none;
    color: #222222;
    font-size: 16px;
    left: 0;
    position: relative;
    right: 0;
    text-align: center;
    line-height: 40px;
}
.viewmore {
    width: auto;
    text-align: center;
}
/* End Tab cms */

/*Codezeel Blog CSS */
#content .box-product .blog-items { float:left; }

.blog-left {
    position:relative;
}
.blog-image{position:relative; overflow:hidden;}
.blog-left .blog-image img  { width:100%; height:100%; padding:0; border:none; }
#blog-carousel .product-block .blog-image img, #blog-grid .product-block .blog-image img {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
    -webkit-transition: all 500ms ease 0s;
    -moz-transition: all 500ms ease 0s;
    -o-transition: all 500ms ease 0s;
    transition: all 500ms ease 0s;
}
#blog-carousel .product-block:hover .blog-image img, #blog-grid .product-block:hover .blog-image img {
    -webkit-transform: scale(1.05);
    -ms-transform: scale(1.05);
    transform: scale(1.05);
    -webkit-transition: all 500ms ease 0s;
    -moz-transition: all 500ms ease 0s;
    -o-transition: all 500ms ease 0s;
    transition: all 500ms ease 0s;
}
.blog-right {
    text-align: left;
    padding: 20px 20px;
    border-top: 0;
}
.blog-right .blog-desc,
.blog-right .view-blog {
    margin-bottom: 0;
    line-height: 22px;
    color: #666666;
    font-weight: 400;
}
.blog-right .view-blog .read-more a{
    color: #D14507;
}
.blog-right h4{
    margin-top: 0px;
    margin-bottom: 10px;
}
.blog-right h4 {
    font-weight: 500;
    line-height: 26px;
    font-size: 16px;
    color: #222222;
    text-transform: initial;
    margin: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    clear: both;
    margin-bottom: 6px;
}

.view-blog { float:left; width:100%; text-align:left; margin:0 0 10px; }
.read-more { float:left; text-transform:capitalize }

.read-more .fa{display:none;}

.write-comment { float:right; }
.date-time { float:left; text-align:left; text-transform: uppercase; }
.date-comment .fa { padding-right: 5px; }
.date-time .fa{
    display: none; }

.blog_default_width{ width:390px;}

.blog-desc {
    margin: 0px 0 0px;
    line-height: 26px;
    clear:both;
}
.blog-img { padding: 0px; }
.blog-right-content .blog-desc {
    margin: 0 0 15px;
}
.comment-wrapper {
    position: relative;
    float: right;
    margin: 0;
    color: #222222;
    font-size: 14px;
}
.comment-wrapper .write-comment a::before {
    color: #808080;
    content: "\f0e5";
    float: left;
    font-family: "FontAwesome";
    font-size: 14px;
    margin-right: 7px;
}

.blog-img .img-thumbnail{border:none}
.blogs .customNavigation {
    top: -56px;
}
.blogs {
    margin-top: 40px;
    margin-bottom: 30px;
    float: left;
    width: 100%;
}
.blogs .product-items {
    width: 32.95%;
    float: none;
    display: inline-block;
    vertical-align: top;
}

#blog-carousel, #content #blog-grid {
    padding:0px;
    border:none;
    overflow: visible
}
#blog-carousel .product-block .product-block-inner, #blog-grid .product-block .product-block-inner {
    border: 0px;
}
#blog-carousel .product-block:hover , #blog-grid .product-block:hover  { box-shadow:none; -webkit-box-shadow:none; -moz-box-shadow:none; }
#blog-carousel .owl-pagination { bottom:-5px; display:none}

#blog-carousel .product-block .write-comment,
#blog-grid .product-block .write-comment{
    float: left;
    padding-right: 15px;
    margin-right: 15px;
}
.information-blogger .single-blog h1 {
    font-weight: 500;
    text-transform: initial;
    color: #222222;
    font-size: 19px;
    margin-bottom: 20px;
}
.single-blog .blog-img{position:relative; margin-bottom:20px;}
.single-blog .panel-default{border:medium none;background-color: transparent;}
.single-blog .panel-default a {
    text-decoration: underline;
}
.single-blog .panel-default a:hover {
    text-decoration: none;
}
#add-comment .col-sm-10.buttons {
    padding: 0 8px;
}
.single-blog .blog-desc { padding-bottom: 30px; }
.single-blog .block-title h3 { padding-top: 10px; }
.single-blog .view-comment .panel-default {
    box-shadow: none;
    -webkit-box-shadow:none;
    -moz-box-shadow:none;
    background-color: #fff;
    border:1px solid #dddddd;
    border-bottom:2px solid #dddddd;
    padding:15px;
}
.view-comment .col-sm-3 .name{font-weight:600; color:#262626;}
.view-comment .col-sm-3 .date{color: #888888;}
.single-blog .view-comment .name, .single-blog .view-comment .date, .single-blog .view-comment .comment-text, .single-blog .view-comment .col-sm-3 {
    width: 100%;
}
.user_icon {
    background-color: #fff;
    border-right: 1px solid #dddddd;
    float: left;
    margin: 0px 15px 0 0;
    padding: 10px 15px;
    text-align:center;
}
.comment_info{float:right; width:83%; }
.comment_info .comment-text{margin-top:12px;}
.view-comment{clear:both;}


/*Codezeel Blog light-box CSS */

.all-blog .blog-left-content:hover .post-image-hover,
.blogs .product-block:hover .post-image-hover {
    background: rgba(0,0,0,.4);
    transition: opacity 0.35s ease 0s, transform 0.35s ease 0s;
    -webkit-transition: opacity 0.35s ease 0s, -webkit-transform 0.35s ease 0s;
    -moz-transition: opacity 0.35s ease 0s, -moz-transform 0.35s ease 0s;
    -ms-transition: opacity 0.35s ease 0s, -ms-transform 0.35s ease 0s;
    -o-transition: opacity 0.35s ease 0s, -o-transform 0.35s ease 0s;
    -webkit-transition: all 500ms ease 0s;
    -moz-transition: all 500ms ease 0s;
    -o-transition: all 500ms ease 0s;
    transition: all 500ms ease 0s;
}

.post-image-hover {
    height: 100%;
    position: absolute;
    top: 0;
    left:0;
    transform: translate3d(0px, 0px, 0px);
    -webkit-transform: translate3d(0px, 0px, 0px);
    -moz-transform: translate3d(0px, 0px, 0px);
    -ms-transform: translate3d(0px, 0px, 0px);
    -o-transform: translate3d(0px, 0px, 0px);
    width: 100%;
    -webkit-transition: all 500ms ease 0s;
    -moz-transition: all 500ms ease 0s;
    -o-transition: all 500ms ease 0s;
    transition: all 500ms ease 0s;
}
.blog-image .post_hover {
    bottom: 0;
    height: 40px;
    left: 0;
    margin: auto;
    position: absolute;
    right: 0;
    -webkit-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
    top: 0;
    width: 90px;
    opacity: 0;
    filter: alpha(opacity=0);
}

.blogs .product-block:hover .post_hover{
    opacity: 1;
    filter: alpha(opacity=100);

}
.product-block .blog-left:hover .zoom, .product-block .blog-left:hover .readmore_link,
.all-blog .blog-left-content:hover .zoom, .all-blog .blog-left-content:hover .readmore_link {
    opacity: 1;
    filter: alpha(opacity=100);
}

.blog-left .icon.zoom .fa, .blog-left .icon.readmore_link .fa {
    font-size: 14px;
    transition: all 0.5s ease 0s;
    -moz-transition: all 0.5s ease 0s;
    -webkit-transition: all 0.5s ease 0s;
    -ms-transition: all 0.5s ease 0s;
    -o-transition: all 0.5s ease 0s;
}
.blog-image .icon.readmore_link {
    margin-left: 2px;
}
.blog-left-content .blog-image .icon,
.blog-left .blog-image .icon {
    display: inline-block;
    float: none;
    height: 40px;
    width: 40px;
    line-height: 12px;
    border: 2px solid white;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    color: #fff;
    font-size: 12px;
    padding: 10px;
    -webkit-transition: all 0.2s ease 0s;
    transition: all 0.2s ease 0s;
    text-align: center;
}
.blog-left-content .blog-image .icon:hover,
.blog-left .blog-image .icon:hover {
    border-color:#D14507;
    background:#D14507;
}
.all-blog .blog-left-content { float:left;  width:100%; }

.all-blog .blog-left-content .blog-image { float:left; position:relative; }

.blog-right-content {
    clear: both;
    float: left;
    width: 100%;
}
.blog-left-content .blog-title {
    font-size: 20px;
    font-weight: 500;
    margin: 0px 0 15px;
    padding: 0px 0px 0px;
    position: relative;
    text-transform: initial;
}
.blog-left-content .blog-title a {
    font-size: 20px;
    line-height: 30px;
    font-weight: 500;
    text-transform: initial;
    padding: 0 0;
    margin: 0 0 20px;
    color: #222222;
}

.blog-right-content .read-more a:hover::after {
    color: #fff;
}
.blog-right-content .read-more a:hover{
    color:#fff;
    background-color: #000;
    border-color:#000;
}
.blog-right-content .write-comment,
.blog-right-content .write-comment a {
    color: #222222;
}
.blog-right-content .write-comment a:hover,
.blog-right-content .write-comment a:hover:before{color:#D14507;}
.write-comment-count{float:left; margin-right:15px;}
.information-blogger-blogs .write-comment {
    float: left;
}

.information-blogger-blogs .blog-image img {
    display: none;
}
.all-blog h1 {
    font-weight: 500;
}
.all-blog .blog-right-content {
    padding: 12px 0px 10px;
    margin: 0px 0px 20px;
    border-bottom: 1px solid #dddddd;
}
.information-blogger-blogs .read-more a:hover,
.information-blogger-blogs .read-more a:focus,
.information-blogger-blogs .read-more a.active {
    color: #ffffff;
    background: #222222;
    border: 1px solid #222222;
}

.information-blogger-blogs .blog-image {
    margin-bottom: 0px;
    background-position: center center;
    height: 400px;
    overflow: hidden;
    width: 100%;
    background-repeat: no-repeat;
}

.information-blogger-blogs .panel-body {
    padding: 0 0 15px 0;
    margin: 0px 0px 40px;
    position: relative;
    border-bottom: 2px solid #dddddd;
}

.information-blogger-blogs .panel-default {
    border: none;
    margin-bottom: 20px;
    background-color:transparent;
}

.information-blogger-blogs .panel-default:last-child{margin-bottom:0px; }

.blog-left-content:hover .post-image-hover::before {
    opacity: 1;
    filter: alpha(opacity=100);
}

.date-comment {
    width: 100%;
    padding: 4px 0 8px;
    float: left;
    z-index:9;
    transition: all 0.3s ease 0s;
    -webkit-transition: all 0.3s ease 0s;
    -moz-transition: all 0.3s ease 0s;
    -ms-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
}
.date-comment a {color: #808080; }
.blog-date-comment{
    margin-bottom: 0px;
    float: left;
    width: 100%;
    padding-bottom: 0px;
}
.blog-date {
    color: #000000;
    padding-bottom: 10px;
    font-size: 14px;
    font-weight: 500;
}
.blog-date-comment .blog-date {
    float: left;
    padding-bottom: 0px;
    color: #000000;
    font-size: 14px;
}
/* .blog-date-comment .blog-date:before {
	color: #D14507;
} */
.blog-date:before {
    color: #000000;
    content: "\f073";
    float: left;
    font-family: "FontAwesome";
    font-size: 13px;
    margin-right: 7px;
}
.image-comment{position:relative; margin-bottom:15px;}
#content #blog-carousel .product-block .date-comment, #content #blog-grid .product-block .date-comment {
    position: relative;
    margin: 0;
    padding: 0px 0 8px;
    text-align: center;
}
.blogs .date-time {
    margin: 0;
    font-size: 14px;
    font-weight: 500;
    text-transform: capitalize;
    letter-spacing: 0.5px;
    line-height: 18px;
    color: #D14507;
    float: none;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
}
.blog-right h4 a {
    color: #222222;
}
#content #blog-carousel .product-block .blog-right h4:hover,
#content #blog-grid .product-block .blog-right h4:hover {
    color: #D14507;
}
.blog-right h4:hover a {
    color: #D14507;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
.blog-right h4 a:hover {
    color: #D14507;
}

.information-blogger-blogs .read-more {
    float: right;
    margin: 10px 0 0;
    line-height: 22px;
}
.all-blog .blog-left-content:hover .post_hover {
    opacity: 1;
    filter: alpha(opacity=100);
    transition: all 0.5s ease 0s;
    -moz-transition: all 0.5s ease 0s;
    -webkit-transition: all 0.5s ease 0s;
    -ms-transition: all 0.5s ease 0s;
    -o-transition: all 0.5s ease 0s;
}
#add-comment .col-sm-10 {
    width: 66.6667%;
}

#add-comment .col-sm-2 {
    width: 25%;
}

.blogs .buttons,#blog-carousel .owl-pagination{display:none}

/*Codezeel Blog light-box CSS */

/*Codezeel Blog CSS */


/* Datetimepicker Css */
.bootstrap-datetimepicker-widget {
    border-radius:0 !important;
    -webkit-border-radius:0 !important;
}

.bootstrap-datetimepicker-widget td,
.bootstrap-datetimepicker-widget th {
    border-radius:0 !important;
    -webkit-border-radius:0 !important;
}

.bootstrap-datetimepicker-widget td.day:hover,
.bootstrap-datetimepicker-widget td.hour:hover,
.bootstrap-datetimepicker-widget td.minute:hover,
.bootstrap-datetimepicker-widget td.second:hover{
    background: #000 !important;
    color: #fff;
}

.bootstrap-datetimepicker-widget td.today:before {border-bottom: 7px solid #262626 !important;}

.bootstrap-datetimepicker-widget td.active,
.bootstrap-datetimepicker-widget td.active:hover{
    background-color:#262626 !important;
    color: #161b1e !important;
}

.bootstrap-datetimepicker-widget td.active.today:before {
    border-bottom-color:#161b1e !important;
}

.bootstrap-datetimepicker-widget td span {
    border-radius:0 !important;
    -webkit-border-radius:0 !important;
    background-color: #f3f3f3 !important;
}

.bootstrap-datetimepicker-widget td span:hover {background: #888888 !important; color:#FFFFFF}

.bootstrap-datetimepicker-widget td span.active {
    background-color: #888888 !important;
    color: #FFFFFF !important;
}

.bootstrap-datetimepicker-widget thead tr:first-child th:hover {
    background:#f3f3f3 !important;
}

.bootstrap-datetimepicker-widget td span.old:hover{color:#fff !important}

.picker-switch.accordion-toggle .btn{border:none; background-color:#262626; color:#fff}

.bootstrap-datetimepicker-widget td.day{position:relative;}

.bootstrap-datetimepicker-widget td.day.active:before {
    border-bottom: 7px solid #fff !important;
    content: '';
    display: inline-block;
    border-left: 7px solid transparent;
    border-top-color: rgba(0,0,0,.2);
    position: absolute;
    bottom: 4px;
    right: 4px;
}
.bootstrap-datetimepicker-widget td.active, .bootstrap-datetimepicker-widget td.active:hover {
    background-color: #262626 !important;
    color: #fff !important;
    text-shadow: 0 -1px 0 rgba(0,0,0,.25);
}

.bootstrap-datetimepicker-widget a[data-action]{border:none;}
/* End Datetimepicker Css */

#affiliate-login .well,
#account-login .well {
    padding: 30px;
}

#form-review .col-sm-2, #form-review .col-sm-10{width:100%;}
#product-category h1.page-title {
    border-bottom: 1px solid #dddddd;
    padding-bottom: 15px;
    margin-bottom: 20px;
}
.container h1, .container h2 {
    clear: both;
    font: 600 18px/26px 'Heebo', sans-serif;
    color: #222222;
    text-transform: uppercase;
    margin-bottom: 20px;
    padding-top: 10px;
}
#content h3{color:#222222; margin-bottom:15px; font-weight: 500;}
#form-review > h3{font-size:15px; font-weight: 500;}
#content h3.product-title {
    font-size: 22px;
    font-weight: 400;
    padding: 0 0 4px;
    color: #222222;
    text-transform: inherit;
}
#content h3.product-title, #content h3.product-option {
    margin-bottom: 8px;
    margin-top: 12px;
}
#content h3.product-option { text-transform:capitalize; font-size: 16px; }
.breadcrumb + .row {
    clear: both;
}
#content table thead tr td {
    background:#f8f8f8 none repeat scroll 0 0;
    color: #222222;
    font-weight: 500;
}
.account-account #content ul.list-unstyled{margin-bottom:25px; }

.content-top .container{ padding-top:0px; }


/* QUCIK-VIEW */
.productpage-quickview .product-left { width:50%; float:left; }
.productpage-quickview .product-right { width:50%; float:left; clear:none !important; }
.quickview .product-right ul li.discount, .quickview .product-right ul li.rewardpoint, .quickview .product-right ul li.price-tax { clear:both; }
.quickview { background:#FFFFFF; padding:15px 0; display:inline-block; width:100%; }
.quickview .container { width:100%; background:#FFFFFF; padding:0 10px; }
.quickview .container .row { margin:0; }
.quickview .top_button { display:none; }
.quickview #product2 { float:left; width:100%; }
.quickview #product2 h3 { width:100%; }
.quickview .form-group.cart-block.qty {
    padding: 0px;
}
.productpage-quickview #product2 h3 {
    background: rgba(0, 0, 0, 0) none repeat scroll 0 0;
    font-size: 14px;
    font-weight: 600;
    margin: 0 0 10px;
    padding: 0;
    text-transform: none;
    color:#262626;
}

.quickview-button  {
    display: none;
    margin-bottom: 1px;
}
.product-thumb .quickview-button a.quickbox {
    display: block;
    height: 36px;
    width: 36px;
    padding: 0px;
    transition: none;
    opacity: 1;
    filter: alpha(opacity=100);
    background-image: url(../image/codezeel/quickview.svg);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 19px;
}
.quickview-button a.quickbox:hover,
.quickview-button a.quickbox:focus {
    outline: 0px;
    background-image: url(../image/codezeel/quickview-hover.svg);
}
.quickview-button a.quickbox .fa { display: none; }
.alert.alert-success.animated {
    width: 30%;
    left: auto !important;
    right: 0px !important;
    text-align: center;
    vertical-align: middle;
    padding: 20px 20px;
    /* opacity: 0.95 !important;
    filter: alpha(opacity=0.95) !important; */
    background-color: #ffffff  !important;
    border-color: #ffffff !important;
    color: #000000 !important;
    -webkit-box-shadow: 0 5px 20px rgb(0 0 0 / 18%);
    box-shadow: 0 5px 20px rgb(0 0 0 / 18%);
}
.alert.alert-success.animated span { font-size: 15px !important; }
.alert.alert-success.animated span a { color:#000000; text-decoration: underline; }
.alert.alert-success.animated span .fa.fa-check-circle { color:#9bcf85; }
.alert.alert-success.animated button.close {
    opacity: 1;
    filter: alpha(opacity=100);
    color:#000000;
}
.account-login .well .form-group a, .affiliate-login .well .form-group a{line-height:30px;}

.form-group.qty {
    clear: both;
    overflow: hidden;
    position: relative;
    margin-top: 20px;
    margin-bottom: 30px;
    padding: 20px 20px 15px;
}
.productpage .form-group.qty .btn_cart {
    float: left;
}
.productpage .form-group.qty .btn_wish_comp, .quickview .btn_wish_comp {
    float: left;
    width: 100%;
    margin-top: 14px;
    margin-bottom: 18px;
}
#button-cart,#button-cart2, .productpage .form-group.qty .wishlist, .productpage .form-group.qty .compare, .quickview .form-group.qty .wishlist, .quickview .form-group.qty .compare {float:left;}
.productpage .form-group.qty .wishlist, .quickview .form-group.qty .wishlist { margin: 0px 30px 0px 0px; }
.owl-carousel .item .image-container{float:left;}

/*********************  CMS Sub Banner homepage    ********************/

#czsubbannercmsblock {
    float: left;
    width: 100%;
    position: relative;
    margin: 30px 0 30px;
    clear: both;
}
#czsubbannercmsblock .subbanners {
    margin: 0 -15px;
}
#czsubbannercmsblock .subbanners .one-third {
    position: relative;
    width: 33.33%;
    float: left;
    padding: 0 15px;
    overflow: hidden;
}
#czsubbannercmsblock .subbanners .one-third .subbanner {
    position: relative;
    overflow: hidden;
    vertical-align: top;
    display: inline-block;
}
#czsubbannercmsblock .subbanners .subbanner img {
    max-width: 100%;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
}
#czsubbannercmsblock .subbanners .subbanner:hover img {
    -webkit-transform: scale(1.05);
    -ms-transform: scale(1.05);
    transform: scale(1.05);
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
}
#czsubbannercmsblock .subbanners .subbanner:before,
#czsubbannercmsblock .subbanners .subbanner:after,
#czsubbannercmsblock .subbanners .subbanner a.banner-anchor:before,
#czsubbannercmsblock .subbanners .subbanner a.banner-anchor:after {
    content: "";
    position: absolute;
    top: 0;
    width: 0;
    height: 0;
    background-color: hsl(0deg 0% 0% / 7%);
    z-index: 1;
    transition: 0.5s ease-in-out;
    visibility: hidden;
}
#czsubbannercmsblock .subbanners .subbanner:before,
#czsubbannercmsblock .subbanners .subbanner:after {
    top: auto;
    bottom: 0;
}
#czsubbannercmsblock .subbanners .subbanner:before {
    left: 25%;
    right: auto;
}
#czsubbannercmsblock .subbanners .subbanner:after {
    right: 0;
    left: auto;
}
#czsubbannercmsblock .subbanners .subbanner a.banner-anchor:before {
    left: 0;
    right: auto;
}
#czsubbannercmsblock .subbanners .subbanner a.banner-anchor:after {
    left: auto;
    right: 25%;
}
#czsubbannercmsblock .subbanners .subbanner:hover:before,
#czsubbannercmsblock .subbanners .subbanner:hover:after,
#czsubbannercmsblock .subbanners .subbanner:hover a.banner-anchor:before,
#czsubbannercmsblock .subbanners .subbanner:hover a.banner-anchor:after {
    transition-duration: 500ms;
    -webkit-transition-duration: 500ms;
    -moz-transition-duration: 500ms;
    -ms-transition-duration: 500ms;
    -o-transition-duration: 500ms;
    height: 100%;
    visibility: visible;
    width: 25%;
}
#czsubbannercmsblock .subbanners .subbanner a.banner-anchor {
    display: block;
    position: relative;
    overflow: hidden;
}
#czsubbannercmsblock .subbanners .one-third .subbanner .subbanner-text {
    position: absolute;
    right: 30px;
    text-align: left;
    top: 35px;
    bottom: auto;
    z-index: 2;
}
#czsubbannercmsblock .subbanners .one-third .subbanner .subbanner-text .shopnow a {
    font-weight: 500;
    font-size: 15px;
    color: #000000;
    text-decoration: underline;
}
#czsubbannercmsblock .subbanners .one-third .subbanner .subbanner-text .shopnow a:hover {
    text-decoration: none;
}
#czsubbannercmsblock .subbanners .one-third .subbanner .subbanner-text .shopnow {
    display: inline-block;
    vertical-align: top;
}
#czsubbannercmsblock .subbanners .one-third .subbanner .subbanner-text .offer-title {
    color: #ffffff;
    background-color: #D14507;
    font-size: 18px;
    font-weight: 300;
    padding: 3px 6px 0px;
    line-height: 24px;
    display: inline-block;
    vertical-align: top;
    text-transform: capitalize;
    transition: all 0.5s ease 0s;
    -webkit-transition: all 0.5s ease 0s;
    -moz-transition: all 0.5s ease 0s;
    -ms-transition: all 0.5s ease 0s;
    -o-transition: all 0.5s ease 0s;
}
#czsubbannercmsblock .subbanners .one-third .subbanner .subbanner-text .main-title {
    font-size: 26px;
    font-weight: 500;
    color: #000000;
    padding: 10px 0px 22px;
    line-height: 32px;
    text-transform: capitalize;
    -webkit-transition: all 500ms ease 0s;
    -moz-transition: all 500ms ease 0s;
    -o-transition: all 500ms ease 0s;
    transition: all 500ms ease 0s;
}
#czsubbannercmsblock .subbanners .one-third .subbanner .subbanner-text .main-title span {
    display: block;
}
@media (max-width: 1259px) {
    #czsubbannercmsblock .subbanners .one-third .subbanner .subbanner-text {
        top: 22px;
        right: 20px;
    }
}
@media (max-width: 1199px) {
    #czsubbannercmsblock .subbanners .one-third .subbanner .subbanner-text {
        top: 18px;
        right: 15px;
    }
    #czsubbannercmsblock .subbanners .one-third .subbanner .subbanner-text .offer-title {
        font-size: 15px;
        padding-top: 1px;
    }
    #czsubbannercmsblock .subbanners .one-third .subbanner .subbanner-text .main-title {
        font-size: 22px;
        line-height: 28px;
        padding-top: 8px;
        padding-bottom: 12px;
    }
}
@media (max-width: 991px) {
    #czsubbannercmsblock {
        margin-top: 20px;
        margin-bottom: 20px;
    }
    #czsubbannercmsblock .subbanners {
        margin-left: -10px;
        margin-right: -10px;
    }
    #czsubbannercmsblock .subbanners .one-third {
        padding-left: 10px;
        padding-right: 10px;
    }
    #czsubbannercmsblock .subbanners .one-third .subbanner .subbanner-text .shopnow a {
        font-size: 14px;
        line-height: 20px;
    }
}
@media (max-width: 991px) and (min-width: 768px) {
    #czsubbannercmsblock .subbanners .one-third .subbanner .subbanner-text {
        top: 10px;
        right: 10px;
    }
    #czsubbannercmsblock .subbanners .one-third .subbanner .subbanner-text .offer-title {
        font-size: 16px;
    }
    #czsubbannercmsblock .subbanners .one-third .subbanner .subbanner-text .main-title {
        font-size: 16px;
        line-height: 22px;
        padding-top: 5px;
        padding-bottom: 12px;
    }
}
@media (max-width: 767px) and (min-width: 576px) {
    #czsubbannercmsblock .subbanners .one-third .subbanner .subbanner-text {
        top: 12px;
        right: 10px;
    }
    #czsubbannercmsblock .subbanners .one-third .subbanner .subbanner-text .offer-title {
        font-size: 15px;
        color: #000000;
        background-color: transparent;
        padding: 0px;
    }
    #czsubbannercmsblock .subbanners .one-third .subbanner .subbanner-text .main-title {
        font-size: 15px;
        line-height: 20px;
        padding-top: 5px;
        padding-bottom: 12px;
    }
    #czsubbannercmsblock .subbanners .one-third .subbanner .subbanner-text .shopnow {
        display: none;
    }
}
@media (max-width: 575px) {
    #czsubbannercmsblock {
        margin-bottom: 5px;
    }
    #czsubbannercmsblock .subbanners .one-third {
        width: 100%;
        float: none;
        margin-bottom: 15px;
        text-align: center;
    }
}
@media (max-width: 380px) {
    #czsubbannercmsblock .subbanners .one-third .subbanner .subbanner-text .offer-title {
        font-size: 14px;
        line-height: 20px;
    }
    #czsubbannercmsblock .subbanners .one-third .subbanner .subbanner-text .main-title {
        font-size: 18px;
        line-height: 24px;
        padding-top: 8px;
        padding-bottom: 15px;
    }
}

/*--------------------------  Start Home page Banner Cms Block -------------------------------*/

#czbannercmsblock {
    margin: 10px 0 10px;
    clear: both;
    float: left;
    width: 100%;
    position: relative;
    overflow: hidden;
}
#czbannercmsblock .cmsbanners {
    margin: 0px -15px;
}
#czbannercmsblock .one-half {
    float: left;
    width: 50%;
    padding: 0 15px;
    overflow: hidden;
}
#czbannercmsblock .cmsbanners .one-half .cmsbanner {
    position: relative;
    overflow: hidden;
    vertical-align: top;
    display: inline-block;
}
#czbannercmsblock .cmsbanners .one-half .cmsbanner img {
    max-width: 100%;
    -webkit-transition: all 800ms ease 0s;
    -moz-transition: all 800ms ease 0s;
    -o-transition: all 800ms ease 0s;
    transition: all 800ms ease 0s;
}
#czbannercmsblock .cmsbanners .one-half .cmsbanner:hover img {
    -webkit-transform: scale(1.08);
    -ms-transform: scale(1.08);
    transform: scale(1.08);
    -webkit-transition: all 800ms ease 0s;
    -moz-transition: all 800ms ease 0s;
    -o-transition: all 800ms ease 0s;
    transition: all 800ms ease 0s;
}
#czbannercmsblock .cmsbanners .one-half .cmsbanner .cmsbanner-text {
    position: absolute;
    text-align: left;
    top: 55px;
    right: 50px;
    color: #000000;
    text-transform: capitalize;
    z-index: 1;
}
#czbannercmsblock .cmsbanners .one-half .cmsbanner .cmsbanner-text .offer-title {
    font-size: 18px;
    font-weight: 300;
    background-color: #D14507;
    color: #ffffff;
    padding: 4px 8px 1px;
    display: inline-block;
    vertical-align: top;
    line-height: 24px;
}
#czbannercmsblock .cmsbanners .one-half .cmsbanner .cmsbanner-text .main-title {
    font-size: 28px;
    font-weight: 500;
    line-height: 35px;
    padding: 18px 0px 30px;
}
#czbannercmsblock .cmsbanners .one-half .cmsbanner .cmsbanner-text .main-title span {
    display: block;
}
#czbannercmsblock .cmsbanners .one-half .cmsbanner .cmsbanner-text .shopnow a {
    color: #000000;
    display: inline-block;
    vertical-align: top;
    font-weight: 500;
    font-size: 14px;
    text-decoration: underline;
    text-transform: uppercase;
    -webkit-transition: all 0.5s ease 0s;
    -moz-transition: all 0.5s ease 0s;
    -o-transition: all 0.5s ease 0s;
    transition: all 0.5s ease 0s;
}
#czbannercmsblock .cmsbanners .one-half .cmsbanner .cmsbanner-text .shopnow a:hover {
    text-decoration: none;
}
#czbannercmsblock .cmsbanners .one-half .cmsbanner a.banner-anchor {
    position: relative;
    display: block;
}
#czbannercmsblock .cmsbanners .one-half .cmsbanner a.banner-anchor:before {
    content: "";
    position: absolute;
    right: 0;
    top: 0;
    width: 0;
    height: 0;
    transform: rotate(90deg);
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    -o-transform: rotate(90deg);
    opacity: 1;
    filter: alpha(opacity=100);
    background: hsl(0deg 0% 100% / 43%);
    z-index: 1;
}
#czbannercmsblock .cmsbanners .one-half .cmsbanner a.banner-anchor:after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 0;
    transform: rotate(90deg);
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    -o-transform: rotate(90deg);
    opacity: 1;
    filter: alpha(opacity=100);
    background: hsl(0deg 0% 100% / 43%);
    z-index: 1;
}
#czbannercmsblock .cmsbanners .one-half .cmsbanner:hover a.banner-anchor:before,
#czbannercmsblock .cmsbanners .one-half .cmsbanner:hover a.banner-anchor:after {
    transform: rotateY(180deg);
    -webkit-transform: rotateY(180deg);
    -ms-transform: rotateY(180deg);
    -o-transform: rotateY(180deg);
    transition-duration: 1.3s;
    -moz-transition-duration: 1.3s;
    -webkit-transition-duration: 1.3s;
    -khtml-transition-duration: 1.3s;
    -o-transition-duration: 1.3s;
    opacity: 0;
    filter: alpha(opacity=0);
    height: 80%;
    width: 80%;
}
@media (max-width: 1199px) {
    #czbannercmsblock .cmsbanners .one-half .cmsbanner .cmsbanner-text {
        right: 15px;
        top: 25px;
    }
    #czbannercmsblock .cmsbanners .one-half .cmsbanner .cmsbanner-text .offer-title {
        font-size: 16px;
    }
    #czbannercmsblock .cmsbanners .one-half .cmsbanner .cmsbanner-text .main-title {
        font-size: 24px;
        line-height: 32px;
        padding-top: 12px;
        padding-bottom: 25px;
    }
}
@media (max-width: 991px) {
    #czbannercmsblock .cmsbanners {
        margin-left: -10px;
        margin-right: -10px;
    }
    #czbannercmsblock .one-half {
        padding-left: 10px;
        padding-right: 10px;
    }
}
@media (max-width: 991px) and (min-width: 768px) {
    #czbannercmsblock .cmsbanners .one-half .cmsbanner .cmsbanner-text {
        top: 14px;
    }
    #czbannercmsblock .cmsbanners .one-half .cmsbanner .cmsbanner-text .offer-title {
        font-size: 14px;
        padding-top: 2px;
        line-height: 20px;
    }
    #czbannercmsblock .cmsbanners .one-half .cmsbanner .cmsbanner-text .main-title {
        font-size: 18px;
        line-height: 26px;
        padding-top: 10px;
        padding-bottom: 18px;
    }
}
@media (max-width: 767px) {
    #czbannercmsblock .cmsbanners .one-half .cmsbanner .cmsbanner-text .shopnow a {
        font-size: 12px;
    }
}
@media (max-width: 767px) and (min-width: 651px) {
    #czbannercmsblock .cmsbanners .one-half .cmsbanner .cmsbanner-text {
        right: 10px;
        top: 18px;
    }
    #czbannercmsblock .cmsbanners .one-half .cmsbanner .cmsbanner-text .offer-title {
        font-size: 14px;
        line-height: 18px;
        padding-top: 2px;
    }
    #czbannercmsblock .cmsbanners .one-half .cmsbanner .cmsbanner-text .main-title {
        font-size: 17px;
        line-height: 22px;
        padding-top: 3px;
        padding-bottom: 15px;
    }
}
@media (max-width: 650px) and (min-width: 576px) {
    #czbannercmsblock .cmsbanners .one-half .cmsbanner .cmsbanner-text {
        right: 10px;
        top: 14px;
    }
    #czbannercmsblock .cmsbanners .one-half .cmsbanner .cmsbanner-text .offer-title {
        font-size: 13px;
        line-height: 18px;
        padding-top: 2px;
    }
    #czbannercmsblock .cmsbanners .one-half .cmsbanner .cmsbanner-text .main-title {
        font-size: 15px;
        line-height: 22px;
        padding-top: 1px;
        padding-bottom: 8px;
    }
}
@media (max-width: 575px) {
    #czbannercmsblock .one-half {
        float: none;
        width: 100%;
        margin-bottom: 15px;
        text-align: center;
    }
}
@media (max-width: 450px) {
    #czbannercmsblock .cmsbanners .one-half .cmsbanner .cmsbanner-text {
        right: 15px;
        top: 15px;
    }
    #czbannercmsblock .cmsbanners .one-half .cmsbanner .cmsbanner-text .offer-title {
        font-size: 14px;
    }
    #czbannercmsblock .cmsbanners .one-half .cmsbanner .cmsbanner-text .main-title {
        font-size: 20px;
        line-height: 30px;
        padding-top: 12px;
        padding-bottom: 18px;
    }
}
@media (max-width: 380px) {
    #czbannercmsblock .cmsbanners .one-half .cmsbanner .cmsbanner-text {
        top: 14px;
    }
    #czbannercmsblock .cmsbanners .one-half .cmsbanner .cmsbanner-text .offer-title {
        font-size: 13px;
        padding-top: 1px;
        line-height: 20px;
    }
    #czbannercmsblock .cmsbanners .one-half .cmsbanner .cmsbanner-text .main-title {
        font-size: 16px;
        line-height: 24px;
        padding-top: 2px;
        padding-bottom: 5px;
    }
}

/*-------------------------- Start Home page Category List Block -------------------------------*/

#categorylist {
    float: left;
    width: 100%;
    position: relative;
    clear: both;
    margin: 35px 0px 20px;
}
#categorylist .parallax {
    padding: 85px 0px 85px;
    position: relative;
    background-color: #535353;
}
#categorylist .product-block {
    border-radius: 0px;
    margin: 15px 15px 15px 14px;
}
#categorylist .customNavigation {
    right: 0px;
    width: 100%;
    top: 40%;
    opacity: 0;
    filter: alpha(opacity=0);
    display: none;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease 0s;
    -o-transition: all 0.5s ease 0s;
    transition: all 0.5s ease 0s;
}
#categorylist:hover .customNavigation {
    opacity: 1;
    filter: alpha(opacity=100);
}
#categorylist .customNavigation a:before {
    font-size: 30px;
}
#categorylist .customNavigation .czcategorylist_prev {
    left: -20px;
}
#categorylist .customNavigation .czcategorylist_next {
    right: -20px;
}
#categorylist .customNavigation a,
#categorylist .customNavigation a:before {
    color: #ffffff;
}
#categorylist .categorylist-item {
    position: relative;
    overflow: hidden;
    text-align: center;
}
#categorylist .categorylist-item .categorylist-item-inner {
    max-width: 279px;
    text-align: center;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}
#categorylist .categorylist-item .categorylist-item-inner .image {
    -webkit-transition: all 1s cubic-bezier(.25,.50,.45,.94);
    -o-transition: all 1s cubic-bezier(.25,.50,.45,.94);
    transition: all 1s cubic-bezier(.25,.50,.45,.94);
    cursor: pointer;
}
#categorylist .categorylist-item .product-block:hover .categorylist-item-inner .image {
    -webkit-transform: scale(1.12);
    -ms-transform: scale(1.12);
    transform: scale(1.12);
}
#categorylist .categorylist-item .categorylist-item-inner .image img {
    max-width: 100%;
}
#categorylist .categorylist-item .product-block:hover .categorylist-item-inner .image {
    border-color: #D14507;
}
#categorylist .categorylist-item .categorylist {
    position: absolute;
    bottom: 0px;
    left: 0px;
    right: 0px;
    margin: 0 auto;
}
#categorylist .categorylist-item .category_title {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    position: relative;
    padding: 12px 10px 12px;
    background: rgb(0 0 0 / 72%);
    -webkit-transition: all 0.5s ease 0s;
    -moz-transition: all 0.5s ease 0s;
    -o-transition: all 0.5s ease 0s;
    transition: all 0.5s ease 0s;
}
#categorylist .categorylist-item .category_title a {
    color: #ffffff;
    font-weight: 500;
    text-transform: uppercase;
    -webkit-transition: all 0.5s ease 0s;
    -moz-transition: all 0.5s ease 0s;
    -o-transition: all 0.5s ease 0s;
    transition: all 0.5s ease 0s;
}
#categorylist .categorylist-item .categorylist .shopnow {
    margin: 0px;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    opacity: 0;
    filter: alpha(opacity=0);
    -webkit-transition: all 0.5s ease 0s;
    -moz-transition: all 0.5s ease 0s;
    -o-transition: all 0.5s ease 0s;
    transition: all 0.5s ease 0s;
}
#categorylist .categorylist-item .product-block:hover .categorylist .shopnow {
    opacity: 1;
    filter: alpha(opacity=100);
}
#categorylist .categorylist-item .categorylist .shopnow a {
    color: #222222;
    text-transform: uppercase;
    text-decoration: underline;
}
#categorylist .categorylist-item .categorylist .shopnow a:hover {
    text-decoration: none;
}
#categorylist #categorylist-carousel {
    overflow: initial;
}
#categorylist .owl-controls .owl-pagination {
    position: absolute;
    bottom: -40px;
    left: 0px;
    right: 0px;
}
#categorylist .owl-pagination .owl-page {
    margin: 0px 4px;
}
#categorylist .owl-pagination .owl-page span {
    background-color: #ffffff;
    height: 10px;
    width: 10px;
}
#categorylist .owl-pagination .owl-page.active span {
    background-color: #D14507;
}
@media (max-width: 1500px) {
    #categorylist .customNavigation .czcategorylist_prev {
        left: 0px;
    }
    #categorylist .customNavigation .czcategorylist_next {
        right: 0px;
    }
}
@media (max-width: 1199px) {
    #categorylist .categorylist-item .image .categoryimage {
        height: 250px;
    }
}
@media (max-width: 991px) {
    #categorylist {
        margin-top: 20px;
    }
    #categorylist .parallax {
        padding-top: 40px;
        padding-bottom: 40px;
    }
    #categorylist .categorylist-item .category_title a {
        font-size: 13px;
        line-height: 20px;
    }
    #categorylist .categorylist-item .image .categoryimage {
        height: 240px;
    }
    #categorylist .owl-controls .owl-pagination {
        bottom: -22px;
    }
}
@media (max-width: 991px) and (min-width: 401px) {
    #categorylist .box-product .product-items,
    #categorylist .product-carousel .slider-item {
        width: 230px;
    }
}
@media (max-width: 650px) and (min-width: 351px) {
    #categorylist .categorylist-item .image .categoryimage {
        padding-top: 12px;
        padding-bottom: 12px;
    }
}
@media (max-width: 400px) {
    #categorylist .categorylist-item .image .categoryimage {
        height: 300px;
    }
}

/*-------------------------- Start Home page Category CMS List Block -------------------------------*/

.czcategory_block {
    float: left;
    width: 100%;
    position: relative;
    clear: both;
    margin: 40px 0px 20px;
}
.czcategory_block .categoryblock-wrapper {
    margin: 0px -10px;
    position: relative;
}
.czcategory_block .categoryblock-wrapper ul {
    padding: 0px;
    margin: 0px;
}
.czcategory_block .categoryblock-wrapper ul .category_item {
    padding: 0px;
    margin: 0px;
}
.czcategory_block .categoryblock-wrapper ul .category_item li {
    margin: 10px;
    list-style: none;
    text-align: center;
}
.czcategory_block .categoryblock-wrapper ul .category_item li .block_content {
    height: 165px;
    background-color: #f0f0f0;
    border: 1px solid #f0f0f0;
    -webkit-transition: all 500ms ease 0s;
    -moz-transition: all 500ms ease 0s;
    -o-transition: all 500ms ease 0s;
    transition: all 500ms ease 0s;
}
.czcategory_block .categoryblock-wrapper ul .category_item li .block_content .cate_image a {
    display: block;
}
.czcategory_block .categoryblock-wrapper ul .category_item li .block_content img {
    max-width: 100%;
    margin: 0 auto;
    -webkit-transition: all 500ms ease 0s;
    -moz-transition: all 500ms ease 0s;
    -o-transition: all 500ms ease 0s;
    transition: all 500ms ease 0s;
}

/********************* left Banner Cms Block    ********************/

#czleftbannercmsblock {
    margin-bottom: 30px;
}
#czleftbannercmsblock .leftbannercmsblock-inner .leftbanner1 a.banner-anchor {
    position: relative;
    display: block;
}
#czleftbannercmsblock .leftbannercmsblock-inner .leftbanner1 a.banner-anchor img.banner-image1 {
    max-width: 100%;
}

@media (max-width: 991px) {
    #czleftbannercmsblock {
        display: none;
    }
}

/*-------------------------- Start Home page Service CMS Block -------------------------------*/

@-webkit-keyframes hvr-icon-push {
    50% {
        -webkit-transform: scale(0.5);
        transform: scale(0.5);
    }
}
@keyframes hvr-icon-push {
    50% {
        -webkit-transform: scale(0.5);
        transform: scale(0.5);
    }
}
#czservicecmsblock {
    clear: both;
    margin: 0px;
    padding: 0;
    overflow: hidden;
}
#czservicecmsblock .service_container .service-area {
    float: left;
    width: 100%;
}
#czservicecmsblock .service_container .service-area .service-fourth {
    float: left;
    width: 25%;
    line-height: 20px;
    color: #333333;
    padding: 0px 15px;
    position: relative;
    margin: 0;
}
#czservicecmsblock .service_container .service-area .service-fourth .service-icon {
    background: url(../image/codezeel/service-icon.png) no-repeat scroll;
    float: left;
    margin-top: 0px;
    height: 40px;
    width: 40px;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
}
#czservicecmsblock .service_container .service-area .service-fourth.service1 .icon1 {
    background-position: center 7px;
}
#czservicecmsblock .service_container .service-area .service-fourth.service2 .icon2 {
    background-position: center -174px;
}
#czservicecmsblock .service_container .service-area .service-fourth.service3 .icon3 {
    background-position: center -353px;
}
#czservicecmsblock .service_container .service-area .service-fourth.service4 .icon4 {
    background-position: center -534px;
}
#czservicecmsblock .service_container .service-area .service-fourth .service-content {
    margin-left: 48px;
    margin-top: 8px;
    text-align: left;
}
#czservicecmsblock .service_container .service-area .service-fourth.service2 .service-content,
#czservicecmsblock .service_container .service-area .service-fourth.service3 .service-content {
    margin-left: 55px;
}
#czservicecmsblock .service_container .service-area .service-fourth .service-content .service-heading {
    font-weight: 600;
    font-size: 14px;
    line-height: 24px;
    color: #ffffff;
    letter-spacing: 0.3px;
    text-transform: uppercase;
}
#czservicecmsblock .service_container .service-area .service-fourth:hover .service-icon {
    -webkit-animation-name: hvr-icon-push;
    animation-name: hvr-icon-push;
    -webkit-animation-duration: 0.4s;
    animation-duration: 0.4s;
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
    -webkit-animation-iteration-count: 1;
    animation-iteration-count: 1;
}
@media (min-width: 1200px) {
    #czservicecmsblock .service_container .service-area .service-fourth:before {
        content: "";
        position: absolute;
        top: 0px;
        right: 28px;
        height: 48px;
        width: 2px;
        background: #000;
    }
    #czservicecmsblock .service_container .service-area .service-fourth.service1 {
        padding-left: 0px;
    }
    #czservicecmsblock .service_container .service-area .service-fourth.service4 {
        padding-left: 55px;
        padding-right: 0px;
    }
    #czservicecmsblock .service_container .service-area .service-fourth.service1:before {
        right: 30px;
    }
    #czservicecmsblock .service_container .service-area .service-fourth.service3:before {
        right: -10px;
    }
    #czservicecmsblock .service_container .service-area .service-fourth.service4:before {
        border-right: 0px;
        background: none;
    }
}
@media (max-width: 1199px) {
    #czservicecmsblock .service_container .service-area .service-fourth .service-icon {
        float: none;
        margin: 0 auto;
    }
    #czservicecmsblock .service_container .service-area .service-fourth .service-content,
    #czservicecmsblock .service_container .service-area .service-fourth.service2 .service-content,
    #czservicecmsblock .service_container .service-area .service-fourth.service3 .service-content {
        margin-left: 0px;
        margin-top: 5px;
        text-align: center;
    }
}
@media (max-width: 991px) {
    #czservicecmsblock .service_container .service-area .service-fourth {
        width: 50%;
        margin-bottom: 15px;
    }
    body.in-app #czservicecmsblock .service_container .service-area .service-fourth .service-content .service-heading {
        font-size: 12px;
    }
}
@media (max-width: 776px) {
    #czservicecmsblock .service_container .service-area .service-fourth {
        width: 100%;
    }
}
@media (max-width: 370px) {
    #czservicecmsblock .service_container .service-area .service-fourth {
        width: 100%;
    }
}
#currency-select {
    background-color: transparent;
    color: #fff;
    border: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMzIiIGhlaWdodD0iMzAiIHZpZXdCb3g9IjAgMCAzMiAzMCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4NCiAgICA8cGF0aCBkPSJNMjEuMDE5MyAxMi42TDIyIDEzLjU1MThMMTYuNjU1MSAxOC43MzYzQzE2LjU2OTQgMTguODE5OSAxNi40Njc2IDE4Ljg4NjIgMTYuMzU1NCAxOC45MzE0QzE2LjI0MzIgMTguOTc2NyAxNi4xMjI5IDE5IDE2LjAwMTQgMTlDMTUuODc5OSAxOSAxNS43NTk2IDE4Ljk3NjcgMTUuNjQ3NCAxOC45MzE0QzE1LjUzNTIgMTguODg2MiAxNS40MzM0IDE4LjgxOTkgMTUuMzQ3NyAxOC43MzYzTDEwIDEzLjU1MThMMTAuOTgwNyAxMi42MDA5TDE2IDE3LjQ2NjlMMjEuMDE5MyAxMi42WiIgZmlsbD0iI2ZmZiIvPg0KPC9zdmc+DQo=");
    background-repeat: no-repeat;
    background-position: right 3px;
    padding-right: 2.7rem; /* Отступ для стрелки */
}
#currency-select option {
    color: #222222;
}

.lang-menu li {
    background-size: 24px;
    background-repeat: no-repeat;
    background-position: left center;
    padding-left: 30px;
    margin-left: 10px;
}

.language-select {
    padding-left: 30px;
    background-repeat: no-repeat;
    background-position: left 5px center;
    background-size: 20px;
}

.language-select option {
    background-repeat: no-repeat;
    padding-left: 30px;
}

.lang__wrap {
    margin: 7px 10px 0;
}

@-moz-document url-prefix() {
    #currency-select {
        padding-right: 1.5rem;
        background-position: calc(100% - 7px) center;
    }
}


/*--------------------------  Start Home page Category List Block -------------------------------*/

#czcategorylistblock {
    clear: both;
    padding: 50px 0 50px;
    position: relative;
    overflow: hidden;
}
#czcategorylistblock .czcategory_block.container {
    position: relative;
    padding: 0;
}
#czcategorylistblock .products-section-title {
    font-size: 24px;
    letter-spacing: .4px;
    font-weight: 600;
}
#czcategorylistblock .category_lists {
    margin: 0 -22px;
}
#czcategorylistblock .category_lists .cz-carousel {
    display: block;
    padding: 0;
    margin-bottom: 0;
}
.czcategory_listblock .category_lists ul li.category_item {
    position: relative;
    padding: 0px;
    text-align: center;
    display: inline-block;
    padding: 0 22px;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease 0s;
    -o-transition: all 0.5s ease 0s;
    transition: all 0.5s ease 0s;
}
.czcategory_listblock .category_lists ul li.category_item .cate_image {
    background: url(../image/codezeel/cate-icon.png) no-repeat scroll #f5f5f5;
    height: 140px;
    width: 140px;
    -webkit-transition: all 500ms ease 0s;
    -moz-transition: all 500ms ease 0s;
    -o-transition: all 500ms ease 0s;
    transition: all 500ms ease 0s;
    padding: 0;
    border: 0;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    padding: 0;
    -webkit-transition-duration: 1s;
    transition-duration: 1s;
    -webkit-transition-property: transform;
    transition-property: transform;
    -webkit-transition-timing-function: ease-in-out;
    transition-timing-function: ease-in-out;
}
.czcategory_listblock .category_lists ul li.category_item:hover .cate_image{
    background: url(../image/codezeel/cate-hover-icon.png) no-repeat scroll #D14507;
}
.czcategory_listblock .category_lists ul li.category_item .cate_image.cate1,
.czcategory_listblock .category_lists ul li.category_item:hover .cate_image.cate1 {
    background-position: center 35px;
}
.czcategory_listblock .category_lists ul li.category_item .cate_image.cate2,
.czcategory_listblock .category_lists ul li.category_item:hover .cate_image.cate2 {
    background-position: center -84px;
}
.czcategory_listblock .category_lists ul li.category_item .cate_image.cate3,
.czcategory_listblock .category_lists ul li.category_item:hover .cate_image.cate3 {
    background-position:center -201px;
}
.czcategory_listblock .category_lists ul li.category_item .cate_image.cate4,
.czcategory_listblock .category_lists ul li.category_item:hover .cate_image.cate4 {
    background-position: center -323px;
}
.czcategory_listblock .category_lists ul li.category_item .cate_image.cate5,
.czcategory_listblock .category_lists ul li.category_item:hover .cate_image.cate5 {
    background-position: center -442px;
}
.czcategory_listblock .category_lists ul li.category_item .cate_image.cate6,
.czcategory_listblock .category_lists ul li.category_item:hover .cate_image.cate6 {
    background-position: center -557px;
}
.czcategory_listblock .category_lists ul li.category_item .cate_image a {
    display: block;
}
.czcategory_listblock .category_lists ul li.category_item .cate-details {
    display: inline-block;
    padding-top: 15px;
}
.czcategory_listblock .category_lists ul li.category_item .cate-details .ctegory-title {
    font-size: 14px;
    font-weight: 600;
    text-transform: capitalize;
    display: inline-block;
    color: #000;
    padding-top: 0;
    letter-spacing: .6px;
    line-height: 26px;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
.czcategory_listblock .category_lists ul li.category_item .cate-details .ctegory-title a {
    color: #000;
}
.czcategory_listblock .category_lists ul li.category_item .cate-details .ctegory-title a:hover {
    color: #D14507;
}
.czcategory_listblock .category_lists ul li.category_item .cate-details .cate_title {
    margin-bottom: 0;
}
.czcategory_listblock .category_lists ul li.category_item .cate-details ul.category-names {
    font-size: 13px;
    line-height: 26px;
    font-weight: 300;
    letter-spacing: 0.5px;
    color: #ffffff;
    text-transform: capitalize;
    text-align: left;
    margin-bottom: 10px;
}
.czcategory_listblock .category_lists ul li.category_item .cate-details ul.category-names li a{
    color:#ffffff;
    margin-bottom: 6px;
    display: block;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease 0s;
    -o-transition: all 0.5s ease 0s;
    transition: all 0.5s ease;
}
.czcategory_listblock .category_lists ul li.category_item .cate-details ul.category-names li a:hover {
    color:#b89788;
    padding-left: 5px;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease 0s;
    -o-transition: all 0.5s ease 0s;
    transition: all 0.5s ease;
}
#czcategorylistblock .customNavigation {
    top: 60px;
    opacity: 0;
    filter: alpha(opacity=0);
    -webkit-transition: all 0.5s ease 0s;
    -moz-transition: all 0.5s ease 0s;
    -o-transition: all 0.5s ease 0s;
    transition: all 0.5s ease 0s;
    display: none;
}
#czcategorylistblock:hover .customNavigation {
    opacity: 1;
    filter: alpha(opacity=100);
    -webkit-transition: all 0.5s ease 0s;
    -moz-transition: all 0.5s ease 0s;
    -o-transition: all 0.5s ease 0s;
    transition: all 0.5s ease 0s;
}
#czcategorylistblock .category_lists .owl-controls {
    text-align: center;
    clear: both;
    display: none !important;
}
#czcategorylistblock .category_lists  .owl-controls .owl-page {
    margin: 20px 4px 0px;
    display: inline-block;
    zoom: 1;
    cursor: pointer;
}
#czcategorylistblock .category_lists  .owl-controls .owl-page span {
    width: 10px;
    height: 10px;
    display: block;
    background: #000;
    cursor: pointer;
    margin: 3px;
    text-indent: -9999px;
    -webkit-transition: transform 0.3s cubic-bezier(0.7, -0.2, 0.3, 2.5), color 0.15s ease-out;
    -moz-transition: transform 0.3s cubic-bezier(0.7, -0.2, 0.3, 2.5), color 0.15s ease-out;
    -o-transition: transform 0.3s cubic-bezier(0.7, -0.2, 0.3, 2.5), color 0.15s ease-out;
    transition: transform 0.3s cubic-bezier(0.7, -0.2, 0.3, 2.5), color 0.15s ease-out;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
}
#czcategorylistblock .category_lists .owl-controls .owl-page:hover,
#czcategorylistblock .category_lists .owl-controls .owl-page.active {
    border-color: #2a8071;
    -webkit-transform: scale(1.3);
    -ms-transform: scale(1.3);
    transform: scale(1.3);
    -webkit-transition: all 500ms ease 0s;
    -moz-transition: all 500ms ease 0s;
    -o-transition: all 500ms ease 0s;
    transition: all 500ms ease 0s;
}
#czcategorylistblock .category_lists .owl-controls .owl-page:hover span,
#czcategorylistblock .category_lists .owl-controls .owl-page.active span {
    background: #2a8071;
}

@media (max-width: 991px){
    #czcategorylistblock {
        padding-top: 30px;
        padding-bottom: 30px;
        text-align: center;
    }
    .czcategory_listblock .category_lists ul li.category_item {
        padding-left: 10px;
        padding-right: 10px;
    }
    #czcategorylistblock .category_lists {
        margin: 0 -10px;
    }
    #czcategorylistblock .products-section-title {
        margin-bottom: 10px;
        font-size: 22px;
    }
}
@media (max-width:600px){
    #czcategorylistblock .products-section-title {
        font-size: 20px;
    }
}

/*-------------------------- Start Home page Testimonial Block -------------------------------*/

#cztestimonialcmsblock {
    float: left;
    width: 100%;
    clear: both;
    margin: 35px 0px;
}
#cztestimonialcmsblock .testimonial_wrapper {
    float: left;
    width: 100%;
    position: relative;
    padding: 75px 80px 82px 100px;
    background: url(../image/codezeel/testimonial-bg.jpg);
    background-color: #d9d9d9;
}
#cztestimonialcmsblock .testimonial_wrapper .testimonial-area ul#testimonial-carousel {
    padding:0px;
    margin-bottom: 0px;
}
#cztestimonialcmsblock .testimonial_wrapper .testimonial-area ul#testimonial-carousel li.slider-item {
    overflow: hidden;
    display: block;
}
#cztestimonialcmsblock .testimonial-area ul#testimonial-carousel li.slider-item .testimonial-image {
    float: left;
    position: relative;
    overflow: hidden;
    border: 2px solid #cccccc;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    border-radius: 50%;
}
#cztestimonialcmsblock .testimonial-area ul#testimonial-carousel li.slider-item .testimonial-image img {
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    border-radius: 50%;
    max-width: 100%;
}
#cztestimonialcmsblock .testimonial-area ul#testimonial-carousel li.slider-item .testimonial-detail {
    text-align: left;
    margin-left: 130px;
}
#cztestimonialcmsblock .testimonial-area ul#testimonial-carousel li.slider-item .description {
    margin-bottom: 0;
    line-height: 30px;
    color: #666666;
    font-size: 14px;
    position: relative;
    text-align: left;
    padding: 8px 0px 8px 80px;
    text-transform: initial;
}
#cztestimonialcmsblock .testimonial-area ul#testimonial-carousel li.slider-item .description:before {
    content: "";
    width: 50px;
    height: 35px;
    position: absolute;
    top: 20px;
    display: block;
    left: 1px;
    background: transparent url(../image/codezeel/quote.png) no-repeat scroll center bottom;
}
#cztestimonialcmsblock .testimonial_wrapper .testimonial-area ul#testimonial-carousel li.slider-item .cms_face .name a {
    color: #333333;
    font: 700 16px/20px 'Titillium Web', sans-serif;
    margin-bottom: 5px;
    display: block;
}
#cztestimonialcmsblock .testimonial_wrapper .testimonial-area ul#testimonial-carousel li.slider-item .cms_face .subheading {
    color: #3bb18f;
    font-size: 13px;
}
#cztestimonialcmsblock .testimonial_wrapper .testimonial-area ul#testimonial-carousel li.slider-item .product_inner_cms {
    padding-left: 78px;
}
#cztestimonialcmsblock .testimonial_wrapper .testimonial-area ul#testimonial-carousel li.slider-item .name a {
    color: #000000;
    font-size: 14px;
    text-transform: uppercase;
    font-weight: 600;
    position: relative;
    padding-left: 18px;
    line-height: 26px;
}
#cztestimonialcmsblock .testimonial_wrapper .testimonial-area ul#testimonial-carousel li.slider-item .name a:before {
    content: "";
    height: 1px;
    width: 7px;
    border: 1px solid #222222;
    position: absolute;
    top: 9px;
    left: 2px;
}
#cztestimonialcmsblock .customNavigation {
    width: 100%;
    right: 0;
    left: 0;
    top: 44%;
    opacity: 0;
    filter: alpha(opacity=0);
    -webkit-transition: all 0.5s ease 0s;
    -moz-transition: all 0.5s ease 0s;
    -o-transition: all 0.5s ease 0s;
    transition: all 0.5s ease 0s;
}
#cztestimonialcmsblock:hover .customNavigation {
    opacity: 1;
    filter: alpha(opacity=100);
}
#cztestimonialcmsblock .customNavigation a {
    width: 20px;
    line-height: 28px;
    color: #222222;
}
#cztestimonialcmsblock .customNavigation a.prev {
    left: 30px;
}
#cztestimonialcmsblock .customNavigation a.next {
    right: 30px;
}
#cztestimonialcmsblock .customNavigation a.prev:before,
#cztestimonialcmsblock .customNavigation a.next:before {
    font-size: 40px;
}
#cztestimonialcmsblock .testimonial_wrapper .owl-controls {
    width: 100%;
    position: absolute;
    margin: 0;
    bottom: -50px;
    text-align: center;
    z-index: 9;
    display: none;
    opacity: 0;
    filter: alpha(opacity=0);
    -webkit-transition: all 0.5s ease 0s;
    -moz-transition: all 0.5s ease 0s;
    -o-transition: all 0.5s ease 0s;
    transition: all 0.5s ease 0s;
}
#cztestimonialcmsblock .testimonial_wrapper .owl-controls .owl-pagination {
    display: none;
}
#cztestimonialcmsblock .testimonial_wrapper .owl-controls .owl-prev,
#cztestimonialcmsblock .testimonial_wrapper .owl-controls .owl-next {
    font-size: 0;
}
#cztestimonialcmsblock .testimonial_wrapper .owl-controls .owl-page span {
    width: 8px;
    height: 8px;
    display: block;
    background: #ffffff;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    border-radius: 50%;
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
    cursor: pointer;
    text-indent: -9999px;
    -webkit-transition: transform 0.3s cubic-bezier(0.7, -0.2, 0.3, 2.5), color 0.15s ease-out;
    -moz-transition: transform 0.3s cubic-bezier(0.7, -0.2, 0.3, 2.5), color 0.15s ease-out;
    -o-transition: transform 0.3s cubic-bezier(0.7, -0.2, 0.3, 2.5), color 0.15s ease-out;
    transition: transform 0.3s cubic-bezier(0.7, -0.2, 0.3, 2.5), color 0.15s ease-out;
}
#cztestimonialcmsblock .testimonial_wrapper .owl-controls .owl-page.active span,
#cztestimonialcmsblock .testimonial_wrapper .owl-controls .owl-page:hover span {
    background: #ffd21d;
    -webkit-transform: scale(1.3);
    -ms-transform: scale(1.3);
    transform: scale(1.3);
    -webkit-transition: all 500ms ease 0s;
    -moz-transition: all 500ms ease 0s;
    -o-transition: all 500ms ease 0s;
    transition: all 500ms ease 0s;
    box-shadow: none;
}
#cztestimonialcmsblock:hover .testimonial_wrapper .owl-controls {
    opacity: 1;
    filter: alpha(opacity=100);
    -webkit-transition: all 0.5s ease 0s;
    -moz-transition: all 0.5s ease 0s;
    -o-transition: all 0.5s ease 0s;
    transition: all 0.5s ease 0s;
}
@media (max-width: 1199px) {
    #cztestimonialcmsblock .testimonial_wrapper {
        padding-left: 60px;
        padding-right: 50px;
        padding-top: 40px;
        padding-bottom: 50px;
    }
    #cztestimonialcmsblock .customNavigation a.prev {
        left: 20px;
    }
    #cztestimonialcmsblock .customNavigation a.next {
        right: 20px;
    }
    #cztestimonialcmsblock .testimonial-area ul#testimonial-carousel li.slider-item .testimonial-detail {
        margin-left: 120px;
    }
    #cztestimonialcmsblock .testimonial-area ul#testimonial-carousel li.slider-item .description {
        padding-left: 70px;
    }
    #cztestimonialcmsblock .testimonial_wrapper .testimonial-area ul#testimonial-carousel li.slider-item .product_inner_cms {
        padding-left: 68px;
    }
}
@media (max-width: 991px) {
    #cztestimonialcmsblock {
        margin-top: 25px;
        margin-bottom: 30px;
    }
    #cztestimonialcmsblock .testimonial_wrapper {
        padding-top: 32px;
        padding-bottom: 40px;
    }
    #cztestimonialcmsblock .testimonial_wrapper .owl-controls {
        bottom: -15px;
    }
}
@media (max-width: 650px) {
    #cztestimonialcmsblock .testimonial_wrapper {
        background-image: none;
    }
}
@media only screen and (max-width: 575px) {
    #cztestimonialcmsblock .testimonial_wrapper {
        padding-bottom: 65px;
        padding-left: 15px;
        padding-right: 15px;
    }
    #cztestimonialcmsblock .testimonial_wrapper .testimonial-area ul#testimonial-carousel li.slider-item {
        text-align: center;
    }
    #cztestimonialcmsblock .testimonial-area ul#testimonial-carousel li.slider-item .testimonial-image {
        float: none;
        margin-bottom: 15px;
        display: inline-block;
        vertical-align: top;
    }
    #cztestimonialcmsblock .customNavigation {
        top: auto;
        bottom: 52px;
        width: 45px;
        margin: 0 auto;
    }
    #cztestimonialcmsblock .customNavigation a.prev {
        left: 0px;
    }
    #cztestimonialcmsblock .customNavigation a.next {
        right: 0px;
    }
    #cztestimonialcmsblock .testimonial-area ul#testimonial-carousel li.slider-item .testimonial-detail {
        margin-left: 0;
        text-align: center;
    }
    #cztestimonialcmsblock .testimonial-area ul#testimonial-carousel li.slider-item .description {
        padding-left: 0;
        padding-bottom: 10px;
        text-align: center;
    }
    #cztestimonialcmsblock .testimonial-area ul#testimonial-carousel li.slider-item .description:before {
        left: 0;
        right: 0;
        text-align: center;
        margin: 0 auto 15px;
        position: static;
    }
    #cztestimonialcmsblock .testimonial_wrapper .testimonial-area ul#testimonial-carousel li.slider-item .product_inner_cms {
        padding-left: 0;
    }
    #cztestimonialcmsblock .testimonial_wrapper .owl-controls {
        display: none;
    }
    #cztestimonialcmsblock .customNavigation a.prev:before,
    #cztestimonialcmsblock .customNavigation a.next:before {
        font-size: 30px;
    }
}

/**********		Responsive css start	***********/

@media (min-width: 992px) {
    header .dropdown.myaccount:before {
        content: "";
        position: absolute;
        background: #2e2e2e;
        height: 40px;
        width: 1px;
        right: -22px;
        top: 4px;
    }
    #search .search_toggle {
        z-index: 9;
        display: block !important;
    }
    footer h5:before {
        content: "";
        position: absolute;
        width: 50px;
        bottom: 0px;
        border-bottom: 2px solid #D14507;
        -webkit-transition: all 0.5s ease 0s;
        -moz-transition: all 0.5s ease 0s;
        -o-transition: all 0.5s ease 0s;
        transition: all 0.5s ease 0s;
    }
    .product-info .horizontal-carousel {
        display: none;
    }
}
@media (max-width: 1259px) {
    header .header-main .header-cms-block {
        margin-left: 18px;
        margin-right: 35px;
    }
    #content .box-heading span:before{display:none;}
    .box.category .box-content li.top_level,
    #column-left .box.category .box-content li.top_level {
        padding-left: 15px;
        padding-right: 10px;
    }
    .alert.alert-success.animated {
        width: 50%;
    }
    .product-info .image {
        width: 80%;
    }
    .product-list .product-thumb .caption {
        /* padding-left: 10px;
        padding-right: 10px; */
    }
}
@media (max-width: 1259px) and (min-width: 1200px) {
    .product-thumb .product-details {
        min-height: 201px;
    }
}
@media (max-width: 1199px) {
    #verticalmenublock.box.category {
        width: 25.8%;
    }
    .nav-container {
        width: 72%;
        padding-left: 25px;
    }
    .btn-group.btn-block .cart_heading {
        font-size: 0px;
        padding: 0px;
        height: 40px;
        width: 34px;
    }
    body.in-app #cart-total {
        font-size: 11px;
    }
    #cart-total {
        font-size: 0px;
        line-height: initial;
    }
    .btn-group.btn-block > .btn {
        padding: 0px;
    }
    .btn-group.btn-block #cart-quantity {
        right: 0px;
        left: auto;
        top: 2px;
    }
    #search {
        width: 35%;
    }
    .main-menu ul > li > a, .hiden_menu li > a {
        padding-left: 8px;
        padding-right: 8px;
        margin-left: 10px;
        margin-right: 10px;
    }
    .main-menu ul > li > a:after {
        right: -11px;
    }
    .product-thumb .image img {
        width: auto;
    }
    .product-layout.product-grid { width: 32.80%; }
    .box.category .box-heading,
    #column-left .box.category .box-heading {
        font-size: 14px;
    }
    #footer .footerright.column {
        padding-left: 15px;
    }
    .product-layout.product-list .product-block .image_wrapper {
        width: 30%;
    }
    .product-list .product-thumb .product-details {
        width: 70%;
    }
    .product-info .image {
        width: 78%;
    }
    .product-info .vertical-carousel .bx-viewport {
        height: 300px !important;
    }
    .product-info .vertical-carousel .bx-wrapper .bx-controls-direction a.bx-prev,
    .product-info .vertical-carousel .bx-wrapper .bx-controls-direction a.bx-next {
        width: 85px;
    }
}
@media (max-width: 1199px) and (min-width: 992px) {
    #column-left .product-thumb .product-details,
    #column-right .product-thumb .product-details {
        display: inline-block;
        vertical-align: top;
        margin-top: 12px;
    }
    .blog_default_width {
        width: 200px;
    }
}
@media (max-width: 991px) {
    .box.category {
        display: none;
    }
    .alert.alert-success.animated {
        width: 100%;
    }
    .banners-slider-carousel .carousel-block {
        padding-top: 20px;
        padding-bottom: 2px;
    }
    .product-info .image {
        width: auto;
    }
    .product-info .image-additional {
        width: 322px;
    }
    .product-info #vertical-carousel_slide {
        display: none;
    }
    .blogs .product-items {
        width: 49.2%;
    }
    .main-slider img {
        display: inline-block;
        width: 100%;
    }
    .main-slider .swiper-pager div{display:none;}
    .nav-container {
        width: auto;
        padding-left: 0px;
    }
    .wrap {
        padding-top: 15px;
    }
    header.fixed {
        position: fixed;
        top: 0;
        left:0;
        width: 100%;
        z-index: 999;
        min-height: auto;
        -moz-box-shadow: 0 4px 16px rgb(0 0 0 / 29%);
        -webkit-box-shadow: 0 4px 16px rgb(0 0 0 / 29%);
        box-shadow: 0 4px 16px rgb(0 0 0 / 29%);
        animation: slide-down 0.7s;
        background-color: #ffffff;
    }
    header.fixed .header-container {
        border-bottom: 0px;
    }
    #top-links ul.list-inline li{padding: 0 7px 0 0px}
    .main-menu ul > li > a{padding:16px 20px 15px;}
    .main-menu ul > li:first-child > a{padding:16px 20px 15px 8px;}
    .dropdown.myaccount {
        margin-top: 12px;
        margin-right: 3px;
        margin-left: 4px;
    }
    .dropdown.myaccount .myaccount-menu {
        top: 49px;
    }
    body.in-app header .dropdown.myaccount > a {
        height: 32px;
        width: 32px;
        background-position: center;
    }
    header .dropdown.myaccount > a {
        padding: 0px;
        height: 30px;
        width: 30px;
        background-size: 23px;
        background-position: center 3px;
    }
    header .dropdown.myaccount .account_title,
    header .dropdown.myaccount .account_text,
    header .dropdown.myaccount .acc_wel_text {
        font-size: 0px;
        line-height: initial;
    }
    .header-cart {
        margin-top: 11px;
        margin-left: 2px;
    }
    .btn-group.btn-block .dropdown-menu {
        top: 50px;
    }
    .btn-group.btn-block .cart_heading:before {
        background-size: 23px;
    }
    header.fixed #search {
        margin-top: 14px;
    }
    header.fixed #search .search_toggle {
        top: 44px;
    }
    header.fixed .dropdown.myaccount {
        margin-top: 9px;
    }
    header.fixed .dropdown.myaccount .myaccount-menu {
        top: 49px;
    }
    header.fixed .header-cart {
        margin-top: 8px;
    }
    header.fixed .btn-group.btn-block .dropdown-menu {
        top: 50px;
    }
    .breadcrumb {
        margin-top: 5px;
        margin-bottom: 20px;
    }
    .col-md-6.result-info {
        float: left;
        padding: 0 15px;
        position: relative;
        width: 70%;
    }
    .col-md-3.row-result-search-autocomplete-image {
        float: left;
        width: auto;
    }
    #affiliate-login .well, #account-login .well {
        padding: 15px;
    }
    #tabs ul.etabs {
        margin-top: 0px;
        float: left;
        text-align: left;
        margin-bottom: 0px;
        margin-right: 0px;
    }
    .htabs .etabs li a:before {
        background: none;
        bottom: 0px;
    }
    .htabs a {
        margin-right: 12px;
        margin-left: 12px;
    }
    .hometab .customNavigation {
        top: -30px;
    }
    #column-left .box,
    #column-right .box {
        margin-bottom: 18px;
    }
    #tabs_info {
        margin-top: 40px;
    }
    .box-heading {
        font-size: 17px;
    }
    .category_img img{max-width:100%;}
    .cat-desc{width:55%;}
    .category .image{width:45%}
    .blog-left .blog-image img{height:auto; width:100%;}
    .categoryblock{width:50%;}
    #banner0 img, #banner1 img, #banner2 img{max-width:100%;}
    .common-home .category-left-box .box-content { display:none; }
    .catgory-left { position:absolute; z-index:3; width:270px; padding:0; }
    .address_content { padding-right:35px; }
    .manufacture_block > ul { width:90%; }
    .box-category-heading { width:211px; }
    .common-home .box-category-heading { width:270px; }
    .common-home #nav-one > li > .dropdown-menu { left:268px; }
    #nav-one > li > .dropdown-menu { left:168px; }
    .box-category-heading { display:none; }
    .header-container { position: relative; }
    footer { top: auto; margin-top: 20px; }
    #column-left .box-product .image,
    #column-right .box-product .image {margin-right: 15px;}
    .col-md-4.btn-list-grid {margin-bottom: 10px;}
    .pagination-right {
        clear: both;
        float: left;
        margin: 5px 0;
    }
    .product-compare .table-bordered {
        width:100%;
        float:left;
        overflow:auto;
        display: block;
    }
    .hometab, .categorytab {
        margin-top: 30px;
    }
    .productbox-grid .product-block .button-addtocart,
    .product-carousel .product-block .button-addtocart,
    .product-grid .product-block .button-addtocart {
        display: block;
        max-width: 130px;
        width: 100%;
    }
    .productbox-grid .product-block button.addtocart,
    .product-carousel .product-block button.addtocart,
    .product-grid .product-block button.addtocart {
        width: 100%;
        padding-left: 12px;
        padding-right: 12px;
    }
    .product-thumb .caption {
        /* padding-left: 15px;
        padding-right: 15px; */
    }
    #product-product ul.breadcrumb {
        margin-top: 10px;
    }
    .box.latest, .box.bestseller, .box.featured, .box.special {
        margin-top: 42px;
        margin-bottom: 15px;
    }
    .productpage .box {
        margin-top: 40px;
    }
    .footer-blocks .footerleft #footerlogo .footerlogo {
        min-height: 50px;
    }
    #footer .footerleft.column #czfootercmsblock {
        margin-bottom: 10px;
    }
    #footer .column ul {
        display: none;
    }
    #footer .newsletter h5 {
        padding-bottom: 15px;
    }
    #footer .footerleft.column {
        width: 100% !important;
        margin-left: auto;
        padding-right: 0;
        padding-left: 0;
        margin-right: auto;
        border-right: 0;
    }
    #footer .column {
        width: 100%;
        padding: 0px;
    }
    #footer .footerright.column {
        width: 100%;
        padding: 0px;
    }
    .footerright {
        width: 100%;
        margin: 0;
        padding: 0 15px;
    }
    .btn_viewmore {
        margin-top: 15px;
    }
    #accordion .form-horizontal .control-label{width:100%;}
    .information-blogger-blogs .blog-image img{display:block;}
    #search .col-sm-3.sort{width:37%;}
    .col-sm-5.header-search{width:86%; padding:10px 0; }
    .cate-heading, ul.subcats{float:none;}
    .cat-desc {
        display: inline-block;
        float: none;
        text-align: center;
        width: 100%;
    }
    .banners-slider-carousel {
        margin-top: 25px;
    }
    #logo { text-align: center;}
    header {
        min-height: 59px;
    }
    .header-logo {
        margin-top: 12px;
        margin-bottom: 10px;
        margin-left: 45px;
        max-width: 160px;
    }
    header .header-top-inner {
        position: absolute;
        left: 0px;
        right: 0px;
        top: 0px;
        line-height: initial;
        background-color: transparent;
        z-index: 7;
    }
    header.fixed .header-logo {
        margin-top: 14px;
        margin-bottom: 14px;
        max-width: 138px;
    }
    header.fixed .nav-responsive .expandable:before {
        top: 20px;
    }
    #search .col-sm-3.sort{width:35%;}
    .category_img img{max-width:100%;}
    header .header-main .header-cms-block { display: none; }
    .layout-2.left-col #content,.layout-2.right-col #content,.layout-3 #content {
        width:100%;
    }
    .main-slider .owl-carousel{width:100%;}
    .footerbefore{ padding-left: 0px; padding-right: 0px; }
    .newsletter .newsright{ float: none; width: 100%; margin-top: 10px; }
    #footer .column ul{margin-bottom:10px; margin-top: 0px;}
    #footer .block-social {
        float: none;
        text-align: center;
        display: block;
        clear: both;
        margin-top: 0px;
    }
    #footer .block-social ul {
        display: block;
        float: none;
        text-align: center;
        margin: 0px;
    }
    .toggle .mobile_togglemenu {
        padding: 0;
    }
    #footer .column:after{content:initial;}
    .content_footer_bottom{margin-top:20px}
    .blog-left .blog-image img{height:auto; width:100%;}
    .category-row{margin-left:-5px; margin-right:-5px;}
    .categoryblock{padding-left:5px; padding-right:5px}
    .category .image{float:none; clear:both; text-align:center}
    .category .image a{display:inline-block}
    .col-sm-10.subscribe-btn{ width:100%; }
    .col-sm-10.subscribe-btn{float:left; clear:both}
    .header-left{text-align:left; width:50%; padding:0; border:medium none;}
    .col-sm-4.header-logo{float: none;}
    .header-right{width:50%; border:none; padding:40px 0 0; }
    .nav-inner{display:block; color:#fff; margin-bottom:0px}
    .common-home .nav-inner{margin-bottom:0;}
    .nav-inner-cms .box-category-heading,.nav-inner-cms .main-menu ul{display:none}
    .nav-responsive span {
        border: none;
        padding: 0px;
        font-size: 0px;
        line-height: initial;
        text-transform: capitalize;
    }
    #cms-menu {position:relative;}
    .nav-inner-cms{border:none; margin-bottom:0;}
    .content-top #content{min-height:initial;}
    .contact-info .right{float:left; clear:both; margin-top:20px;}
    #column-left .box .box-content, #column-right .box .box-content,
    #column-left .box .filterbox, #column-right .box .filterbox,
    #column-right .single-banner, #column-left .single-banner,
    #column-left .box .list-group, #column-right .box .list-group {
        display: none;
    }
    nav.nav-container.fixed .responsive-menu .main-navigation {
        height: 410px;
        overflow: auto;
        top:47px;
    }
    #column-left .box.category,
    #column-right .box.category{ display: none; }
    #column-right .toggle .mobile_togglemenu, #column-left .toggle .mobile_togglemenu {
        display: block;
        cursor: pointer;
        width: 100%;
        margin-top: 0;
        padding: 10px;
        position: absolute;
        right: 0;
        top: 0px;
        left: 0;
        background:transparent none repeat scroll 0 0;
        transition: initial;
        -webkit-transition: initial;
        -moz-transition: initial;
        -ms-transition: initial;
        -o-transition: initial;
    }
    #column-right .toggle .mobile_togglemenu:before, #column-left .toggle .mobile_togglemenu:before{
        content: "\f107";
        font-family: "FontAwesome";
        font-size: 22px;
        font-weight: 400;
        height: 20px;
        margin: 0;
        position: absolute;
        right: 0px;
        text-align: center;
        top: 14px;
        width: 20px;
        line-height: 20px;
        color: #222222;
    }
    #column-right .toggle.active .mobile_togglemenu::before, #column-left .toggle.active .mobile_togglemenu::before{
        content: "\f106";
    }

    .layout-2.left-col #column-left, .layout-2.right-col #column-right,.layout-3 #column-left, .layout-3 #column-right,#column-left,#column-right{width:100%; clear:both;}

    .result-search-autocomplete > ul > li{ float:left; clear:both;}
    .col-md-3.row-result-search-autocomplete-image {float: left; width: auto;}
    .col-md-6.result-info {float: left; width: 50%;}
    #banner0 img, #banner1 img, #banner2 img{max-width:100%;}
    .zoomWindowContainer .zoomWindow{height:450px !important;}
    .catgory-left { display:none; }

    #footer #contact.column h5 { display:block; }
    .footer-blocks { padding: 40px 0px 32px; }
    #footer .footer-blocks .row {
        margin: 0;
    }
    footer h5{ position: relative; padding-top: 6px; padding-bottom:6px;  margin-bottom: 0;}
    .newsletter h5.news-title .mobile_togglemenu:before { display: none; }
    .manufacture_block > ul { width:80%; }
    #footer #contact.column ul { margin-top:15px; width:380px; }
    .productpage .product-right{ padding-left: 10px; padding-right: 10px;}
    #content .flexslider{
        margin-bottom:20px;
    }
    #footerlogo .social-block ul {
        display: block;
    }
    p.powered{
        text-align: center;
        float: none;
        padding-top: 0;
    }
    .bottomfooter .paiement_logo_block { float: none; text-align: center; padding-top: 7px; }
    .header-container .page-container {
        padding-left: 15px;
        padding-right: 15px;
    }
    #search {
        margin-left: 0px;
        float: right;
        width: auto;
        margin-top: 16px;
        margin-right: 2px;
    }
    #search .search_toggle {
        position: absolute;
        display: none;
        width: 250px;
        right: 0px;
        top: 46px;
        z-index: 9;
    }
    #search .search_button {
        display: block;
        background-image: url(../image/codezeel/btn-search.svg);
    }
    #search .search_button:hover {
        background-image: url(../image/codezeel/search-hover.svg);
    }
    #search .search_button.active {
        background-image: url(../image/codezeel/search-close.svg);
        background-size: 17px;
    }
    #search .search_button.active:hover {
        background-image: url(../image/codezeel/search-close-hover.svg);
    }
    #search .search_toggle .input-group-btn .btn-lg {
        width: 44px;
        background-position: center 10px;
    }
    #search .input-lg {
        background-color: #ffffff;
        border-width: 1px;
        border-color: #dddddd;
    }
    .blogs {
        margin-top: 18px;
        margin-bottom: 10px;
    }
    .blog-right {
        padding-top: 15px;
        padding-right: 15px;
        padding-bottom: 15px;
        padding-left: 15px;
    }
    #footer .footerleft.column:before {
        border: 0;
    }
    .footer-blocks .footerleft #footerlogo .social-block {
        position: static;
        text-align: left;
    }
    footer .page-container {
        padding-left: 15px;
        padding-right: 15px;
    }
    .box.featured .featured-inner {
        padding-left: 15px;
        padding-right: 15px;
        padding-bottom: 15px;
    }
    #footer .footer-blocks .footerleft .social-block ul li a {
        text-align: left;
    }
    .wrap-breadcrumb .page-container {
        padding-left: 15px;
        padding-right: 15px;
    }
    .headertopright .wishlist {
        margin-left: 15px;
        padding-left: 15px;
    }
    #form-language:before {
        top: 20px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .layout-2.left-col #column-left,.layout-2.right-col #column-right{width:100%;}
    .layout-2 #content{width:77.35%;}
    #column-left .product-items .product-details, #column-right .product-items .product-details {float: left;margin: 0px 0 0;}
    .category_img img{max-width:100%;}

}

@media (max-width: 767px) {
    .product-thumb h4 {
        text-overflow: ellipsis;
        white-space: nowrap;
        overflow: hidden;
        width: 100%;
    }
    .product-grid .product-thumb .caption {
        min-height: 0;
    }
    .product-layout.product-list .product-block .image_wrapper {
        float: left;
        width: 31%;
    }
    .product-list .product-thumb .product-details {
        width: 69%;
    }
    .container {
        padding: 0 15px;
    }
    .product-thumb .button-group button, .product-thumb .button-group button + button {
        position:static !important;
    }
    .product-thumb .button-group button {
        position:static;
    }
    .product-thumb .product-details {
        min-height: 163px;
    }
    #product-search .sort {
        padding: 0px 15px;
    }
    .layout-2 #content,.layout-3 #content{width:100%;}
    .product-info .image-additional a {padding: 0px;}
    .header-left { width:100%; text-align:center; }
    .header-logo > div{display:inline-block;}
    .btn-info {margin-bottom:3px;}
    #input-search {margin-bottom: 8px;}
    .nav-responsive {
        padding-left: 0;
    }
    #logo{ margin: 0px; }
    .col-sm-4.total_amount {margin-top: 20px;}
    #top-links ul.list-inline li{padding: 0 10px 0 8px}
    .checkout-cart .table.table-bordered .input-group-btn {clear: both; margin: 5px 0 0; float: left;}
    .checkout-cart .btn.btn-danger { margin-top: -2px !important;}
    .button_class {clear:both;}
    .show-wrapper{clear:both;margin:10px 0 0;}
    .category_filter .show {float: left; margin: 8px 10px 0 0;}
    .product-compare .table-bordered{width:100%;overflow:auto;}
    .product-info .image, .product-info .additional-carousel { margin: 0 auto; max-width: 450px; float: none;}
    .breadcrumb{right:15px;}
    .information-blogger .breadcrumb{position:relative; left:0px; right:auto;}

    #czheadercmsblock{ display: none !important;}
    .main-slider .owl-carousel .owl-buttons,
    .main-slider .owl-carousel .owl-pagination{ display: none; }
    .addthis_toolbox.addthis_default_style{margin: 10px 0;}
    #content .category_list .filterbox{border:1px solid #dddddd; margin:10px 0; background-color:#fff;}
    #content .category_list .filterbox .list-group a{border:none;}
    .checkout-cart .input-group-btn:last-child > .btn, .checkout-cart .input-group-btn:last-child > .btn-group{margin-left:0; margin-right:5px;}
    .checkout-cart #accordion .input-group-btn:last-child > .btn, .checkout-cart #accordion .input-group-btn:last-child > .btn-group{margin-left: 5px; margin-right: 0;}
    .blog-left .blog-image img {
        height: auto;
        width: 100%;
    }
    .addtocart .fa{margin:0;}
    .headertopright .text2 span.hidden-xs,.headertopright .text2 span.hidden-sm,.headertopright .text2 span.hidden-md{display:block !important}
    .col-sm-5.header-search{width:78.7%;}
    nav.nav-container.fixed .responsive-menu .main-navigation {
        height: 350px;
        overflow: auto;
    }
    #search .col-sm-3.sort{width: 39%; float: left;}
    .col-sm-3.header-cart{ width:9%; }
    .nav-inner.container{padding:0 15px;}
    .owl-carousel .owl-buttons div{
        opacity: 1 !important;
        filter: alpha(opacity=100) !important;
    }
    .box.bestseller{padding-top:30px}
    #column-left .box.bestseller, #column-right .box.bestseller{padding-top:0px}
    .cz_newsletterdiv{ width: 100%;}
    .news-social{ width: 100%; padding: 20px 10px 25px;}

    .product-list .product-thumb .button-group .addtocart .fa{margin-right:10px}

    #button-cart{margin-bottom:0;}
    .information-blogger-blogs .blog-image img {
        display: inline-block;
        max-width: 100%;
    }
    .all-blog .blog-left-content .blog-image{height:auto}

    .category_tab .nav-tabs{float: left; width: 100%; margin: 10px 0;}
    .category_tab .tab-content{clear:both}
    .category_tab .tab-pane .owl-carousel .owl-buttons div{top:-50px}
    .categoryblock{width:50%; margin-bottom: 10px;}
    .category .image{float:none; clear:none}
    .category{padding:0 10px;}
    .layout-2.left-col #column-left, .layout-2.right-col #column-right, .layout-3 #column-left, .layout-3 #column-right, #column-left, #column-right{display:block !important;}
    #carousel-0.banners-slider-carousel .customNavigation a{
        opacity: 1;
        filter: alpha(opacity=100);
    }
    .responsive-menu.container {  position: relative; width:100%;}
    .main-slider { width:100%;  }
    .main-slider img { width:100%; }
    #top .container { padding:0 15px; }

    .static_links li a { padding:16px 10px 17px; }
    .header-right { text-align:center; display:none; }
    .head-right-top { float:none; margin:0 auto; display:none; }
    #content .product-carousel .product-block:hover .price, #content .product-grid .product-block:hover .price, #content .box-product .product-block:hover .price {
        opacity: 1;
        filter: alpha(opacity=100);
    }
    .bottomfooter .paiement_logo_block{ text-align: center; }
    p.powered { width:100%; }
    .footerbottom-cms { width:100%; text-align:center; }
    .top-inner .left-logo { padding-right:20px; }
    .searchbar .col-sm-3.sort { width:100%; }
    .content_header_topright { letter-spacing:0.3px; }

    .dropdown.myaccount a span.account_text {
        display: inline !important;
    }
    .productpage .product-right {
        padding-left: 15px;
        padding-right: 15px;
    }
}

@media only screen and (max-width: 650px) {
    .hometab .etabs li a:before {
        display: none;
    }
    .left-nav.pull-left { display: none; }
    .headertopright { float: none; width: 100%; text-align: center; margin-bottom: -6px; }
    .headertopright .wishlist {
        float: none;
        display: inline-block;
        vertical-align: top;
    }
}
@media only screen and (max-width: 575px) {
    .product-list .product-thumb .caption {
        text-align: center;
    }
    .blog-right {
        padding: 15px;
    }
    #tabs_info .nav.nav-tabs li a {
        padding-top: 0px;
        padding-bottom: 0px;
        padding-left: 0px;
        padding-right: 10px;
        margin-bottom: 15px;
    }
    #tabs_info .nav.nav-tabs li.active a,
    #tabs_info .nav.nav-tabs li:hover a {
        background-color: transparent;
    }
    .product-info .image-additional {
        width: 215px;
    }
    .product-list .product-thumb .product-block-inner {
        padding: 20px 0px 0px;
    }
    .product-layout.product-list .product-block .image_wrapper {
        max-width: 450px;
        width: 100%;
        margin: 0px auto;
        float: none;
        display: block;
    }
    .box.latest, .box.bestseller, .box.featured, .box.special {
        margin-top: 25px;
    }
    .product-list .product-thumb h4:before { left: 0; right: 0; margin: 0 auto; }
    .product-list .product-thumb .product-details {
        width: 100%;
    }
    .product-list .product-thumb button.addtocart {
        text-align: center;
        margin: 15px auto 0;
    }
    #tabs_info .nav-tabs li.active a:before {
        bottom: 10px;
    }
    .blog_default_width {
        width: 360px;
    }
    .productpage-quickview .product-left {
        width: 100%;
    }
    .productpage-quickview .product-right {
        width: 100%;
    }
    #product-search .sort {
        width: 70%;
    }
}
@media (max-width: 530px) {
    .product-layout.product-grid {
        width: 49.4%;
    }
}
@media (max-width: 480px) {
    .blogs .product-items {
        width: 100%;
    }
}
@media only screen and (max-width: 479px) {
    .product-info .image-additional a{float:none; text-align:center;}
    .table{
        float: left;
        margin-bottom: 20px;
        overflow: scroll;
        width: 100%;
    }
    nav#top .left-nav{ display: none; }

    .shopping-cart .input-group .form-control{width:100%;padding:0;text-align:center;}
    .account-wishlist .table-bordered{float:left;width:100%;overflow:auto;}
    .flex-direction-nav a:before {font-size:27px !important;}
    .dropdown-menu.pull-right {width: 100%;}
    .btn-group.btn-block .dropdown-menu li > div {min-width:100%;}
    .category_filter .limit {float: left;}
    .contact-info .left,.contact-info .right{width:100%;}
    .pagination-wrapper .page-link{float:left;}
    .pagination-wrapper .page-result{float:left;clear:both;}
    .checkout-cart .buttons .pull-right {clear: both;float: left; margin: 10px 0;}
    .bootstrap-datetimepicker-widget.dropdown-menu{width:auto;}
    .checkout-cart #accordion .input-group-btn {float: left; margin: 5px 0 0;}
    .blog-right { width:100%; }
    .category_tab .tab-pane .owl-carousel .owl-buttons div{top:-45px}
    .category_tab .owl-carousel .owl-buttons .owl-prev {
        display: inline-block;
        float: none;
        left: auto !important;
        opacity: 1 !important;
        -khtml-opacity: 1 !important;
        -webkit-opacity: 1 !important;
        -moz-opacity:1 !important;
        position: absolute;
        right: 51% !important;
    }
    .category_tab .owl-carousel .owl-buttons .owl-next {
        left: 51% !important;
        right: auto !important;
        display: inline-block;
        float: none;
        position: absolute;
        opacity: 1 !important;
        -khtml-opacity: 1 !important;
        -webkit-opacity: 1 !important;
        -moz-opacity:1 !important;
    }
    .category_tab .tab-content{clear:both; margin-top: 60px; float: left; width: 100%;}
    .category_tab ul li a{float:none; width:100%;}
    .category_tab ul li{background:none; padding:0;}
    .app-cms li{margin-right:5px;}
    .social-cms li{margin:0 5px 0 0;}
    .footerblock{width: auto;
        margin: 15px 0;
        float: left;
        clear: both;
    }
    .hometab .tab-content{clear:both}

    #menu{width:60%}

    .news-social .social-title .social-heading{
        font-size: 16px;
        line-height: 28px;
    }
    .headertopright .text2-dec{ display: none; }
    .headertopleft{display:inline-block; float:none; margin-bottom:10px; text-align:center; width:100%;}
    .shipping-cms{text-align:left}

    #form-currency .dropdown-menu{right:0px; text-align:left}
    #column-left .box-product .product-block-inner,
    #column-right .box-product .product-block-inner {
        max-width: 100%;
    }
    .breadcrumb{
        left: 0;
        position: relative;
        right: auto;
    }
    #tabs_info .table{float:none;}
    .checkout-cart .shopping-cart .input-group-btn:last-child > .btn, .checkout-cart .shopping-cart .input-group-btn:last-child > .btn-group{margin-left:0px; margin-right:5px}
    .checkout-cart #accordion .input-group-btn:last-child > .btn, .checkout-cart #accordion .input-group-btn:last-child > .btn-group{margin-left: 0px; margin-right: 5px;}
    .blog-left{float:none;}
    .category .image{float:none; clear:both; text-align:center}
    .result-search-autocomplete{width:100% !important;}
    .col-md-6.result-info{text-align:left; width:69%; padding-right:0;}
    .result-search-autocomplete > ul > li{width:100%;}
    .alert.alert-success.animated{height:110px;}
    .comment-wrapper{width:100%; float:left; margin:0;}

    .manufacture_block > ul { width:100%; padding:0; }

    .nav-tabs { height:auto !important; }
    .productpage .breadcrumb { width:100%; text-align:left; }
    #content .image-additional .slider-item .product-block { margin:4px 3px; }
    .breadcrumb { width:100%; text-align:left; }
    #form-language, #form-currency { background:none; }
    .subscribe-btn .btn.btn-lg{ padding-left: 10px; padding-right: 10px; }
}
@media (max-width: 450px) {
    #spinner {
        background-size: 15%;
    }
}
@media (max-width: 380px) {
    header {
        min-height: 58px;
    }
    .header-logo {
        max-width: 138px;
    }
    header.fixed .header-logo {
        max-width: 130px;
    }
    .dropdown.myaccount {
        margin-right: 2px;
        margin-left: 0px;
    }
    .btn-group.btn-block .cart_heading {
        width: 28px;
    }
    .nav-responsive .expandable:before {
        top: 20px;
    }
    .dropdown.myaccount .myaccount-menu {
        top: 51px;
        right: -20px;
        min-width: 255px;
    }
    header.fixed .dropdown.myaccount .myaccount-menu {
        top: 47px;
    }
    .btn-group.btn-block .dropdown-menu {
        top: 52px;
    }
    header.fixed .btn-group.btn-block .dropdown-menu {
        top: 48px;
    }
    #search .search_toggle {
        top: 48px;
        width: 240px;
        right: -30px;
    }
    header.fixed #search .search_toggle {
        top: 42px;
    }
    .btn-group.btn-block .dropdown-menu { width: 270px; }
    .btn-group.btn-block .text-right .addtocart,
    .btn-group.btn-block .text-right .checkout {
        padding-top: 6px;
        padding-right: 15px;
        padding-bottom: 6px;
        padding-left: 15px;
    }
}
@media (max-width: 369px) and (min-width: 351px) {
    .product-thumb .product-details {
        min-height: 189px;
    }
}
@media (max-width: 350px) {
    .product-thumb .product-block-inner {
        margin: 0 auto;
        text-align: center;
        max-width: 216px;
    }
    .productbox-grid .product-block .product-block-inner,
    .product-carousel .product-block .product-block-inner,
    .product-grid .product-block .product-block-inner {
        text-align: center;
        max-width: 216px;
        margin: 0px auto;
    }
    .product-layout.product-grid,
    .product-layout.product-list {
        width: 100%;
    }
    .product-layout.product-grid {
        width:100% !important;
        border-right: 0px;
    }
}
@media only screen and (max-width: 319px) {

    .product-info .product-image .customNavigation{ margin:0 auto; position: relative; }
    .product-info .additional-carousel { max-width: 226px; margin:0 auto;}
    .btn-primary {margin-bottom:2px;}
    .compare-total {clear: both; margin: 8px 10px 10px 0;}
}


/*
 * 	Core Owl Carousel CSS File
 *	v1.3.3
 */

/* clearfix */
.owl-carousel .owl-wrapper:after {
    content: ".";
    display: block;
    clear: both;
    visibility: hidden;
    line-height: 0;
    height: 0;
}
/* display none until init */
.owl-carousel {
    display: none;
    position: relative;
    width: 100%;
    touch-action: pan-y;
}
.owl-carousel .owl-wrapper {
    display: none;
    position: relative;
    transform: translate3d(0px, 0px, 0px);
}
.owl-carousel .owl-wrapper-outer {
    overflow: hidden;
    position: relative;
    width: 100%;
}
.owl-carousel .owl-wrapper-outer.autoHeight {
    -webkit-transition: height 500ms ease-in-out;
    -moz-transition: height 500ms ease-in-out;
    -ms-transition: height 500ms ease-in-out;
    -o-transition: height 500ms ease-in-out;
    transition: height 500ms ease-in-out;
}
.owl-carousel .owl-item {
    float: left;
}
.owl-controls .owl-page, .owl-controls .owl-buttons div {
    cursor: pointer;
}
.owl-controls .owl-buttons div {
    position: absolute;
}
.owl-controls .owl-buttons .owl-prev {
    left: 10px;
    top: 50%;
}
.owl-controls .owl-buttons .owl-next {
    right: 10px;
    top: 50%;
}
.owl-controls {
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
/* mouse grab icon */
.grabbing {
    cursor: url(grabbing.png) 8 8, move;
}
/* fix */
.owl-carousel .owl-wrapper, .owl-carousel .owl-item {
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    -ms-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0)
}


/* OpenCart Code */
/* .owl-carousel {
	display: none;
	position: relative;
	width: 100%;
	touch-action: pan-y;
} */
.owl-carousel .owl-wrapper {
    display: none;
    position: relative;
    -o-transform: translate3d(0px,0px,0px);
    transform: translate3d(0px,0px,0px);
    -webkit-transform: translate3d(0px,0px,0px);
    -moz-transform: translate3d(0px,0px,0px);
    -ms-transform: translate3d(0px,0px,0px);
}
/* .owl-carousel .owl-wrapper-outer {
	overflow: hidden;
	position: relative;
	width: 100%;
} */
.owl-carousel .owl-wrapper-outer.autoHeight{
    -webkit-transition: height 500ms ease-in-out;
    -moz-transition: height 500ms ease-in-out;
    -ms-transition: height 500ms ease-in-out;
    -o-transition: height 500ms ease-in-out;
    transition: height 500ms ease-in-out;
}
.owl-carousel .owl-item {
    float: left;
}
.owl-controls .owl-buttons div {
    position: absolute;
}
.owl-controls .owl-buttons .owl-prev{
    left: 10px;
    top: 45%;
}

.owl-controls .owl-buttons .owl-next{
    right: 10px;
    top: 45%;
}
.owl-carousel .owl-buttons div i {
    font-size: 40px;
    margin: -20px 0 0;
}
.owl-pagination {
    text-align: center;
    position: relative;
}
.owl-controls .owl-page {
    display: inline-block;
    margin: 0px 6px;
}
.owl-controls .owl-page span {
    display: block;
    width: 11px;
    height: 11px;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 20px;
    -webkit-border-radius: 20px;
    box-shadow: inset 0 0 3px rgba(0,0,0,0.3);
}
.owl-controls .owl-page.active span {
    background: rgba(0, 0, 0, 0.9);
}
@media (max-width: 1199px) and (min-width: 992px) {
    .grid_default_width,
    .tablatest_default_width,
    .tabbestseller_default_width,
    .tabspecial_default_width,
    .featured_default_width,
    .latest_default_width,
    .special_default_width,
    .bestseller_default_width,
    .related_default_width,
    .categorylist_default_width {
        width: 24.4%;
    }
}
@media (max-width: 991px) and (min-width: 531px) {
    .grid_default_width,
    .tablatest_default_width,
    .tabbestseller_default_width,
    .tabspecial_default_width,
    .featured_default_width,
    .latest_default_width,
    .special_default_width,
    .bestseller_default_width,
    .related_default_width {
        width: 32.4%;
    }
}
@media (max-width: 767px) and (min-width: 651px) {
    .categorylist_default_width {
        width: 32.5%;
    }
}
@media (max-width: 650px) and (min-width: 401px) {
    .categorylist_default_width {
        width: 49.5%;
    }
}
@media (max-width: 530px) and (min-width: 400px) {
    .grid_default_width,
    .tablatest_default_width,
    .tabbestseller_default_width,
    .tabspecial_default_width,
    .featured_default_width,
    .latest_default_width,
    .special_default_width,
    .bestseller_default_width,
    .related_default_width {
        width: 50%;
    }
}
@media (max-width: 400px) {
    .categorylist_default_width {
        width: 100%;
    }
}

/******** Contact Page Design *********/

.contact-form {
    float: left;
    width: 100%;
    background-color: #ffffff;
    padding: 40px 40px;
    border-radius: 5px;
    -webkit-border-radius: 5px;
}
.contact-form .left-part {
    width: 50%;
    float: left;
    margin-right: 30px;
}
.contact-form .left {
    float: right;
    width: 50%;
    padding-left: 30px;
    margin-top: 0px;
    position: relative;
    z-index: 4;
    padding-right: 0px;
}
.contact-form .right {
    margin-top: 0px;
    float: left;
    width: 50%;
    padding-right: 30px;
    padding-left: 0px;
    padding-top: 20px;
    padding-bottom: 0;
    border-right: 1px solid #dddddd;
}
.contact-form .map {
    width: 100%;
    float: left;
}
#content .contact-form h3 {
    font-size: 18px;
    margin-bottom: 20px;
}
.contact-form .left strong {
    font-size: 14px;
    text-transform: capitalize;
    padding-bottom: 0px;
    display: inline-block;
    vertical-align: top;
    color: #222222;
    font-weight: 500;
}
.contact-form .left address {
    display: inline-block;
}
.contact-form .left .address-detail {
    border-bottom: 1px solid #dddddd;
    padding-bottom: 15px;
    margin-bottom: 20px;
}
.contact-form .left  .comments {
    border-top: 1px solid #dddddd;
    padding-top: 20px;
    margin-top: 20px;
    width: 100%;
    float: left;
    padding-left: 0;
}
.information-contact .contact-form .panel-body {
    padding: 30px 0;
    overflow: auto;
    width: 100%;
    float: left;
}
.contact-form .form-horizontal .control-label {
    padding-left: 0;
    padding-right: 0;
}
.contact-form .left .contact a.btn.btn-info {
    margin-top: 20px;
}
.contact-form .left .address-detail1 strong {
    margin-bottom: 8px;
}
.contact-form .left .map-btn a.btn.btn-info {
    color: #ffffff;
    background-color: #D14507;
    border: 1px solid #D14507;
}
.contact-form .left .map-btn a.btn.btn-info:hover {
    color: #ffffff;
    background-color: #222222;
    border-color: #222222;
}
#google_map {
    width: 100%;
    height: 320px;
    margin-top: 40px;
    margin-bottom: 20px;
    clear: both;
    float: left;
    border-radius: 5px;
    -webkit-border-radius: 5px;
}
@media (max-width: 1199px) {
    .contact-form .left .address-detail .img-thumbnail {
        max-height: 40px;
        width: auto;
    }
    .contact-form .left {
        padding-left: 15px;
    }
    .contact-form .right {
        padding-right: 15px;
    }
}
@media (max-width:991px){
    .contact-form .left,
    .contact-form .right {
        width: 100%;
        padding: 0;
        border:0;
    }
    .contact-form {
        padding-bottom: 30px;
    }
    .contact-form .left {
        margin-top: 10px;
    }
}
@media(max-width:767px){
    .contact-form .form-horizontal .control-label {
        margin-bottom: 10px;
        padding-left: 15px;
    }
    .contact-form .map-btn {
        margin-top: 20px;
        margin-bottom: 20px;
    }

}

.product-thumb .button-group button,
.product-thumb .button-group a {
    background-color: rgba(255, 255, 255, 0.85);
    border-radius: 50%;
    width: 36px;
    height: 36px;

    display: flex;
    align-items: center;
    justify-content: center;

    transition: background-color 0.2s ease, color 0.2s ease;
}

@media (max-width: 767px) {
    /* 1. Кнопки (wishlist / compare / quickview) всегда видны */
    .product-thumb .button-group {
        top: 5px;
        opacity: 1;
        filter: alpha(opacity=100);
    }
    .product-thumb:hover .button-group {
        top: 5px; /* чтобы hover ничего не менял */
    }

    /* 2. Рейтинг и скидка не зависят от hover */
    .product-block .product-details .rating {
        opacity: 1;
        filter: alpha(opacity=100);
    }
    .product-block.product-thumb .percentsaving {
        opacity: 1;
        filter: alpha(opacity=100);
    }
    .product-block.product-thumb:hover .percentsaving {
        opacity: 1;
    }

    /* 3. Убираем эффект второй картинки на мобильном,
       чтобы первый тап не тратился на "показать hover" */
    .product-thumb .image .image_content {
        display: none !important;
    }
}

.mobile__block {
    display: none;
}

body.in-app .mobile__block {
    display: block;
}

.desktop__block {
    display: block;
}

body.in-app .desktop__block {
    display: none;
}


body.in-app .desktop__block#column-left {
    display: none!important;
}

.category_filter {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.btn-back {
    display: none;
    padding: 0;
    border: none;
    background-color: transparent;
}

body.in-app .btn-back {
    display: block;
}

.position-relative {
    position: relative;
}

.banner__wrap {
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center right;
    padding: 30px 15px;
    width: calc(100% + 30px);
    left: -15px;
    position: relative;
}
.banner__wrap.cleaning {
    background-image: url("https://shop.app.loc/image/catalog/categorylist/banner/cleaning_banner.png");
}

.banner__wrap p {
    max-width: 60%;
    width: 100%;
    font-size: 10px;
    line-height: 150%;
    letter-spacing: 0.5px;
    margin-bottom: 0;
}

.banner__wrap {
    font-size: 14px;
}



.col-xs-4.col-md-2 {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    margin-bottom: 20px;
}
.category__item {
    display: flex;
    flex-direction: column;
    height: 100%;
}
.category__item h3 {
    margin-top: 10px;
    min-height: 40px; /* или height: 2.5em — для выравнивания текста */
}


.category__item h3 {
    font-size: 14px;
    font-weight: normal;
    line-height: 130%;
    margin-top: 6px;
    min-height: 40px;
}

.banner-content {
    position: relative;
}

.banner-content:first-child {
    margin-bottom: 5px;
}
.banner-content:first-child h2 {
    margin-bottom: 20px;
}
.banner-content:last-child img {
    height: 120px;
}

.banner-content:last-child .banner-text h2 {
    line-height: 1;
}

.banner-content .special__text {
    color: #D14507;
    font-size: 30px;
    font-weight: 800;
    margin-bottom: 5px;
}

.banner-content .banner-text h2 {
    font-size: 18px;
    line-height: 1.4;
    text-align: left;
}

.banner-content .banner-text {
    position: absolute;
    max-width: 220px;
    width: 100%;
    text-align: left;
    top: 50%;
    transform: translateY(-50%);
    padding: 0 15px;
}

.delivery__wrap {
    background-color: #2D394B;
    padding: 25px 20px;
    float: left;
    width: 100%;
    clear: both;
    text-align: left;
}

.delivery__wrap .delivery_title {
    color: #fff;
    font-size: 12px;
    font-weight: 500;
    margin-bottom: 5px;
}

.delivery_text {
    color: #fff;
    font-size: 12px;
    font-weight: 200;
    margin-bottom: 0;
    line-height: 16px;
}

.latest_review {
    float: left;
    width: 100%;
    clear: both;
    margin-top: 60px;
}

.latest_review h3 {
    color: #222;
    font-size: 18px;
    font-weight: 400;
    padding: 0 18px;
    border-bottom: 2px solid #E1E1E1;
}


/* star rating*/
.star-rating {
    font-size: 0;
    position: relative;
    width: 90px;
    height: 18px;
    overflow: hidden;
    background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxOCIgaGVpZ2h0PSIxOCIgdmlld0JveD0iMCAwIDE4IDE4IiBmaWxsPSJub25lIj4NCiAgICA8cGF0aCBkPSJNOC45OTk3NiAxMi45NTYyTDUuODg3MjYgMTQuODMxMkM1Ljc0OTc2IDE0LjkxODcgNS42MDYwMSAxNC45NTYyIDUuNDU2MDEgMTQuOTQzN0M1LjMwNjAxIDE0LjkzMTIgNS4xNzQ3NiAxNC44ODEyIDUuMDYyMjYgMTQuNzkzN0M0Ljk0OTc2IDE0LjcwNjIgNC44NjIyNiAxNC41OTY5IDQuNzk5NzYgMTQuNDY1OUM0LjczNzI2IDE0LjMzNDkgNC43MjQ3NiAxNC4xODc5IDQuNzYyMjYgMTQuMDI0OUw1LjU4NzI2IDEwLjQ4MTJMMi44MzEwMSA4LjA5OTlDMi43MDYwMSA3Ljk4NzQgMi42MjgwMSA3Ljg1OTE1IDIuNTk3MDEgNy43MTUxNUMyLjU2NjAxIDcuNTcxMTUgMi41NzUyNiA3LjQzMDY1IDIuNjI0NzYgNy4yOTM2NUMyLjY3NDI2IDcuMTU2NjUgMi43NDkyNiA3LjA0NDE1IDIuODQ5NzYgNi45NTYxNUMyLjk1MDI2IDYuODY4MTUgMy4wODc3NiA2LjgxMTkgMy4yNjIyNiA2Ljc4NzRMNi44OTk3NiA2LjQ2ODY1TDguMzA2MDEgMy4xMzExNUM4LjM2ODUxIDIuOTgxMTUgOC40NjU1MSAyLjg2ODY1IDguNTk3MDEgMi43OTM2NUM4LjcyODUxIDIuNzE4NjUgOC44NjI3NiAyLjY4MTE1IDguOTk5NzYgMi42ODExNUM5LjEzNjc2IDIuNjgxMTUgOS4yNzEwMSAyLjcxODY1IDkuNDAyNTEgMi43OTM2NUM5LjUzNDAxIDIuODY4NjUgOS42MzEwMSAyLjk4MTE1IDkuNjkzNTEgMy4xMzExNUwxMS4wOTk4IDYuNDY4NjVMMTQuNzM3MyA2Ljc4NzRDMTQuOTEyMyA2LjgxMjQgMTUuMDQ5OCA2Ljg2ODY1IDE1LjE0OTggNi45NTYxNUMxNS4yNDk4IDcuMDQzNjUgMTUuMzI0OCA3LjE1NjE1IDE1LjM3NDggNy4yOTM2NUMxNS40MjQ4IDcuNDMxMTUgMTUuNDM0MyA3LjU3MTkgMTUuNDAzMyA3LjcxNTlDMTUuMzcyMyA3Ljg1OTkgMTUuMjk0IDcuOTg3OSAxNS4xNjg1IDguMDk5OUwxMi40MTIzIDEwLjQ4MTJMMTMuMjM3MyAxNC4wMjQ5QzEzLjI3NDggMTQuMTg3NCAxMy4yNjIzIDE0LjMzNDQgMTMuMTk5OCAxNC40NjU5QzEzLjEzNzMgMTQuNTk3NCAxMy4wNDk4IDE0LjcwNjcgMTIuOTM3MyAxNC43OTM3QzEyLjgyNDggMTQuODgwNyAxMi42OTM1IDE0LjkzMDcgMTIuNTQzNSAxNC45NDM3QzEyLjM5MzUgMTQuOTU2NyAxMi4yNDk4IDE0LjkxOTIgMTIuMTEyMyAxNC44MzEyTDguOTk5NzYgMTIuOTU2MloiIGZpbGw9IiNjMWMxYzEiLz4NCjwvc3ZnPg0K");
    background-size: contain;
}

.star-rating__star {
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;
    width: 20%;
    height: 100%;
    opacity: 0;
    background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxOCIgaGVpZ2h0PSIxOCIgdmlld0JveD0iMCAwIDE4IDE4IiBmaWxsPSJub25lIj4NCiAgICA8cGF0aCBkPSJNOC45OTk3NiAxMi45NTYyTDUuODg3MjYgMTQuODMxMkM1Ljc0OTc2IDE0LjkxODcgNS42MDYwMSAxNC45NTYyIDUuNDU2MDEgMTQuOTQzN0M1LjMwNjAxIDE0LjkzMTIgNS4xNzQ3NiAxNC44ODEyIDUuMDYyMjYgMTQuNzkzN0M0Ljk0OTc2IDE0LjcwNjIgNC44NjIyNiAxNC41OTY5IDQuNzk5NzYgMTQuNDY1OUM0LjczNzI2IDE0LjMzNDkgNC43MjQ3NiAxNC4xODc5IDQuNzYyMjYgMTQuMDI0OUw1LjU4NzI2IDEwLjQ4MTJMMi44MzEwMSA4LjA5OTlDMi43MDYwMSA3Ljk4NzQgMi42MjgwMSA3Ljg1OTE1IDIuNTk3MDEgNy43MTUxNUMyLjU2NjAxIDcuNTcxMTUgMi41NzUyNiA3LjQzMDY1IDIuNjI0NzYgNy4yOTM2NUMyLjY3NDI2IDcuMTU2NjUgMi43NDkyNiA3LjA0NDE1IDIuODQ5NzYgNi45NTYxNUMyLjk1MDI2IDYuODY4MTUgMy4wODc3NiA2LjgxMTkgMy4yNjIyNiA2Ljc4NzRMNi44OTk3NiA2LjQ2ODY1TDguMzA2MDEgMy4xMzExNUM4LjM2ODUxIDIuOTgxMTUgOC40NjU1MSAyLjg2ODY1IDguNTk3MDEgMi43OTM2NUM4LjcyODUxIDIuNzE4NjUgOC44NjI3NiAyLjY4MTE1IDguOTk5NzYgMi42ODExNUM5LjEzNjc2IDIuNjgxMTUgOS4yNzEwMSAyLjcxODY1IDkuNDAyNTEgMi43OTM2NUM5LjUzNDAxIDIuODY4NjUgOS42MzEwMSAyLjk4MTE1IDkuNjkzNTEgMy4xMzExNUwxMS4wOTk4IDYuNDY4NjVMMTQuNzM3MyA2Ljc4NzRDMTQuOTEyMyA2LjgxMjQgMTUuMDQ5OCA2Ljg2ODY1IDE1LjE0OTggNi45NTYxNUMxNS4yNDk4IDcuMDQzNjUgMTUuMzI0OCA3LjE1NjE1IDE1LjM3NDggNy4yOTM2NUMxNS40MjQ4IDcuNDMxMTUgMTUuNDM0MyA3LjU3MTkgMTUuNDAzMyA3LjcxNTlDMTUuMzcyMyA3Ljg1OTkgMTUuMjk0IDcuOTg3OSAxNS4xNjg1IDguMDk5OUwxMi40MTIzIDEwLjQ4MTJMMTMuMjM3MyAxNC4wMjQ5QzEzLjI3NDggMTQuMTg3NCAxMy4yNjIzIDE0LjMzNDQgMTMuMTk5OCAxNC40NjU5QzEzLjEzNzMgMTQuNTk3NCAxMy4wNDk4IDE0LjcwNjcgMTIuOTM3MyAxNC43OTM3QzEyLjgyNDggMTQuODgwNyAxMi42OTM1IDE0LjkzMDcgMTIuNTQzNSAxNC45NDM3QzEyLjM5MzUgMTQuOTU2NyAxMi4yNDk4IDE0LjkxOTIgMTIuMTEyMyAxNC44MzEyTDguOTk5NzYgMTIuOTU2MloiIGZpbGw9IiNGMEQ3MTUiLz4NCjwvc3ZnPg0K");
    background-size: contain;
}
.star-rating__star ~ .star-rating__star {
    width: 40%;
}
.star-rating__star ~ .star-rating__star ~ .star-rating__star {
    width: 60%;
}
.star-rating__star ~ .star-rating__star ~ .star-rating__star ~ .star-rating__star {
    width: 80%;
}
.star-rating__star ~ .star-rating__star ~ .star-rating__star ~ .star-rating__star ~ .star-rating__star {
    width: 100%;
}

.star-rating__input {
    -moz-appearance: none;
    -webkit-appearance: none;
    position: relative;
    z-index: 2;
    opacity: 0;
    display: inline-block;
    width: 20%;
    height: 100%;
    margin: 0;
    padding: 0;
}
.star-rating__input:hover + i, .star-rating__input:checked + i {
    opacity: 1;
}

.star-rating:hover .current-rating {
    display: none;
}
.current-rating.current-rating--1 .star-rating__star, .current-rating.current-rating--1-5 .star-rating__star, .current-rating.current-rating--2 .star-rating__star, .current-rating.current-rating--2-5 .star-rating__star, .current-rating.current-rating--3 .star-rating__star, .current-rating.current-rating--3-5 .star-rating__star, .current-rating.current-rating--4 .star-rating__star, .current-rating.current-rating--4-5 .star-rating__star, .current-rating.current-rating--5 .star-rating__star {
    opacity: 1;
}
.current-rating.current-rating--1 .star-rating__star {
    width: 20%;
}
.current-rating.current-rating--1-5 .star-rating__star {
    width: 30%;
}
.current-rating.current-rating--2 .star-rating__star {
    width: 40%;
}
.current-rating.current-rating--2-5 .star-rating__star {
    width: 50%;
}
.current-rating.current-rating--3 .star-rating__star {
    width: 60%;
}
.current-rating.current-rating--3-5 .star-rating__star {
    width: 70%;
}
.current-rating.current-rating--4 .star-rating__star {
    width: 80%;
}
.current-rating.current-rating--4-5 .star-rating__star {
    width: 90%;
}
.current-rating.current-rating--5 .star-rating__star {
    width: 100%;
}

.list-group-rating {
    list-style: none;
    padding: 0 18px;
}

.author__wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.author__wrap p {
    margin-bottom: 8px;
    margin-top: 4px;
    color: #333333;
    font-size: 12px;
    font-weight: 400;
}

.author__wrap p.author {
    font-weight: 500;
}

.list-group-item-rating:first-child {
    border-top: none;
}

.list-group-item-rating {
    margin-bottom: 12px;
    padding-top: 12px;
    border-top: 1px solid rgba(0, 0, 0, 0.25);
}

.list-group-item-rating .desc {
    font-size: 12px;
    color: #333333;
}

.paiement_logo_block {
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.load_wrap {
    background: #F6F4E8;
    position: fixed;
    inset: 0;
    width: 100vw;
    height: 100vh;
    z-index: 9999;

    display: none;
    justify-content: center;
    align-items: center;
    text-align: center;
}

html.no-scroll,
body.no-scroll {
    overflow: hidden;
}

.load{
    position: relative;
    width:100px;
    height:100px;
}
.load hr{border:0;margin:0;width:40%;height:40%;position:absolute;border-radius:50%;animation:spin 2s ease infinite}

.load :first-child{background:#D14507;animation-delay:-1.5s}
.load :nth-child(2){background:#DE7B4F;animation-delay:-1s}
.load :nth-child(3){background:#F3CBBA;animation-delay:-0.5s}
.load :last-child{background:#EDB8A1}

@keyframes spin{
  0%,100%{transform:translate(0)}
  25%{transform:translate(160%)}
  50%{transform:translate(160%, 160%)}
  75%{transform:translate(0, 160%)}
}