/*------------
[FROM STYLE.CSS
*/

 
/* ----------------
 [3. Header]
 */


/*-----------------
 [ 3.3 Main header]
 */

 .select2-container--default .select2-selection--single .select2-selection__rendered {
    line-height: 41px;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
    top: 6px;
    right: 15px;
}

.select2-dropdown {
    border: 1px solid #eaeaea;
}

.select2-container--open .select2-dropdown {
    left: -1px;
}

.select2-container .select2-selection--single .select2-selection__rendered {
    padding-left: 15px;
}

.cart-block {
    position: absolute;
    top: 100%;
    right: -1px;
    z-index: 999;
    /*max-height: 500px;
    overflow-y: auto;*/
    background: #FFF;
    color: #0A0A0A;
    width: 500px;
    opacity: 0;
    -webkit-box-shadow: 0px 4px 7px 0px rgba(50, 50, 50, 0.2);
    -moz-box-shadow: 0px 4px 7px 0px rgba(50, 50, 50, 0.2);
    box-shadow: 0px 4px 7px 0px rgba(50, 50, 50, 0.2);

    -webkit-transition: opacity 0.5s,
    -webkit-transform 0.5s;
    transition: opacity 0.5s, transform 0.5s;
    /*-webkit-transform: translate(0, 40px);
    -moz-transform: translate(0, 40px);
    -o-transform: translate(0, 40px);
    -ms-transform: translate(0, 40px);
    transform: translate(0, 40px);*/
    display: block;
    visibility: hidden;
}

.cart-block .cart-block-content {
    padding: 10px;
    overflow: hidden;
    text-align: right;
}

.cart-block .cart-block-content .cart-title {
    text-transform: uppercase;
    font-size: 12px;
}

.cart-block .cart-block-content .cart-block-list {
  max-height: 240px;
  overflow-x: hidden;
  overflow-y: auto;
  padding: 5px;
}



.cart-block .cart-block-content .sticky-wrapper {
  background-color: #F5F5F5;
  margin-right: -10px;
  margin-left: -10px;
  margin-bottom: -10px;
  padding: 10px;
  padding-top: 1px;
}
.cart-block .cart-block-content .toal-cart {
    margin-top: 10px;
    text-align: left;
}
.cart-block .cart-block-content .toal-cart .note{
  font-size: 14px;
  line-height: 22px;
  font-weight: 400;
  color: #A3A3A3;
}
.cart-block .cart-block-content .toal-cart.savings {
    color: #00b050;
}
.cart-block .cart-block-content .toal-cart.grandtotal {
    font-weight: bold;
}

.cart-block .cart-block-content .toal-cart .toal-price {
    font-size: 14px;
    color: #0A0A0A;
}
.cart-block .cart-block-content .toal-cart.savings .toal-price {
    color: #00b050;
}
.cart-block .cart-block-content .toal-cart.grandtotal .toal-price {
    font-weight: 600;
    color: #869603;
    font-size: 20px;
}
.cart-block .cart-block-content .toal-cart.grandtotal .toal-info {
    font-size: 20px;
	color: #171717;
}

.cart-block .cart-block-content .cart-buttons {
    overflow: hidden;
    width: 100%;
}

.cart-block .cart-block-content .cart-buttons a {
    width: 50%;
    /* height: 35px; */
    float: left;
    margin-top: 12px;
    /* text-transform: uppercase; */
    font-size: 13px;
    padding: 10px 0;
    text-align: center;
}

span.notify {
    width: 32px;
    height: 22px;
    color: #fff;
    text-align: center;
    position: absolute;
    line-height: normal;
    font-size: 11px;
    z-index: 1;

}

span.notify-right {
    right: 0px;
}


/*----------------
[5. Home slide]
*/
.bx-wrapper {
    margin: 0;
}

/*---------- 
[Checkbox]
*/

 
input[type="checkbox"], input[type="radio"]{
    display: none;
  }
  
  /*Check box*/
  input[type="checkbox"] + .label-text:before{
      content: "\f096";
      font-family: "FontAwesome";
      speak: none;
      font-style: normal;
      font-weight: normal;
      font-variant: normal;
      text-transform: none;
      line-height: 1;
      -webkit-font-smoothing:antialiased;
      width: 1em;
      display: inline-block;
      margin-right: 5px;
  }
  .category_list .filter_wrapper input[type="checkbox"] + .label-text:before{
      content: "\f1db";
  }
  .category_list .filter_wrapper input[type="checkbox"]:checked + .label-text:before{
      content:"\f058";
  }
  input[type="checkbox"]:checked + .label-text:before{
      content: "\f058";
      color: #707070;
      animation: effect 250ms ease-in;
  }
  
  input[type="checkbox"]:disabled + .label-text{
      color: #aaa;
  }
  
  input[type="checkbox"]:disabled + .label-text:before{
      content: "\f0c8";
      color: #ccc;
  }
  
  /*Radio box*/
  
  input[type="radio"] + .label-text:before{
      content: "\f10c";
      font-family: "FontAwesome";
      speak: none;
      font-style: normal;
      font-weight: normal;
      font-variant: normal;
      text-transform: none;
      line-height: 1;
      -webkit-font-smoothing:antialiased;
      width: 1em;
      display: inline-block;
      margin-right: 5px;
      color: #707070;
  }
  
  input[type="radio"]:checked + .label-text:before{
      content: "\f192";
      color: 81C5C5;
      animation: effect 250ms ease-in;
  }
  
  input[type="radio"]:disabled + .label-text{
      color: #aaa;
  }
  
  input[type="radio"]:disabled + .label-text:before{
      content: "\f111";
      color: #ccc;
  }
  .checkout-onepage input[type="checkbox"]:checked + .label-text:before{
    content: "\f14a";
    font-family: "Font Awesome 5 Free";
  }
  
  /*Radio Toggle*/
  
  .toggle input[type="radio"] + .label-text:before{
      content: "\f204";
      font-family: "FontAwesome";
      speak: none;
      font-style: normal;
      font-weight: normal;
      font-variant: normal;
      text-transform: none;
      line-height: 1;
      -webkit-font-smoothing:antialiased;
      width: 1em;
      display: inline-block;
      margin-right: 10px;
  }
  
  .toggle input[type="radio"]:checked + .label-text:before{
      content: "\f205";
      color: #7FB9B4;
      animation: effect 250ms ease-in;
  }
  
  .toggle input[type="radio"]:disabled + .label-text{
      color: #aaa;
  }
  
  .toggle input[type="radio"]:disabled + .label-text:before{
      content: "\f204";
      color: #ccc;
  }
 
  
/* GENERAL */
body {
    background-attachment: fixed;
    /*overflow-x: auto;*/
    overflow-x: hidden;
    background-image: unset !important;
    background-color: #f8f8f8 !important;
}
body > .container{
  margin-top: 18px;
}
body.noScroll, .container.noScroll {
  overflow-y: hidden;
  /*position: fixed;
  width: 100%;*/
}

@supports (-ms-ime-align: auto) {
    .ais-search-box--reset {
        display: none;
    }
}

#logo_desktop{
  display:block;
}
#logo_mobile{
  display:none;
}
#info_price {
  font-weight: bold;
}

.checkout_result a.btn-primary{
    margin-top: .5em;
	border-radius: 99px;
}

.btn.active.focus, .btn.active:focus, .btn.focus, .btn:active.focus, .btn:active:focus, .btn:focus{
    outline:none;
    box-shadow: none;
}
.owl-carousel.owl-drag .owl-item {
    padding: 0 2px;
}
.hide-on-desktop {
    display: none;
}
.btn .display-static.close-x{
  padding: 10px;
}
.btn .display-static.close-x img{
  width: 20px;
  max-height: 40px;
}
.error {
    font-weight: normal;
    font-size: 12px;
    color: red;
}

#menu_overlay{
  background: rgba(0, 0, 0, 0.7);
  width: 100%;
  height: 100%;
  z-index: 5;
  top: 0;
  left: 0;
  overflow-y: scroll;
  position: fixed;
  color: #fff;
  opacity: 0.8;
  text-align: center;
  display: none;
}

.placeholder-bg {
    background-color: #f3f3f3;
}

.placeholder-h-400 {
    height: 400px;
}

.placeholder-h-300 {
    height: 300px;
}

.placeholder-h-200 {
    height: 200px;
}

.placeholder-h-150 {
    height: 150px;
}

.placeholder-h-100 {
    height: 100px;
}

.placeholder-h-40 {
    height: 40px;
}

.placeholder-h-30 {
    height: 30px;
}

.placeholder-b-10 {
    margin-bottom: 10px;
}

.bootbox.modal {
    z-index: 99993 !important;
}

.pop-up-message .fancybox-inner {
    height: auto !important;
}

.tooltip, .tooltip * {
    text-align: left;
}
.tooltip p {
    margin-bottom: 5px;
}

#fixed-slider{
  height: 393px;
}

#shop-leftmenu img.discount_tag {
  height: 14px;
  margin-top: 2px;
}

.open-product-detail {
    cursor: pointer;
}
.open-product-detail .hide-grid, #individual-product .show-grid {
  display: none !important;
}
.open-product-detail .show-grid {
  display: inline-block;
}
#related_product_block .hide-grid {
  display: inline-block !important;
}

.items>.open-product-detail:hover {
  margin-top: 28px !important;
  padding: 0px 10px;
}
.open-product-detail:hover {
  border-radius: 4px;
  /* border: 1px solid #eee !important;
  -webkit-box-shadow: 0px 0px 5px 0px rgba(132, 132, 132,1);
  -moz-box-shadow: 0px 0px 5px 0px rgba(132, 132, 132,1);
  box-shadow: 0px 0px 5px 0px rgba(132, 132, 132,1); */
}
.open-product-detail:hover:after {
  /*content: '';*/
  position: absolute;
  top: 0%;
  left: 45%;
  width: 0;
  height: 0;
  border-top: solid 10px#0f67b1;
  border-left: solid 10px transparent;
  border-right: solid 10px transparent;
}
.open-product-detail .right-block .category-name a {
  color: #666;
}
.open-product-detail .right-block .category-name a:hover {
  color: #0f67b1;
}
.my_account_link svg{
  height: 30px;
  margin-top: 12px;
  /*margin-left: 135px;*/
}

input[type=number]::-webkit-outer-spin-button,
input[type=number]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

input[type=number] {
    -moz-appearance:textfield;
}

a {
    color: #666666;
    text-decoration: none;
}
a:hover {
    color: #3e9e08;
    text-decoration: none;
}
h1 a, h2 a, h3 a, h4 a, h5 a, h6 a {
    color: #666;
}
h1 a:hover, h2 a:hover, h3 a:hover, h4 a:hover, h5 a:hover, h6 a:hover {
    color: #3e9e08;
    text-decoration: none;
}

.datepicker table tr td.new:not(.disabled), .datepicker table tr td.old:not(.disabled) {
    color: initial;
}

/**
 * ELEVATE ZOOM
 */
.zoomContainer {
    z-index: 4;
}

#CheckoutSurveyForm_message{
    margin: 8px 0 20px 0;
}

/* Loading indicator */
.element-loading {
    border: 6px solid rgba(100, 100, 100, 0.4);
    border-top: 6px solid rgba(255, 255, 255, 0.6);
    border-radius: 100%;
    height: 50px;
    width: 50px;
    -webkit-animation: fancybox-rotate .8s infinite linear;
    animation: fancybox-rotate .8s infinite linear;
    background: transparent;
    position: absolute;
    top: 50%;
    left: 50%;
    margin-top: -30px;
    margin-left: -30px;
    z-index: 99999; }

/* BOOTSTRAP FIX */
@media (min-width: 1024px){
  .container {
      width: 984px;
  }
}
@media (min-width: 1280px){
  .container {
      width: 1228px;
  }
}
@media (min-width: 1366px){
  .container {
      width: 1312px;
  }
}
@media (min-width:1440px){
  .container {
      width: 1382px;
  }
}
@media (min-width:1536px){
  .container {
      width: 1476px;
  }
}
/* @media (min-width:1920px){
  .container {
      width: 1844px;
  }
}
@media (min-width:2560px){
  .container {
      width: 2458px;
  }
} */

.navbar-nav {
    margin: 0;
}

.navbar-nav > li {
    float: left;
    margin: 0;
}

.form-control, .btn {
    border-radius: 0;
}

.btn {
    position: relative;
    z-index: 1;
    overflow: hidden;
    text-align: center;
    cursor: pointer;
    font-weight: normal;
    -webkit-font-smoothing: antialiased;
    border-radius: 99px;
}

.btn .display, .btn .display-static, .btn .effect {
    display: block;
    /* padding: 8px 14px; */
    /* font-weight: normal; */
    font-family: 'NotoSans-Regular';
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
}

.btn .display-static:active {
  color: #fff
}

.input-group .btn .display, .input-group .btn .display-static, .input-group .btn .effect {
    padding: 7px 12px;
}

.btn .effect {
    position: absolute;
    top: 100%;
    left: 0;
    z-index: -1;
    width: 100%;
    height: 100%;
    /*-webkit-transform: translateX(-25%);*/
}

.btn .display,
.btn .effect {
    -webkit-transition: all 0.15s;
    -moz-transition: all 0.15s;
    transition: all 0.15s;
}

.btn:hover a,
.btn:focus a {
    color: inherit;
}

.btn:hover .display,
.btn:focus .display {
    -webkit-transform: translateY(-100%);
    -moz-transform: translateY(-100%);
    transform: translateY(-100%);
    transform: translateX(0);
}

.btn:hover .effect, .btn.add-cart:hover .effect, .btn.new-address:hover .effect,
.btn:focus .effect, .btn.add-cart:focus .effect, .btn.new-address:focus .effect {
    top: 0;
    /*-webkit-transform: translateY(0%);
    -moz-transform: translateY(0%);
    transform: translateY(0%);*/
}

.btn-primary, .btn-warning,
.btn.add-cart, .btn.new-address {
    padding: 0;
    border: none;
}
@media (max-width: 992px) {
  .btn-primary, .btn-warning, .btn.add-cart, .btn.new-address {
    /* padding: 0 14px; */
  }
  .btn .display, .btn .display-static, .btn .effect {
    font-size: 16px;
  }
}
.btn.add-cart {
    background-color: #006a3c;
}
.btn.add-cart.btn-add-to-cart, .btn.add-cart.view-product {
    background-color: #006a3c;
}
.btn.btn-add-to-cart:hover {
    background-color: #006a3c;
}
.btn.btn-notify-me{
  font-size: 14px;
  color: #FFF;
  background-color: #d1d1d1;
  -webkit-transition: none;
  -moz-transition: none;
  transition: none;
  display: block;
  padding: 8px 14px;
  margin: 10px 0;
  width: 100%;
  height: 36px;
}

.btn-primary {
    color: #fff;
    background-color: #869603 !important;
    text-transform: none;
}

.btn-primary.static {
}

.btn-primary .display {
    background: #869603;
    padding: 8px 14px;
}

.btn-primary .display:hover {
  background: #869603;
}

.btn-primary.static * {
    color: #fff !important;
}

.btn-primary .effect {
    background: #869603;
}

.btn-primary.active, .btn-primary.focus,
.btn-primary:active, .btn-primary:focus,
.btn-primary:hover, .btn-primary[disabled],
.open > .dropdown-toggle.btn-primary {
    /*border-color: #7FB9B4;*/
    border-color: #869603;
    /*background-color: #7FB9B4;*/
    background-color: #869603;
}

.btn-warning {
    color: #fff;
    background-color: #ec971f;
    text-transform: uppercase;
}

.btn-warning .display {
    background: #ec971f;
}

.btn-warning .effect {
    background: #f85f02;
}

.btn-warning.active, .btn-warning.focus,
.btn-warning:active, .btn-warning:focus,
.btn-warning:hover, .btn-warning[disabled],
.open > .dropdown-toggle.btn-warning {
    /* background-color: #f8a91a; */
    box-shadow: none;
}

.cart-buttons .btn-warning {
    background-color: #ec971f;
}

.cart-buttons .btn-warning:hover {
    background-color: #f8a91a !important;
}

.btn.add-cart {
    /*border: #d6d6d6 1px solid;*/
    border: none;
}

.btn.add-cart .display, .btn.add-cart .effect {
    font-size: 14px;
    padding-top: 9px;
    color: #FFF;
    background-color: #00b050;
    -webkit-transition: none;
    -moz-transition: none;
    transition: none;
}

.btn.add-cart .effect {
    color: #FFF;
    background-color: #1C4229;
}
#cart-block .add-cart .effect {
    z-index: 1;
}

.btn.add-cart .input-group {
  background-color: #00b050;
  color: #FFF;
  width: 102%;
  height: 36px;
}

.btn.add-cart .input-group .form-control {
    background-color: #FFF;
    border: none;
    text-align: center;
    box-shadow: none;
    padding: 0;
    margin-top: 3px;
    margin-bottom: 3px;
    height: 30px;
    -webkit-box-shadow: none;
    font-weight: 500;
}

.btn.add-cart .display, .btn.new-address .display,
.btn.add-cart .effect, .btn.new-address .effect {
    /*-webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    transition: all 0.3s;*/
}

.btn.add-cart .effect, .btn.new-address .effect {
    /*-webkit-transform: translateX(-105%);
    -moz-transform: translateX(-105%);
    transform: translateX(-105%);*/
}

.btn.new-address {
    color: #171717;
    border: 2px solid #66B52E;
    background-color: transparent;
    padding: 8px 14px;
	border-radius: 99px;
}

.btn.new-address .effect {
    color: #fff;
    background-color: #7FB9B4;
}

.btn.btn-new-address {
    color: #fff;
    border: #869603 1px solid;
    background-color: #869603;
}

.btn.btn-new-address .effect {
    color: #869603;
    background-color: #fff;
}

.btn.new-address.active, .btn.new-address.focus,
.btn.new-address:active, .btn.new-address:focus,
.btn.new-address:hover, .btn.new-address[disabled],
.open > .dropdown-toggle.btn.new-address {
    border-color: #869603;
    /* background-color: #A9B24D; */
    -webkit-transition: all 0.15s;
    -moz-transition: all 0.15s;
    transition: all 0.15s;
}

.btn.new-address:hover .display-static, .btn.new-address:focus .display-static,
.btn.new-address.active, .btn.new-address.focus,
.btn.new-address:active, .btn.new-address:focus,
.btn.new-address:hover, .open > .dropdown-toggle.btn.new-address {
    color: #869603;
    box-shadow: none;
}

.btn-default, .btn-default:hover, .btn-default:focus {
    color: #fff;
    background-color: #d6d6d6;
    border: none;
    box-shadow: none;
    /* padding: 8px 14px; */
}

.btn.add-cart.btn-default {
    border: #d6d6d6 1px solid;
    padding: 8px 14px !important;
}

.btn.out-of-stock {
  background-color: #ccc;
  color: #666;
  cursor: default;
}
.btn.view-more {
    border: none;
    background-color: #fff;
    color: #666;
}

.btn.view-more:hover {
    color: #333;
}

.btn-toolbar {
    border: #d6d6d6 1px solid;
    color: #333;
    background-color: #fff;
}

.btn-toolbar:hover {
    border: #666 1px solid;
}

.btn-toolbar.active, .btn-toolbar.active:hover {
    background-color: #3e9e08;
    color: #fff;
    border-color: #3e9e08;
}

.btn-toolbar.disabled {
    background-color: #d6d6d6;
}

.btn img {
    max-height: 20px;
}

.btn-full-width {
    width: 100%;
}

/* BOOTBOX */

body.modal-open {
    padding-right: 0 !important;
    overflow: initial;
}

.bootbox.modal {
    padding-right: 0 !important;
}

.bootbox.frontend-authentication ~ .modal-backdrop.in {
    opacity: 1 !important;
    background-color: #fff !important;
}

.bootbox .btn-primary, .bootbox .btn-warning, .bootbox .btn-default,
.bootbox .btn-primary .display-static, .bootbox .btn-warning .display-static, .bootbox .btn-default .display-static {
    padding: 6px 12px;
}

.bootbox.reserve-delivery-dialog .btn-primary {
    padding: 0;
}

.bootbox .btn-primary:focus {
    border-color: #7FB9B4;
    background-color: #7FB9B4;
}

.text-primary {
    color: #3e9e08;
}

.bootbox .bootbox-body {
    margin-top: 10px;
}

.bootbox .modal-content {
    border-radius: 0;
}

.bootbox .modal-footer {
    border-top: none;
    padding-top: 0;
}

.bootbox .modal-footer .btn-default {
    color: #fff;
    background-color: #ec971f;
}

.bootbox .modal-footer .btn-default:active, .bootbox .modal-footer .btn-default:focus,
.bootbox .modal-footer .btn-default:hover {
    border-color: #f8a91a;
    background-color: #f8a91a;
}

.bootbox .bootbox-body .ccpromo-notify {
    padding: 15px;
}
.bootbox .bootbox-body .ccpromo-notify .left {
    float: left;
    width: 50px;
    margin-right: 10px;
    text-align: left;
}
.bootbox .bootbox-body .ccpromo-notify .right {
    float: right;
    width: calc(100% - 60px);
    text-align: left;
}

/* OWL CAROUSEL */

.owl-carousel .owl-nav.disabled, .owl-carousel .owl-nav .disabled {
    /*display: inherit;*/
    display: none;
}

.owl-carousel .owl-prev, .owl-carousel .owl-next {
    z-index: 99;
    /* background: rgba(0, 0, 0, 0.3) !important ; */
    position: absolute;
    top: calc(50% - 40px);
    width: 30px;
    height: 30px;
    color: #000 !important  ;
    text-align: center
}


.owl-carousel .owl-prev i, .owl-carousel .owl-next i {
    display: inline-block;
    margin-top: 3px;
    font-size: 50px;
}

.owl-carousel .owl-prev {
    left: -5px;
    outline: none;
}

.owl-carousel .owl-next {
    right: -5px;
    outline: none;
}
.product-featured .owl-carousel .owl-nav .owl-prev {
    right: 0;
    /*opacity: 1;*/
    visibility: inherit;
}
/* NOTIFICATION BOX */

#notification-box .container {
    background-color: #fff;
    border: #fff 1px solid;
    border-bottom: none;
    /*border-top: 3px solid #3e9e08;*/
}

#notification-box .alert {
    margin: 0 -1px;
    border: none;
    border-radius: 0;
    text-align: left;
    padding: 10px 15px;
}

#notification-box .alert,
#notification-box .alert * {

}

#notification-box .alert-danger {
    background-color: #f54337;
    color: #FFFFFF;
}

#notification-box .alert-success {
    background-color: #69ab2f;
    color: #FFFFFF;
}

#notification-box .alert-error {
    background-color: #cb4632;
    color: #FFFFFF;
}

/* PAGINATION */

.pagination {
    font-size: 12px;
    line-height: 100%;
    display: block;
    width: 100%;
    text-align: center;
}

.pagination li {
    display: inline-block;
}

.pagination > li > a, .pagination > li > span {
    border: none;
    padding: 4px 8px 2px;
}

.pagination li a {
    color: #666;
}

.pagination li:hover a, .pagination li:focus a {
    font-weight: bold;
    color: #666;
    background-color: transparent;
}

.pagination li.selected a {
    color: #fff;
    font-weight: bold;
    background: #3e9e08;
    border-radius: 50%;
    margin-left: 0;
    margin-right: 2px;
}

/* DEFAULT GIANT */
.address {
    text-align: left;
    border: #d6d6d6 1px solid;
    padding: 15px 20px;
}

.address:hover {
    border: #798288 1px solid;
}

.address.selected, .address.selected:hover {
    padding: 13px 18px;
    border: #0f67b1 3px solid;
}

.address, .address a {
    color: #333;
}

.address .action a {
    margin-left: 5px;
}

.address .action a:hover {
    color: #3e9e08;
}


.mail-box input {
    color: inherit;
    border: #dcdcdc 1px solid;
    background-color: #fff;
    height: 37px;
    width: 100%;
}

.mail-box .input-group-btn button {
    margin: 0;
    height: auto;
    background-color: #f8a91a;
    color: #fff;

}

.mail-box:hover .input-group-btn button {
    background-color: #f7c060;
}

.img.transparent:hover {
    opacity: 0.6;
}

#img-footer-phone {
    margin-top: -90px;
    position: relative;
    z-index: 2;
}

.social {
    color: #666;
    margin: 0 10px;
}

.social:hover {
    color: #333;
}

.bg-grey {
    background-color: #AAB3BC;
}

.bg-silver {
    background-color: #F6F6F6;
}

.bg-white {
    background-color: #fff;
    padding-top: 0 !important;
}

.font-white {
    color: #fff;
}

.font-orange {
    color: orange;
}

.mid-color {
    color: #666;
}

.middle-color {
    color: #747474;
}

.dark-color {
    color: #333;
}

/* DEMO NOTICE */
.demo-notice {
    margin: 0;
    padding: 5px;
    background: #d75f07;
    font-weight: normal;
    line-height: 1.15;
    color: #fff;
    text-align: center;
    font-size: 11px;
}

.demo-notice p {
    font-size: 11px;
    font-weight: normal;
    line-height: 1;
    margin: 0;
    text-align: center;
}

.demo-notice .separator {
    display: inline-block;
    margin: -3px 10px 0;
}

.demo-notice .separator:before {
    display: inline-block;
    content: "";
    position: absolute;
    border: rgba(255, 255, 255, 0.5) 1px solid;
    height: 22px;
    margin-top: -2px;
}

.demo-notice-login-logout {
    font-size: 16px;
    padding: 5px;
    background: #818B27;
}

.demo-notice-login-logout .close-notice-login-logout {
    color: #fff;
}

/* HEADER */

.top-header {
    /*background-color: rgba(255, 255, 255, 0.75);*/
    background-color: transparent;
    position: absolute;
    width: 100%;
    font-size: 14px;
    text-align: center;
}

.top-header .container {
    position: relative;
}

.top-header a {
    border-right: none;
}

#user-info-my-account {
    display: none;
}

.top-header .nav-top-links > .a {
    cursor: pointer;
    display: inline-block;
    padding: 0 10px;
    margin-left: 0;
}

.top-header .nav-top-links > .a:hover {
    /*background: #3e9e08;*/
}

.top-header .nav-top-links > .a:hover > span {
    color: #0f67b1;
}

.top-header .nav-top-links > .a > span {
    color: #333;
}

#user-info-top .dropdown .current-open {
    display: inline-block;
    height: 34px;
}

#user-info-top .dropdown .current-open > * {
    padding-right: 2px;
}

#user-info-top .dropdown .current-open span {
    padding-right: 5px;
}

#user-info-top .dropdown .current-open:after {
    position: absolute;
    right: 0;
    top: 0;
}

.top-header a.no-border {
    border-right: none !important;
    padding-right: 0;
}

.floating-form {
    transition: all 0.4s;
    opacity: 0;
    visibility: hidden;
    position: absolute;
    z-index: 100;
    width: 300px;
    margin-left: -120px;
    background: #fff;
    border: #eee 1px solid !important;
    padding: 10px;
    -webkit-box-shadow: 0px 4px 7px 0px rgba(50, 50, 50, 0.2);
    -moz-box-shadow: 0px 4px 7px 0px rgba(50, 50, 50, 0.2);
    box-shadow: 0px 4px 7px 0px rgba(50, 50, 50, 0.2);
    transform: translateY(50px);
    -webkit-transform: translateY(50px);
    -o-transform: translateY(50px);
    -ms-transform: translateY(50px);
    -khtml-transform: translateY(50px);
}

.floating-form p {
    line-height: 20px;
}

.floating-form a {
    border-right: 0;
    padding-right: 0;
    margin-left: 0;
}

.floating-form .help-block {
    margin-top: 5px;
}

.floating-form label span {
    display: inline-block;
}

.top-header .dropdown-menu {
    z-index: 1020 !important;
    top: 90%;
}

.top-header .nav-top-links span:hover .floating-form, .floating-form:hover {
    transition: all 0.6s;
    opacity: 1;
    visibility: visible;
    transform: translateY(0px);
    -webkit-transform: translateY(0px);
    -o-transform: translateY(0px);
    -ms-transform: translateY(0px);
    -khtml-transform: translateY(0px);
}

.top-header .nav-top-links span.login .form-group .help-block.error,
.top-header .nav-top-links span.register .form-group .help-block.error {
    margin: 5px 0 0;
    line-height: 1.5;
    color: #f00;

}

.top-header .nav-top-links span.login .form-group {
    margin-bottom: 11px;
}

.top-header .nav-top-links span.login .btn {
    margin-top: 0;
}

.top-header .nav-top-links span.register .form-group {
    margin-bottom: 0;
}

.top-header .nav-top-links span.register .btn {
    margin-top: 0;
}

.top-header .nav-top-links span.a .checkbox-input,
.top-header .nav-top-links span.a .radio-input {
    cursor: pointer;
}

.top-header .nav-top-links span.a .checkbox-input label,
.top-header .nav-top-links span.a .radio-input label {
    margin-top: -2px;
}

.top-header .nav-top-links span.a .checkbox-rememberme {
    margin-top: 8px;
    margin-bottom: 0;
}

.top-header .nav-top-links span.a .link-forgotpassword {
    margin-top: 5px;
}

.top-header .nav-top-links form {
    line-height: 1.42857143;
}

.nav-top-links.nav-ontop-hide .form-input .help-block {
    margin-top: 5px;
}

.top-header .nav-top-links span.a .checkbox-rememberme label {
    margin-top: 0;
}

.top-header .nav-top-links span.login-register .form-group {
    margin-bottom: 11px;
}

.top-header .nav-top-links span.login-register .form-control,
.top-header .nav-top-links span.login-register input.error {
    font-size: 14px !important;
}

.top-header .nav-top-links span.a.login-register form {
    font-size: 14px;
}

#customer-form-header {
    width: 300px;
    margin-left: -75px;
    max-height: 500px;
    overflow-y: auto;
	padding-bottom: 0;
}

#customer-form-header #register-button-header {
	margin-bottom: 10px;
}

#customer-form-header .is-hidden {
    display: none;
}

#customer-form-header .subheader {
    margin-bottom: 11px;
}

#customer-form-header .subheader:not(.first-subheader) {
    padding-top: 11px;
}

#customer-form-header .subheader.border-top {
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

#customer-form-header .label-field-radio {
    width: 50%;
    min-width: 150px;
}

#customer-form-header .form-input-radiogroup {
    display: inline-block;
    cursor: pointer;
}

#customer-form-header .form-input-radio {
    display: inline-block;
    margin-left: 10px;
    margin-right: 30px;
}

#customer-form-header .form-input-radio label {
    text-transform: capitalize;
    padding-left: 10px;
}

#customer-form-header .label-field-checkbox {
    width: 60%;
    min-width: 150px;
}

#customer-form-header .account-type .form-input-radio label {
    padding-left: 8px;
}

#customer-form-header .form-input .label-field-radio {
    width: 100%;
}

#customer-form-header .form-input .btn-address-icon {
    line-height: 1.42857143;
}

#customer-form-header .form-input .btn-address-icon img {
    margin: 0;
}

#customer-form-header .form-input .street-2-input {
    margin-top: 5px;
}

#customer-form-header .form-input .unit-no-symbol {
    border-right-width: 0 !important;
    float: left;
    width: 33px;
}

#customer-form-header .form-input .unit-no-input {
    float: left;
}

#customer-form-header .form-input .unit-no-input-1 {
    width: calc(100% - 33px);
}

#customer-form-header .form-input .unit-no-symbol-minus {
    width: 30px;
}

#customer-form-header .form-input .unit-no-input-2 {
    width: calc(100% - 33px);
    margin-bottom: 11px;
}

#customer-form-header .btn-address-icon {
    background: #FFFFFF;
    border: 1px solid #D5D4D2;
    border-radius: 22px;
    box-shadow: inset 0 0 1px rgba(0, 0, 0, 0.3);
}

#customer-form-header .btn-address-icon:hover:not(:disabled),
#customer-form-header .btn-address-icon:focus:not(:disabled) {
    border: 1px solid #D5D4D2;
    box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.3);
}

#customer-form-header .btn-address-icon:disabled {
    background: rgba(0, 0, 0, 0.1);
    cursor: not-allowed;
}

#customer-form-header .btn-address-icon img {
    width: 30px;
    height: 30px;
}

#customer-form-header .address-icon {
    outline: none;
    margin: 0px;
    display: inline-block;
    width: 30px;
    height: 30px;
    vertical-align: middle;
    border-radius: 15px;
}

#customer-form-header .address-icon-selected {
    box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.3);
}

.nav_search .form-inline .form-group.search-suggestion {
    width: 100%;
}

.nav_search .form-inline .form-group.search-suggestion .list-suggestion.categorylist-suggestion {
    border-top: 1px solid #ddd;
    padding: 8px;
    margin-top: 10px;
}

.nav_search .form-inline .form-group.search-suggestion .list-suggestion.suggestionlist-suggestion {
    border-bottom: 1px solid #ddd;
    padding: 8px;
    margin-bottom: 0px;
}

.nav_search .form-inline .form-group.search-suggestion .list-suggestion.categorylist-suggestion blue {
    color: #00b050;
}

.list-suggestion em {
    font-weight: bold;
    font-style: normal;
    text-transform: capitalize;
}

.nav_search .form-inline .form-group.search-suggestion .product-suggestion li {
    margin-bottom: 8px;
}

.nav_search .form-inline .form-group.search-suggestion .product-suggestion li .suggested-product {
    width: 100%;
}

.nav_search .form-inline .form-group.search-suggestion .product-suggestion .search-product-image {
  text-align: center;
  float: left;
  width: 70px;
  height: 70px;
  position: relative;
}

.nav_search .form-inline .form-group.search-suggestion .product-suggestion .search-product-image .oos-overlay{
    position: absolute;
    font-size: 9px;
    left: 0;
    right: 0;
    top: calc(50% - 11px);
    color:#FFF;
    background-color:#AEAEAE;
    padding: 3px;
}

.nav_search .form-inline .form-group.search-suggestion .product-suggestion .search-product-image img {
    width: auto;
    height: auto;
    max-height: 80%;
    max-width: 80%;
}

.nav_search .form-inline .form-group.search-suggestion .product-suggestion .search-product-image.greyed img {
    filter: grayscale(100%);
}

.nav_search .form-inline .form-group.search-suggestion .product-suggestion .search-product-name {
    float: left;
    width: calc(100% - 75px);
    padding-left: 10px;
    padding-top: 0;
    line-height: 1.2;
    font-size:13px;
}
.nav_search .form-inline .form-group.search-suggestion .product-suggestion .search-product-size {
    float: left;
    width: calc(100% - 75px);
    padding-left: 10px;
    padding-top: 0;
    font-size: 12px;
    color: #858585;
}
.nav_search .form-inline .form-group.search-suggestion .product-suggestion .search-product-price {
    float: left;
    width: calc(100% - 75px);
    padding-left: 10px;
    padding-top: 0;
}
.nav_search .form-inline .form-group.search-suggestion .product-suggestion .search-product-price p.item-price {
    line-height: 1;
    margin-top: 3px;
    margin-bottom:0px;
}
.nav_search .form-inline .form-group.search-suggestion .product-suggestion .search-product-price .original-price {
    color: #818B27;
  margin-right: 3px;
}
.nav_search .form-inline .form-group.search-suggestion .product-suggestion .search-product-price .original-price.price-off {
  text-decoration: line-through;
  color: #666;
}
.nav_search .form-inline .form-group.search-suggestion .product-suggestion .search-product-price .promo-price.price-off {
  color: red;
  margin-right: 7px;
}
.nav_search .form-inline .form-group.search-suggestion .product-suggestion .search-product-price .promo-price.price-off-qty {
  color: #FFF;
  background-color: #F44336;
  border-radius: 5px;
  padding: 2px 7px;
  margin-top: -2px;
  margin-left: 1px;
  height: 20px;
  float: right;
  font-weight: 700;
  font-size: 11px;
  line-height: 1.5;
  text-transform: uppercase;
}

.nav_search .form-inline .input-search input {
    padding: 8px 14px;
    height: auto;
    border-radius: 5px;
    box-shadow:none;
    -webkit-box-shadow:none;
}
.nav_search .form-inline .input-search input[placeholder] {
  font-size: 13px;
}
.nav_search .form-inline .input-search input::-webkit-input-placeholder { /* Chrome/Opera/Safari */
  font-size: 13px;
}
.nav_search .form-inline .input-search input::-moz-placeholder { /* Firefox 19+ */
  font-size: 13px;
}
.nav_search .form-inline .input-search input:-ms-input-placeholder { /* IE 10+ */
  font-size: 13px;
}
.nav_search .form-inline .input-search input:-moz-placeholder { /* Firefox 18- */
  font-size: 13px;
}
@media (max-width:1430px){
  
  .my_account_link svg {
    margin-left: 0;
  }

  #fixed-slider{
    height: 319px;
  }

  #reserve-delivery-slot .display, #reserve-delivery-slot .display-static{
      font-size:14px;
      white-space: normal;
      line-height: 1.3;
  }


  #reserve-delivery-slot .effect .form-control[placeholder] { text-overflow: ellipsis; }
  #reserve-delivery-slot .effect .form-control::-moz-placeholder { text-overflow: ellipsis; } /* firefox 19+ */
  #reserve-delivery-slot .effect .form-control:-moz-placeholder { text-overflow: ellipsis; }
  #reserve-delivery-slot .effect .form-control{
      font-size:14px;
  }
  #reserve-delivery-slot .wrapper .text-reserve{
    font-size: 13px;
    width: 150px;
    padding-top: 12px;
  }
}

@media (max-width:1200px){
  #fixed-slider{
    height: 300px;
  }

  #reserve-delivery-slot .effect .form-control[placeholder] { text-overflow: ellipsis; }
  #reserve-delivery-slot .effect .form-control::-moz-placeholder { text-overflow: ellipsis; } /* firefox 19+ */
  #reserve-delivery-slot .effect .form-control:-moz-placeholder { text-overflow: ellipsis; }
  #reserve-delivery-slot .effect .form-control{
      font-size:13px;
  }
}

.popover-cart .popover-image{
      padding-right: 10px;
}

.popover-cart .popover-image img{
  max-width:60px;
  max-height: 60px;
}

.popover-cart .media-body{
  padding-top:10px;
  display:inline-block;
  width:auto;
}

.popover-cart .item-added{
    color:#000;
}

.popover .popover-content{
    width: 220px;
}

.cart-link i.giant2 {
    position: relative;
    right: 15px;
    font-size: 36px;
    color: #3e9e08;
}

.cart-link .notify {
    /*right: 40%;*/
}

.cart-link:after {
    display: none;
}

.cart-link .savings {
    color: #3e9e08;
    font-weight: bold;
}

.cart-link span i {
    font-style: normal;
}

.cart-block-content .remove_link {
    padding: 0 3px 0 4px;
}

.cart-block-content .remove_link:after {
    display: none !important;
}

.cart-block-content .img {
    display: block;
    width: 100px;
    height: 100px;
    text-align: center;
}

.cart-block-content .img img {
    max-height: 100%;
    max-width: 100%;
}

.cart-block-content .purchase-more, .cart-block-content .amex-info {
    color: #3e9e08;
    margin-top: 5px;
    padding-top: 5px;
    font-size: 12px;
    /* border-top: #eee 1px solid; */
}

.cart-block-content .ccpromo-notify {
    background-color: #FFF;
    color: #000;
    margin: 0 -20px;
    padding: 15px 20px;
    font-size: 12px;
    text-align: left;
}
.cart-block-content .ccpromo-notify .left {
    float: left;
    width: 50px;
    margin-right: 10px;
    text-align: left;
}
.cart-block-content .ccpromo-notify .right {
    float: right;
    width: calc(100% - 60px);
    text-align: left;
}

.cart-block .cart-block-content .cart-buttons a {
    padding: 0;
    width: calc(50% - 3px);
    /* border-radius: 20px; */
}

.cart-block .cart-block-content .cart-buttons a:first-child {
    margin-right: 3px;
}

.cart-block .cart-block-content .cart-buttons a:last-child {
    margin-left: 3px;
}

.cart-block .cart-block-content .cart-buttons a:hover {
    opacity: 1;
}

.cart-block .toal-cart .toal-info{
  font-size: 14px;
  margin-right: 5px;
}
.cart-block .p-right .input-group {
  border: #eee 1px solid;
  max-width: 60%;
  float: right;
}
.cart-block .p-right .input-group .btn-mini-cart-input-quantity {
    text-align: center;
    border: none;
}
.cart-block .greyed{
  background-color: #ccc;
  cursor: default;
}

.cart-block .cart-block-content .product-info {
    margin-top: 10px;
    border-bottom: 1px solid #eaeaea;
    display: block;
    overflow: hidden;
    padding-bottom: 10px;
}

#cart-info-block {
  padding-top: 0px;
  display: block;
  color: #FFF;
  padding-left: 0;
  text-align: center;
  margin-right: 15px !important;
  margin-left: 10px;
  min-width: 150px;

}
#cart-info-block p.savings {
  background-color: #0f67b1;
  color: #FFF;
  padding: 2px 10px;
  border-radius: 5px;
  font-size: 10px;
  display: inline-block;
}

.language .current-open img {
    width: 20px;
}


/* FLOATING HEADER */
.header{
  position:fixed;
  top:0;
  width:100%;
  z-index: 5;
  background-color: #00b050;
  -webkit-box-shadow: 0px -21px 16px 18px rgba(158,158,158,1);
  -moz-box-shadow: 0px -21px 16px 18px rgba(158,158,158,1);
  box-shadow: 0px -21px 16px 18px rgba(158,158,158,1);
}

#reserve-delivery-opntop {
    position: absolute;
    top: 10px;
    right: 50px;
    width: 250px;
}

/* RESERVE DELIVERY SLOT */
#reserve-delivery-slot {
    right: 40px;
    width: 300px;
}

#reserve-delivery-slot .wrapper {
    margin-top: -1px;
    height: 42px;
    width: 100%;
    padding: 0px;
}

#reserve-delivery-slot .icon {
    width: 50px;
    height: 40px;
    position: absolute;
    top: 0;
    left: 0;
    padding: 6px;
    text-align: center;
    cursor: pointer;
}

#reserve-delivery-slot .icon svg {
    max-width: 100%;
    max-height: 100%;
}

#reserve-delivery-slot .icon path {
    /* fill: #424242; */
    fill: #FFF;
}

#reserve-delivery-slot .display, #reserve-delivery-slot .display-static, #reserve-delivery-slot .effect {
    height: 40px;
    margin-left: 50px;
    width: calc(100% - 50px);
}

#reserve-delivery-slot .display, #reserve-delivery-slot .display-static {
    /*background-color: #7FB9B4;*/
    color: #fff;
    text-align: left;
    padding: 10px 2px;
}
#reserve-delivery-slot .display.reserved {
    text-align: left;
    padding: 2px 2px;
}
#reserve-delivery-slot .display i, #reserve-delivery-slot .display-static i {
    font-size: 11px;
    font-style: normal;
    display: block;
}

#reserve-delivery-slot .display b, #reserve-delivery-slot .display-static b {
    font-size: 13px;
    font-weight: normal !important;
    display: block;
    color: #0f67b1;
}

#reserve-delivery-slot .effect {
  background-color: #fff;
  padding: 1px;
  border: 1px solid #888;
  border-radius: 5px;
}

#reserve-delivery-slot .effect .form-group {
  width: calc(100% - 40px);
}
#reserve-delivery-slot .effect .form-control {
  padding: 8px 12px;
  /* height: calc(100% - 2px); */
  border: none;
}
#reserve-delivery-slot .wrapper .effect .btn-delivery{
  background: transparent url('../images/icon/right-arrow.png') no-repeat center center;
  border: none;
  border-radius: 0;
  color: #fff;
  font-weight: bold;
  position: absolute;
  width: 25px;
  height: 25px;
  top: 7px;
  right: 8px;
}
#reserve-delivery-slot .effect .form-control::-webkit-input-placeholder { /* Chrome/Opera/Safari */
  font-size:13px;
}
#reserve-delivery-slot .effect .form-control::-moz-placeholder { /* Firefox 19+ */
  font-size:13px;
}
#reserve-delivery-slot .effect .form-control:-ms-input-placeholder { /* IE 10+ */
  font-size:13px;
}
#reserve-delivery-slot .effect .form-control:-moz-placeholder { /* Firefox 18- */
  font-size:13px;
}
#check-delivery-postal-mobile::-webkit-input-placeholder { /* Chrome/Opera/Safari */
  font-size:11px;
  padding-top: 5px;
}
#check-delivery-postal-mobile::-moz-placeholder { /* Firefox 19+ */
  font-size:11px;
  padding-top: 5px;
}
#check-delivery-postal-mobile:-ms-input-placeholder { /* IE 10+ */
  font-size:11px;
  padding-top: 5px;
}
#check-delivery-postal-mobile:-moz-placeholder { /* Firefox 18- */
  font-size:11px;
  padding-top: 5px;
}
#btn-cart{
  height: 28px;
  padding-left: 36px;
  /* background: transparent url('data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4KPCEtLSBHZW5lcmF0b3I6IEFkb2JlIElsbHVzdHJhdG9yIDE5LjIuMCwgU1ZHIEV4cG9ydCBQbHVnLUluIC4gU1ZHIFZlcnNpb246IDYuMDAgQnVpbGQgMCkgIC0tPgo8c3ZnIHZlcnNpb249IjEuMSIgaWQ9IkNhcGFfMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayIgeD0iMHB4IiB5PSIwcHgiCgkgdmlld0JveD0iMCAwIDYwIDYwIiBzdHlsZT0iZW5hYmxlLWJhY2tncm91bmQ6bmV3IDAgMCA2MCA2MDsiIHhtbDpzcGFjZT0icHJlc2VydmUiPgo8c3R5bGUgdHlwZT0idGV4dC9jc3MiPgoJLnN0MHtmaWxsOiNGQUE2MUE7fQo8L3N0eWxlPgo8cGF0aCBjbGFzcz0ic3QwIiBkPSJNMTEuNywxMi41bC0wLjgtNWgtM2MtMC40LTEuNy0yLTMtMy45LTNjLTIuMiwwLTQsMS44LTQsNHMxLjgsNCw0LDRjMS45LDAsMy40LTEuMywzLjktM2gxLjNsMC41LDNsMCwwCglsMC4yLDEuMmwwLDBsMCwwTDEyLjQsMjdsMSw1LjVsMCwwbDEuMyw3Yy0yLjUsMC4yLTQuNSwyLjEtNC44LDQuNWMtMC4xLDEuNCwwLjMsMi44LDEuMywzLjljMC45LDEsMi4zLDEuNywzLjcsMS43aDIKCWMwLDMuMywyLjcsNiw2LDZzNi0yLjcsNi02aDExYzAsMy4zLDIuNyw2LDYsNnM2LTIuNyw2LTZoNGMwLjYsMCwxLTAuNCwxLTFzLTAuNC0xLTEtMWgtNC4zYy0wLjgtMi4zLTMtNC01LjctNHMtNC44LDEuNy01LjcsNAoJSDI4LjZjLTAuOC0yLjMtMy00LTUuNi00cy00LjgsMS43LTUuNiw0SDE1Yy0wLjgsMC0xLjctMC40LTIuMi0xQzEyLjIsNDYsMTIsNDUuMSwxMiw0NC4zYzAuMi0xLjUsMS41LTIuNywzLjItMi43SDE2CgljMCwwLDAsMCwwLjEsMGg2LjFIMzNsMCwwaDcuMUg1MWwwLDBoNGMyLjgsMCw1LTIuMiw1LTV2LTI0TDExLjcsMTIuNXogTTQsMTAuNWMtMS4xLDAtMi0wLjktMi0yczAuOS0yLDItMnMyLDAuOSwyLDIKCVM1LjEsMTAuNSw0LDEwLjV6IE00Niw0NS41YzIuMiwwLDQsMS44LDQsNHMtMS44LDQtNCw0cy00LTEuOC00LTRTNDMuOCw0NS41LDQ2LDQ1LjV6IE0yMyw0NS41YzIuMiwwLDQsMS44LDQsNHMtMS44LDQtNCw0CglzLTQtMS44LTQtNFMyMC44LDQ1LjUsMjMsNDUuNXogTTU4LDIxLjVoLTd2LTdoN1YyMS41eiBNNDIsMzkuNXYtN2g3djdINDJ6IE00MiwzMC41di03aDd2N0g0MnogTTI0LDM5LjV2LTdoN3Y3SDI0eiBNMjQsMzAuNXYtN2g3Cgl2N0gyNHogTTEzLjgsMjMuNUgyMnY3aC02LjlMMTMuOCwyMy41eiBNNDksMjEuNWgtN3YtN2g3VjIxLjV6IE00MCwyMS41aC03di03aDdWMjEuNXogTTMxLDE0LjV2N2gtN3YtN0gzMXogTTMzLDIzLjVoN3Y3aC03VjIzLjV6CgkgTTUxLDIzLjVoN3Y3aC03VjIzLjV6IE0yMiwxNC41djdoLTguNmwtMS4zLTdIMjJ6IE0xNS41LDMyLjVIMjJ2N2gtNS4yTDE1LjUsMzIuNXogTTMzLDMyLjVoN3Y3aC03VjMyLjV6IE01NSwzOS41aC00di03aDd2NAoJQzU4LDM4LjIsNTYuNywzOS41LDU1LDM5LjV6Ii8+Cjwvc3ZnPgo=') no-repeat center center; */
  background: transparent url(../images/icon/cart-white.svg) no-repeat center center;
  cursor: pointer;
  position: relative;
  right: 15px;
}
.my_account_link path.st0 {
    fill: #0f67b1;
    fill: #FFF;
}

@media (max-width:768px){
  #fixed-slider{
    height: 250px;
  }
  #btn-cart{
    height: 32px;
    margin-top: 4px;
  }
}

.reserve-delivery-dialog .modal-dialog {
    width: 1000px !important;
}

.reserve-delivery-dialog p {
    text-align: center;
    margin-bottom: 15px;
}
.reserve-delivery-dialog p.register {
  text-align: right;
  margin-top: 10px;
  font-size: 12px;
  margin-bottom: 0;
  font-style: italic;
}
.reserve-delivery-dialog p a.signup-popup {
  color: #0f67b1;
}

.reserve-delivery-dialog .date {
    color: #3e9e08;
}

.reserve-delivery-dialog .grid-15 {
    float: left;
    /* width: 14%; */
    padding: 0;
    margin-left: 2px;
    text-align: center;
    font-size: 12px;
}

.reserve-delivery-dialog .grid-15.selected {
    color: #3e9e08;
}

.reserve-delivery-dialog .day-title {
    font-size: 20px;
}

.reserve-delivery-dialog .highlight {
    padding: 10px 5px;
    display: inline-block;
    margin: 5px 0;
}

.reserve-delivery-dialog .highlight.disable {
    background: #f2f2f2;
    color: #bbbbbb;
    cursor: none;
    border: 1px solid #FFFFFF;
}

.reserve-delivery-dialog .highlight.enable {
    background: #FFFFFF;
    color: #303030;
    cursor: pointer;
    border: 1px solid #e9e9e9;
}

.reserve-delivery-dialog .highlight.enable:hover {
    background: #0f67b1;
    color: #FFFFFF;
    cursor: pointer;
}

.reserve-delivery-dialog .highlight.reserved,
.reserve-delivery-dialog .highlight.reserved:hover {
    background: #0f67b1;
    color: #FFFFFF;
    cursor: pointer;
    border: 1px solid #0f67b1;
}

.reserve-delivery-dialog .modal-footer {
    /*text-align: center;*/
    padding-right: 23px;
}

/* BODY */
.container .content-container {
    border-top: none;
    box-sizing: border-box;
    background: transparent;
    /*padding: 16px 16px 100px 16px; /* Added right padding to make the padding the same.. */*/
}

.container .content-container .content-header {
    font-size: 20px;
    /*border-bottom: 3px solid #3e9e08;*/
    padding: 0 7px 4px 0;
    color: #0f67b1;
    /*text-transform: uppercase;*/
}

.container .content-container .content-header-bottom-divider {
    margin-top: 4px;
}

.container .content-container form .text_small {
    line-height: 1.75em;
}

.container .content-container form .form-input.form-long {
    width: 35%;
}

.container .content-container form .form-input.form-middle {
    width: 30%;
}

.container .content-container form .form-input.form-short {
    width: 25%;
}

.container .content-container form .form-input .form-input-radiogroup {
    display: inline-block;
}

.container .content-container form .form-input .text-input {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.1);
    padding: 8px 14px 9px 14px;
    width: 100%;
}

.container .content-container form .form-input .checkbox-label {
    display: inline-block;
    margin-top: 1px;
}

.top-header .nav-top-links span.login .form-group .form-control.error,
.top-header .nav-top-links span.register .form-group .form-control.error,
.container .content-container form .form-input .form-control.error,
.container .content-container form .form-input .text-input.error {
    /*border-color: #fa5;*/
    box-shadow: 0 0 5px #fa5;
}

.container .content-container form .form-input .form-control:disabled,
.container .content-container form .form-input .text-input:disabled {
    background: #f6f6f6;
}

.fancybox-inner .form-input .label-field-checkbox,
.container .content-container form .form-input .label-field-checkbox {
    width: 20%;
    min-width: 150px;
}

.container .content-container form .form-input .label-field-radio {
    width: 35%;
    min-width: 225px;
}

.container .content-container form .form-input .form-input-radio {
    display: inline-block;
    margin-right: 30px;
}

.container .content-container form .form-input .form-input-radio label {
    padding-left: 10px;
}
.container .content-container form .form-submit-right .btn {
    float: right;
}

.container .content-container form .form-submit .btn-cancel:hover {
    background: #eee;
}

.container .content-container form .form-submit .btn-default:hover {
    background: #3e9e08;
}

.container .content-container form .form-submit .btn-default:disabled {
    background: rgba(134, 185, 64, 0.7);
}

/* BREADCRUMB */
.container .content-container .page-block-top {
    /*padding: 15.5px 0;*/
    width: 100%;
    /*margin-bottom: 24px;*/
}

.breadcrumb {
    margin-left: -1px;
}

.breadcrumb i.fa,
.breadcrumb span,
.breadcrumb .breadcrumb-link:after {
    color: #777777;
}

.breadcrumb .breadcrumb-link:after {
    font-family: FontAwesome;
    content: '\f105';
    padding: 0;
    margin: 0 8px 0 10px;
}
/* SIDEBAR */
.container .content-container .sidebar-box .submenu {
    /*border: 1px solid rgba(0, 0, 0, 0.1);*/
    border: none;
    margin: 0 13px 0 0;
}

.container .content-container .sidebar-box .header-menu {
    background: #abb3bb;
    color: #ffffff;
    padding: 13px 0 13px 17px;
    font-size: 1.055em;
    font-weight: bold;
}

.container .content-container .sidebar-box .expandable-menu {
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    padding: 9px 0 21px 0;
    font-size: 1em;
    background: #f6f6f6;
}

.container .content-container .sidebar-box .expandable-menu li {
    cursor: pointer;
}

.container .content-container .sidebar-box .expandable-menu li.selected,
.container .content-container .sidebar-box .expandable-menu li.selected a {
    /*color: #edbe2f;*/
    color: #3e9e08;
}

.container .content-container .sidebar-box .expandable-menu li a {
    padding: 6px 0 6px 15px;
    display: inline-block;
    width: 100%;
}

.container .content-container .sidebar-box .expandable-menu li a:before {
    font-family: FontAwesome;
    margin-right: 10px;
    content: "\f105";
}

/* HOME */
.owl-controls .owl-prev, .owl-controls .owl-next {
    color: #fff;
    background: rgba(0, 0, 0, 0.3);
}


.content-page {
    background-color: transparent;
    margin-top: 0;
    padding-bottom: 0;
}

.content-page.last .category-featured {
    border-bottom: none;
}

#home-slider .container {
    background-color: #fff;
}

.homepage-notification {
    /*margin-top: 30px;*/
    background-color: #fff;
}

.page-top {
    background-color: #fff;
    padding: 8px 0px;
}


.show-brand .navbar-brand, .show-brand .navbar-brand a {
    background-color: #fff;
    color: #666;
}

.show-brand .navbar-brand a {
    display: inline-block;
    height: 100%;
}

.category-featured {
    background-color: #fff;
}

.category-featured .nav-menu .nav > li > a {
    background: none;
}

.category-featured .nav-menu .nav > li > a:hover {
    color: #3e9e08;
}

.category-featured .navbar-brand {
    padding-left: 7px;
}

.category-featured .navbar-brand i {
    display: inline-block;
    margin-top: 8px;
    font-size: 36px;
}

.category-featured .navbar-brand svg, .category-featured .navbar-brand img {
    width: 36px;
    height: 36px;
    margin: 8px 8px 0 0;
    float: left;
}

.category-featured.dare-compare {
    padding: 20px;
    margin-top: 0;
    margin-bottom: 25px;
    /*border: 1px solid #ccc;*/
    margin-right: 15px;
    border-radius: 5px;
    -webkit-box-shadow: 0px 0px 4px 1px rgba(217,217,217,0.5);
    -moz-box-shadow: 0px 0px 4px 1px rgba(217,217,217,0.5);
    box-shadow: 0px 0px 4px 1px rgba(217,217,217,0.5);
}

.home .list-view .items{
  padding-right: 15px;
}

.category-featured .navbar-brand svg path {
    fill: #666;
}

.category-featured:not(.dare-compare) .nav-menu-red li.active a, .category-featured:not(.dare-compare) .nav-menu-red li.active a:hover, .category-featured:not(.dare-compare) .nav-menu-red li.selected a {
    border: #7FB9B4 1px solid;
    border-width: 0 1px;
    background: #fff;
    color: #666;
}
.category-featured:not(.dare-compare) .nav-menu-red li.active a:before,
.category-featured:not(.dare-compare) .nav-menu-red li.active a:hover:before,
.category-featured:not(.dare-compare) .nav-menu-red li.selected a:before {
    content: "";
    display: block;
    position: absolute;
    top: -1px;
    left: -1px;
    width: calc(100% + 2px);
    border-top: #7FB9B4 5px solid;
}
.category-featured:not(.dare-compare) .nav-menu-red li.active a:after,
.category-featured:not(.dare-compare) .nav-menu-red li.active a:hover:after,
.category-featured:not(.dare-compare) .nav-menu-red li.selected a:after {
    content: "";
    display: block;
    position: absolute;
    bottom: -1px;
    left: -1px;
    width: calc(100% + 2px);
    border-top: #eee 1px solid;
}

.category-featured .nav-menu-red {
    height: 51px;
}

.category-featured:not(.dare-compare) .nav-menu-red {
    background-color: #7FB9B4;
}

.category-featured .nav-menu-red .collapse {
    height: 50px !important;
    width: calc(100% - 2px);
    display: block !important;
}

.category-featured .product-featured .product-list li.see-all a.see-all-products {
    display: inline-block;
    background-color: #0f67b1;
    width: 100%;
    text-align: center;
    color: #FFF;
    font-size: 18px;
    margin: 0 15px;
    position: relative;
}

.category-featured .product-featured .product-list li.see-all a.see-all-products span {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.dare-compare .nav-menu-red .collapse {
    /*width: calc(100% - 20px);*/
    width: 100%;
    position: relative;
    height: auto !important;
    text-align: center;
}
.dare-link_wrapper{
  font-size: 36px;
  background: #fff;
  display: inline-block;
  text-align: center;
  padding: 0px 25px;
  color:#0f67b1;
  margin: 0 auto;
  z-index: 2;
  line-height: 30px;
   padding-right: 5px;
}

@media (max-width:768px){
  .dare-link_wrapper{
    font-size:20px;
  }
  .recipe-page .recipe-content .recipe-list-panel {
    width: 25%;
  }
}

.dare-link_wrapper a{
  color:#333;
  font-weight: 300;
}

.nav-menu .toggle-menu {
    position: relative;
    right: 15px;
    display: none;
    border: #f00 1px solid;
    margin-top: -10px;
}

.nav-menu .collapse {
    z-index: 1 !important;
}

.dare-compare .product-featured .product-featured-content .product-featured-list {
    margin-left: 0;
    overflow: visible;
}

.dare-compare a.view-more, .latest-deals a.view-more {
    position: absolute;
    right: 0;
    top: 0;
    margin-top: -40px;
}
.popular-tabs a.view-more {
    margin-top: -63px;
    margin-right: 8px;
}

.category-featured:not(.dare-compare) .product-featured {
    margin-top: 0;
}

.category-featured .product-featured .tab-container .tab-panel,
.category-featured:not(.dare-compare) .product-featured .tab-container .tab-panel.active {
    transition: all 1s;
}

.category-featured:not(.dare-compare) .product-featured .product-featured-list {
    position: relative;
    background-color: #fff;
    z-index: 100;
}

.category-featured:not(.dare-compare) .product-featured .product-featured-list .tab-panel {
    background-color: #fff;
}

.category-featured:not(.dare-compare) .product-featured .product-list {
    width: 100%;
    /*margin-top: -2px;*/
}

.category-featured .product-featured .product-list li {
    min-height: 0; /* # DON'T REMOVE. Fix for IE9 */
    min-height: initial;
}

.category-featured:not(.dare-compare) .product-featured .product-list li {
    border-right: none;
    padding-bottom: 0px;
    border-bottom: #eee 1px solid;
    /*border-right: #eee 1px solid;*/
}

.category-featured:not(.dare-compare) .product-featured .product-list li {
    height: 228px;
    overflow: hidden;
}

.category-featured:not(.dare-compare) .product-featured .product-list li.vertical-banner {
    height: 456px;
}

.category-featured:not(.dare-compare) .product-featured .product-list li:not(.vertical-banner) .banner-block {
    height: 228px;
}

.product-list li .count-down-time {
    position: absolute;
    z-index: 10;
}

.product-list li .count-down-time span {
    background-color: #333;
}

.latest-deals .count-down-time span:last-of-type {
    width: 52px;
}

.latest-deals .count-down-time span:last-of-type:before {
    content: none;
}

.product-list li .count-down-time + .left-block {
    /*margin-top: 20px;*/
    margin-top: 10px;
}

.product-list li .left-block {
    /*height: 0;*/
    /*height: 185px;*/
    /*padding: 0 0 100% 0;*/
    padding: 0;
    overflow: hidden;
}
.product-list li .left-block .image-wrapper {
  /*height: 160px;*/
  position: relative;
}
.product-list li .left-block .promo-wrapper {
  height: 25px;
}

.product-list li .left-block .product-discount-label {
    background-color: #F44336;
    color: #FFF;
    padding: 7px 12px;
    position: absolute;
    bottom: 0;
    left: 0;
    font-size: 12px;
    text-transform: uppercase;
    font-weight: 700;
    border-radius: 5px;
    line-height: 14px;
}
.product-list li .left-block .product-discount-label.blue {
    /*background-color: #0f67b1;*/
    background-color: #F44336;
}

.category-featured:not(.dare-compare) .product-featured .product-list li .left-block {
    /*height: auto;*/
    /*padding-bottom: 0;*/
    /*padding-bottom: calc(100% + 25px);*/
    margin: 0 -15px;
}

.category-featured:not(.dare-compare) .product-featured .product-list li .left-block > a {
    /*height: 218px;*/
    overflow: hidden;
}

.dare-compare .product-list li .left-block {
    margin: 0 10px;
}

.product-list li .left-block a.img {
    display: table;
    /*position: absolute;*/
    width: 100%;
    height: 100%;
    /*height: 230px;*/
    display: table;
    position: relative;
    width: 100%;
}
.product-list li .left-block a.img:after {
  content: "";
display: block;
padding-bottom: 100%;
}

.category-featured:not(.dare-compare) .product-featured .product-list li .left-block a.img {
    height: 170px;
    overflow: visible;
}

.product-list li .left-block a.img span {
    display: table-cell;
    text-align: center;
    vertical-align: middle;
    position: absolute;
    width: 100%;
    height: 100%;
}

.dare-compare .product-list li .left-block a.img span {
    /*padding: 0 15px;*/
}

.category-featured:not(.dare-compare) .product-featured .product-list li .left-block a.img span {
    padding-top: 10px;
}

.product-list li .left-block a img {
    width: auto;
    height: auto;
    max-width: 100%;
    /*width: 100%;*/
    max-height: 98%;
    /*max-height: 160px;*/
    top: 0;
    margin:auto;
    bottom: 0;
    position: absolute;
    left: 0;
    right: 0;
}

.product-list.suggested-product li .left-block a img {
    width: auto;
    height: auto;
}

.product-lightbox2 .product-list li .left-block a img {
    width: auto;
}

.product-list li .left-block a img.potrait {
    /*max-height: 185px;*/
    max-height: 100%;
    height: 100%;
    width: auto;
}

.product-list li .left-block a img.full-width-image {
  max-height: 100%;
}

.dare-compare .product-list li .left-block a img.potrait {
    width: auto;
    height: auto;
    /*max-height: 160px;*/
    transition: none;
    webkit-transform: unset;
    -moz-transform: unset;
    -o-transform: unset;
    transform: unset;
}
.dare-compare .product-list li .left-block a img.full-width-image {
  max-height: 100%;
  transition: none;
    webkit-transform: unset;
    -moz-transform: unset;
    -o-transform: unset;
    transform: unset;
}

.category-featured:not(.dare-compare) .product-featured .product-list li .left-block a.img span img {
    max-width: 180px;
    max-height: 170px;
}

.product-list li .label {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    /*height: 40px;*/
    height: calc(100% - 5px);
    margin-top: 5px;
    z-index: 1;
}

.product-list li .label *[class^=l-] {
    position: absolute;
    z-index: 2;
    width: 45px;
    height: 45px;
}

.product-list li .label .l-exclusive {
    left: 0;
    top: 0;
}

.product-list li .label .l-halal {
    left: 0;
    top: 48px;
}

.product-list li .label .l-best-seller {
    right: 0;
    top: 0;
}

.product-list li .label .l-0-percent {
    right: 0;
    bottom: 0;
}

.product-list li .label .l-4-working, .product-list li .label .l-7-working {
    left: 0;
    bottom: 0;
    width: 107px;
    height: 34px;
}

.product-list li .label img {
    /*max-width: 55px;*/
    /*max-height: 55px;*/
    width: 100%;
}

.product-list li .label .l-7-working img {
    margin-top: -37px;

}

.product-list li .label .pull-left {
    margin-right: 5px;
}

.product-list li .label .pull-right {
    margin-left: 5px;
}

.product-list li .quick-view {
    top: 15%;
    right: 0;
    overflow: visible;
    z-index: 2;
}

.category-featured .product-list li .quick-view {
    right: 5px;
}

.product-list li .quick-view a:hover {
    text-decoration: none;
}

.product-list li .quick-view .tooltip {
    margin-right: 35px;
}

.product-list li .add-to-cart {
    text-align: right;
}

.product-list li:hover .add-to-cart {
    bottom: -1px;
    height: 51px;
    background-color: rgba(62, 158, 8, 0.7);
}

.product-list li .right-block:hover .add-to-cart, .product-list li .add-to-cart:hover {
    /*background-color: rgba(106,186,47,0.7);*/
    background-color: rgba(62, 158, 8, 1);
}

.product-list li .quick-view.greyed a{
    cursor: default;
}
.product-list li .quick-view.greyed a:hover {
    background-color: #ccc;
}

.category-featured:not(.dare-compare) .product-featured .product-list li .add-to-cart {
    z-index: 2;
    width: 100%;
    visibility: hidden;
    opacity: 0;
}

.category-featured:not(.dare-compare) .product-featured .product-list li:hover .add-to-cart {
    visibility: visible;
    opacity: 1;
}

.category-featured:not(.dare-compare) .product-featured .product-list li .add-to-cart a {
    /*background-position: right 10px center;*/
    background: transparent;
    display: block;
    width: 100%;
    float: right;
    height: 50px;
    padding: 0;
}

.category-featured:not(.dare-compare) .product-featured .product-list li .add-to-cart a i {
    display: inline-block;
    margin: 12px 12px 0 0;
    font-size: 26px;
}

.product-list li .right-block {
    padding: 0;
}

.dare-compare .product-list li .right-block {
    padding: 0 10px;
}

.category-featured:not(.dare-compare) .product-featured .product-list li .right-block {
    margin-top: -45px;
    padding: 0;
}

.category-featured:not(.dare-compare) .product-featured .product-list li .right-block > *:not(.add-to-cart) {
    position: relative;
    z-index: 3;
    margin-right: 50px;
}

.product-list li .product-name {
  height: 75px;
  overflow: hidden;
  padding-bottom: 0;
  line-height: 1.1;
}
.product-list li .product-name .size{
  font-size: 12px;
}
.product-list li .product-name .gram-price{
  font-size: 12px;
}

.category-featured:not(.dare-compare) .product-featured .product-list li .product-name {
    height: auto;
    text-shadow: 1px 1px 1px #fff;
}

.category-featured:not(.dare-compare) .product-featured .product-list li:hover .product-name {
    text-shadow: none;
}

.category-featured:not(.dare-compare) .product-featured .product-list li:hover .product-name:hover a {
    /*text-decoration: underline;*/
}

.category-featured:not(.dare-compare) .product-featured .product-list li .product-name a {
    display: inline-block;
    height: 15px;
    overflow: hidden;
}

.product-list li .product-price {
    font-size: 16px;
    color: #3e9e08;
    font-weight: bold;
}

.category-featured:not(.dare-compare) .product-featured .product-list li:hover .product-price {
    color: #fff;
}

.product-list li .old-price {
    display: inline-block;
    font-size: 12px;
    margin-top: 5px;
    margin-left: 5px;
    line-height: normal;
}

.product-list li .save-desc {
    text-decoration: none;
}

.product-list li .content_desc {
    font-size: 12px;
    color: #333;
    line-height: 14px;
    overflow: hidden;
}

.product-list li .content_info, .product-lightbox2 .content_info {
    font-size: 12px;
    line-height: 15px;
    height: 15px;
    overflow: hidden;
    color: #999;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.product-lightbox2 .content_info, .product-lightbox2 #product_price_block, .product-lightbox2 #product_options, .product-lightbox2 .product-size {
    margin-bottom: 12px;
}

.product-lightbox2 .content_info span, .product-lightbox2 .product-size {
    color: #333;
}

.product-lightbox2 .btn-add-to-shopping-list.red a.display{
    color: #FFF;
    background: #ba2025;
}
.product-lightbox2 .btn-add-to-shopping-list.red a.effect{
    color: #FFF;
    background: #bc1d2299;
}

.product-list li .content_info span {
    display:inline-block;
    width: 100%;
    white-space: nowrap;
    overflow:hidden !important;
    text-overflow: ellipsis;
}
.product-list li .content_info span img{
    display: unset;
    width: unset;
    height: 10px;
    vertical-align: baseline;
}

.product-list li .content_info i.fa {
    float: right;
    margin-left: 3px;
    font-size: 14px;
    cursor: help;
}
.product-list li .content_info i.fa.fa-balance-scale {
  float: none;
  font-size: 12px;
  margin-left: 0;
}

.product-list li .content_price {
    width: 100%;
    height: 20px;
    overflow: hidden;
    height:auto;
}
.category-featured:not(.dare-compare) .product-list li .content_price .old-price {
    right: initial;
}
.product-list li .content_price .product-price {
    position: relative;
    float: left;
    background-color: #fff;
    z-index: 2;
    padding-right: 2px;
    font-weight: 700;
}
.product-list li .content_price .product-price img {
  padding-top: 5px;
}
.product-list li .content_price .product-price.red, #individual-product #product-info-content .product-price.red {
    color:red;
}
.product-list li .content_price .old-price {
    position: absolute;
    right: 15px;
    white-space: nowrap;
}
.category-featured .product-list li .content_price .product-price,
.sidebar-list.product-list li .content_price .product-price {
    background-color: transparent;
}

.category-featured:not(.dare-compare) .product-featured .product-list li:hover .right-block {
    /*margin-right: 50px;*/
}

.category-featured:not(.dare-compare) .product-featured .product-list li:hover .product-name a,
.category-featured:not(.dare-compare) .product-featured .product-list li:hover .old-price {
    color: #fff;
}

.category-featured .product-featured .product-list li .banner-block {
    margin: 0 -15px;
    overflow: hidden;
}

.product-list li:hover img {
    transition: none;
    transform: none;
    -webkit-transform: none;
    -moz-transform: none;
    -o-transform: none;
}

/* .category-featured .product-list li:hover img {
    transition: all 0.5s;
    transform: scale(1, 1);
    -webkit-transform: scale(1, 1);
    -moz-transform: scale(1, 1);
    -o-transform: scale(1, 1);
}

.category-featured .product-list li:hover img.zoom {
    transition: all 0.5s;
    transform: scale(1.2, 1.2);
    -webkit-transform: scale(1.2, 1.2);
    -moz-transform: scale(1.2, 1.2);
    -o-transform: scale(1.2, 1.2);
} */

.category-featured .product-featured .product-list li .banner-block img.zoom {
    transition: all 1s;
    transform: scale(1, 1);
    -webkit-transform: scale(1, 1);
    -moz-transform: scale(1, 1);
    -o-transform: scale(1, 1);
}

.category-featured .product-featured .product-list li:hover .banner-block img.zoom {
    transition: all 1s;
    transform: scale(1.075, 1.075);
    transform-origin: center;
    -webkit-transform: scale(1.075, 1.075);
    -webkit-transform-origin: center;
    -moz-transform: scale(1.075, 1.075);
    -moz-transform-origin: center;
    -o-transform: scale(1.075, 1.075);
    -o-transform-origin: center;
}

.category-featured .product-featured .product-list li:hover .grey:before {
    content: " ";
    display: block;
    background-color: rgba(51, 51, 51, 0.5);
    position: absolute;
    z-index: 10;
    width: 100%;
    height: 100%;
}

.dare-compare:not(.popular-tabs) {
    background-color: #fff;
    /*padding: 10px 0;*/
}

.dare-compare .navbar {
    min-height: auto;
}

.dare-compare .nav-menu-red {
    /*background-color: #eee;*/
    background-color: #fff;
    height: 38px;
}

.dare-compare .nav-menu-red > .container {
    width: calc(1170px - 22px) !important;
    margin: 0 0 0 0;
}

.dare-compare .nav-menu-red .collapse {
    height: 37px !important;
}

.dare-compare .nav-menu-red .collapse:after {
    content: "";
    display: block;
    width: 100%;
    position: absolute;
    top: 40%;
    z-index:-1;
    border-top: transparent 1px solid;
}

.dare-compare a.view-more{
  margin-top: 0px;
  font-size: 14px;
  color: #0f67b1;
  position: relative;
  left: -7px;
  background-color: #fff;
  padding: 0px 10px;
  top: 30%;
}

.dare-compare .nav-menu-red li a {
    font-weight: bold;
    padding: 7px 25px 7px 0;
    color: #888;
    border-bottom: #eee 3px solid;
    margin-right: 10px;
    text-align: left;
}

.dare-compare .nav-menu-red li.active a, .category-featured .nav-menu-red li.selected a {
    border: none;
    border-bottom: #7FB9B4 3px solid;
    color: #333;
}

.dare-compare .product-featured .product-featured-content .product-featured-list {
    margin-left: 0;
}

.dare-compare .product-featured .product-list li {
  border: 1px solid transparent;
  border:0px;
  padding-bottom: 0;
}

.dare-compare .product-featured .product-featured-content .product-featured-list .product-list .owl-item{
  padding:5px;
}

.dare-compare .product-featured .product-list li .banner-block {
    margin: 0 0;
}

.dare-compare .product-featured .product-list li .grey + .content {
    position: relative;
    z-index: 20;
    height: 60px;
    background-color: #eee;
}

.product-list .category-name {
    color: #000;
    text-transform: uppercase;
    /*height: 15px;*/
    overflow: hidden;
    font-weight: 500;
}

.product-list .product-unit {
    height: 36px;
}

.product-list .product-sku {
    color: #aaa;
    margin-bottom: 5px;
}

.product-list .add-cart, .recipedetail-page .add-cart {
    margin: 10px 0;
    width: 100%;
    height: 36px;
}

.product-list .btn.add-cart i.giant2.icon-cart {
    display: inline-block;
    padding-top: 3px;
}

.product-list .add-cart img, #individual-product .add-cart img {
    display: inline-block;
    width: 20px;
    margin-top: 0px;
    margin-right: 3px;
}

.product-list .content {
    padding: 10px;
    color: #333;
}

.product-list .content li {
    list-style: none;
}

.product-list .content li i {
    margin-right: 10px;
}

.banner-img a:before, .banner-img2 a:before, .banner-img a:after, .banner-img2 a:after {
    top: 5px;
    left: 5px;
    bottom: 5px;
    right: 5px;
}

.banner-img, .banner-img img {
    width: 234px;
    height: 456px;
}

/* FOOTER */
#footer {
    margin-top: 50px;
    background-color: #eee;
    font-size: 12px;
}

#footer div[class^=col] {
    /* padding-right: 0; */
}

.introduce-list {
    list-style: none;
    padding-left: 0;
}
.scroll_top {
    z-index: 800;
    -webkit-box-shadow: 0px 0px 12px -1px rgba(0,0,0,0.75);
    -moz-box-shadow: 0px 0px 12px -1px rgba(0,0,0,0.75);
    box-shadow: 0px 0px 12px -1px rgba(0,0,0,0.75);
    border-radius: 5px;
}

.scroll_top:hover {
    background-color: rgba(62, 158, 8, 0.7);
}

.bootbox.modal.form-shoppinglist .modal-content {
    border-radius: 5px;
}

.bootbox.modal.form-shoppinglist .btn-favourite {
    color: #ccc;
    font-size: 29px;
    line-height: 1.2;
}

.bootbox.modal.form-shoppinglist .btn-update-favourite {
    margin: 0 auto;
    display: inherit;
}

.bootbox.modal.form-shoppinglist .container-checkbox-shopping-list.selected .btn-favourite {
    color: #bb2024;
}

#shopping-list-dialog.table td {
    padding: 8px;
    word-break: break-all;
    font-weight: 500;
    vertical-align: middle;
    font-size: 18px;
}

#shopping-list-dialog.table td h2 {
    margin: 0;
}

/* FANCYBOX FIX */
#fancybox-loading {
    background-image: none;
}

#fancybox-loading div {
    width: 100px;
    height: 100px;
}

.fancybox-inner .content-header {
    font-size: 20px;
    /*text-transform: uppercase;*/
    /*font-weight: bold;*/
    /*border-bottom: 3px solid #3e9e08;*/
    /*padding: 7px 9px 16px 0;*/
    color: #0f67b1;
    display: inline-block;
}

.fancybox-inner .content-header-bottom-divider,
.container .content-container .content-header-bottom-divider {
    border-top: 1px solid #0f67b1;
    margin-bottom: 25px;
}

/*.fancybox-inner .content-header-bottom-divider {
    border-top: 1px solid #0f67b1;
}*/

.fancybox-inner .content-header-bottom-divider {
    margin-top: 0px;
}

.container .content-container form .text_small {
    line-height: 1.75em;
}

.fancybox-inner .form .form-input .form-label label.required span.required,
.fancybox-inner .form .form-input .form-label label.required ~ span.required,
.container .content-container form .form-input .form-label label.required span.required,
.container .content-container form .form-input .form-label label.required ~ span.required {
    color: #ab1718;
}

.fancybox-inner .form .form-input .text-input,
.container .content-container form .form-input .text-input {
    background: #ffffff;
    outline: 0;
    border: 1px solid rgba(0, 0, 0, 0.1);
    padding: 8px 14px 9px 14px;
    width: 100%;
}

.fancybox-inner .form .form-input .radiobutton-input,
.container .content-container form .form-input .radiobutton-input,
.fancybox-inner .form .form-input input[type="radio"],
.container .content-container form .form-input input[type="radio"],
.fancybox-inner .form .form-input input[type="radio"] ~ label,
.container .content-container form .form-input input[type="radio"] ~ label,
.fancybox-inner .form .form-input .checkbox-input,
.container .content-container form .form-input .checkbox-input,
.fancybox-inner .form .form-input input[type="checkbox"],
.container .content-container form .form-input input[type="checkbox"] {
    cursor: pointer;
}

.fancybox-inner .form .form-input .text-input:focus,
.container .content-container form .form-input .text-input:focus, .form-control:focus {
    /*border-color: #3b99fc;*/
    border-color: rgba(0, 0, 0, 0.1);
    border-color: #ccc;
    box-shadow: 0 0 5px #7FB9B4;
    box-shadow: none !important;
}

.fancybox-inner .form .form-input .form-control.error,
.fancybox-inner .form .form-input .text-input.error,
.container .content-container form .form-input .form-control.error,
.container .content-container form .form-input .text-input.error {
    /*border-color: #fa5;*/
    box-shadow: 0 0 5px #f85f02 !important;
}

.container .content-container form .form-input.birthdate .custom-selectbox {
    display: inline-block;
    width: 30.25%;
}

.fancybox-inner .form .form-input.birthdate .form-control,
.container .content-container form .form-input.birthdate .form-control,
.fancybox-inner .form .form-input.birthdate .text-input,
.container .content-container form .form-input.birthdate .text-input {
    padding: 8px 8px 9px 8px;
}

.container .content-container form .form-input .form-control:disabled,
.container .content-container form .form-input .text-input:disabled {
    background: #f6f6f6;
}

.fancybox-inner .form .form-input .form-control:disabled,
.fancybox-inner .form .form-input .text-input:disabled {
    background: #f6f6f6;
}

.fancybox-inner .form .form-input .form-label,
.container .content-container form .form-input .form-label,
.checkout-customer-address .form-label {
    padding: 15px 0 8px 0;
}

.fancybox-inner .form .form-input .form-label input[type=radio] + label,
.container .content-container form .form-input .form-label input[type=radio] + label {
    text-transform: capitalize;
}

.fancybox-inner .form .form-input .help-block,
.container .content-container form .form-input .help-block {
    margin: 0;
    margin-top: 5px;
    color: #ff0000;
}

.container .content-container form .form-submit .btn-cancel {
    margin: 11px 0 15px 0;
    font-size: 15px;
    color: #ffffff;
    font-weight: bold;
    background: #abb3bb;
    padding: 7px 14px 8px 14px;
}

.container .content-container form .btn-cancel:hover {
    background: #eee;
}

/* Alert Dialog Box using fancybox */
.dialog-alert .btn-close-fancybox {
    float: right;
    width: 25px;
    height: 25px;
    padding: 0;
}

.dialog-alert .button-container {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
}

/* Confirm Dialog Box using fancybox */
.dialog-confirm .btn-close-fancybox {
    float: right;
    width: 25px;
    height: 25px;
    padding: 0;
}

.dialog-confirm .button-container {
    position: absolute;
    bottom: 0;
    right: 0;
}

.dialog-confirm .button-container button {
    width: 100px;
    margin: 0 5px;
}

/* Block UI Spinner */
.blockMsg {
    padding: 0;
    margin: 0;
    width: auto;
    top: 50%;
    left: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);

    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);

    textAlign: 'center';
    color: #000;
    border: none;
}

.blockMsg .sk-cube-grid {
    width: 40px;
    height: 40px;
}

.blockMsg .sk-cube-grid .sk-cube {
    width: 33%;
    height: 33%;
    background-color: #000;
    float: left;
    -webkit-animation: sk-cubeGridScaleDelay 1.3s infinite ease-in-out;
    animation: sk-cubeGridScaleDelay 1.3s infinite ease-in-out;
}

.blockMsg .sk-cube-grid .sk-cube1 {
    -webkit-animation-delay: 0.2s;
    animation-delay: 0.2s;
}

.blockMsg .sk-cube-grid .sk-cube2 {
    -webkit-animation-delay: 0.3s;
    animation-delay: 0.3s;
}

.blockMsg .sk-cube-grid .sk-cube3 {
    -webkit-animation-delay: 0.4s;
    animation-delay: 0.4s;
}

.blockMsg .sk-cube-grid .sk-cube4 {
    -webkit-animation-delay: 0.1s;
    animation-delay: 0.1s;
}

.blockMsg .sk-cube-grid .sk-cube5 {
    -webkit-animation-delay: 0.2s;
    animation-delay: 0.2s;
}

.blockMsg .sk-cube-grid .sk-cube6 {
    -webkit-animation-delay: 0.3s;
    animation-delay: 0.3s;
}

.blockMsg .sk-cube-grid .sk-cube7 {
    -webkit-animation-delay: 0s;
    animation-delay: 0s;
}

.blockMsg .sk-cube-grid .sk-cube8 {
    -webkit-animation-delay: 0.1s;
    animation-delay: 0.1s;
}

.blockMsg .sk-cube-grid .sk-cube9 {
    -webkit-animation-delay: 0.2s;
    animation-delay: 0.2s;
}

@-webkit-keyframes sk-cubeGridScaleDelay {
    0%, 70%, 100% {
        -webkit-transform: scale3D(1, 1, 1);
        transform: scale3D(1, 1, 1);
    }
    35% {
        -webkit-transform: scale3D(0, 0, 1);
        transform: scale3D(0, 0, 1);
    }
}

@keyframes sk-cubeGridScaleDelay {
    0%, 70%, 100% {
        -webkit-transform: scale3D(1, 1, 1);
        transform: scale3D(1, 1, 1);
    }
    35% {
        -webkit-transform: scale3D(0, 0, 1);
        transform: scale3D(0, 0, 1);
    }
}

#checkout-loginregister .container .content-container .content-header-bottom-divider {
    border-top: 1px solid #666;
    margin-bottom: 25px;
}
/* Search Bar */
.select2-container--default .select2-selection--single .select2-selection__arrow {
    right: 0;
}

/* Search Box */
.search-suggestion {
    width: 100%;
}

.search-suggestion #multiple-search {
    background: #fff;
    padding: 5px;
    width: 100%;
    margin-top: 2px;
    font-size: 13px;
    -webkit-box-shadow: 1px 3px 5px 0 rgba(0, 0, 0, .37);
    -moz-box-shadow: 1px 3px 5px 0 rgba(0, 0, 0, .37);
    box-shadow: 1px 3px 5px 0 rgba(0, 0, 0, .37);
    text-align: center;
    z-index: 99;
}

#searchform-suggestion {
    display: block;
    background: #fff;
    position: absolute;
    z-index: 1001;
    width: calc(100% + 2px);
    margin-top: 2px;
    /*-webkit-box-shadow: 1px 3px 5px 0 rgba(0, 0, 0, .37);
    -moz-box-shadow: 1px 3px 5px 0 rgba(0, 0, 0, .37);
    box-shadow: 1px 3px 5px 0 rgba(0, 0, 0, .37);*/
    padding: 5px;
    /* max-height: 460px; */
    overflow: auto;
    border: 1px solid #ddd;
    border-bottom: none;
    border-top: none;
    left: -1px;
    min-width: 350px;
}

#searchform-suggestion-see-all .searchresults-seeall {
    position: absolute;
    /* top: 400px; */
    right: 0;
    left: -1px;
    width: calc(100% + 2px);
    background: #FFF;
    text-align: center;
    padding: 8px 10px 5px 0;
    font-weight: bold;
    border: 1px solid #0f67b1;
    /* border-bottom: none; */
    /*border-top: none;*/
    background-color: #FFF;
    min-width: 350px;
}

#searchform-suggestion-see-all .searchresults-seeall li a {
    color: #0f67b1;
    text-transform: uppercase;
    font-weight: normal;
    letter-spacing: 0.3em;
    font-size: 13px;
}

#searchform-suggestion-see-all .searchresults-seeall:hover {
    background-color: #0f67b1;
}

#searchform-suggestion-see-all .searchresults-seeall:hover li a {
    color: #FFF;
}

.search-loader {
    background: url('../images/ajax_loader_large.gif') 0 0 no-repeat;
    width: 20px;
    height: 20px;
    display: inline-block;
    background-size: 100%;
    position: absolute;
    top: 5px;
    right: 5px;
    display: none;
}

.list-suggestion span.highlight {
    font-weight: bold;
}

.list-suggestion em {
    font-weight: bold;
    font-style: normal;
}

.multiplesearch-box {
    top: 54px;
    position: absolute;
    z-index: 1001;
    width: calc(100% - 15px);
}

.multiplesearch-box textarea#txtkeyword {
    width: 100%;
    border: 1px solid #ccc;
    border-top: none;
    padding: 10px;
}

#close-multiplesearch-box {
    position: absolute;
    top: 0;
    right: 5px;
    color: #666;
    cursor: pointer;
}

#close-multiplesearch-box:hover {
    color: red;
}

.fancybox-container{
  font-family: inherit;
}

/* EFFECTS */
.banner-opacity a:before, .banner-opacity a:hover:before {
    background-color: transparent;
}


.hvr-underline-reveal {
    display: inline-block;
    vertical-align: middle;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    box-shadow: 0 0 1px rgba(0, 0, 0, 0);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -moz-osx-font-smoothing: grayscale;
    position: relative;
    overflow: hidden;
}

.hvr-underline-reveal:before {
    content: "";
    position: absolute;
    z-index: -1;
    left: 0;
    right: 0;
    bottom: 0;
    background: #2098d1;
    height: 4px;
    -webkit-transform: translateY(4px);
    transform: translateY(4px);
    -webkit-transition-property: transform;
    transition-property: transform;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
}

.hvr-underline-reveal:hover:before, .hvr-underline-reveal:focus:before, .hvr-underline-reveal:active:before {
    -webkit-transform: translateY(0);
    transform: translateY(0);
}

.hvr-underline-from-center {
    display: inline-block;
    vertical-align: middle;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    box-shadow: 0 0 1px rgba(0, 0, 0, 0);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -moz-osx-font-smoothing: grayscale;
    position: relative;
    overflow: hidden;
}


.hvr-underline-from-center:hover:before, .hvr-underline-from-center:focus:before, .hvr-underline-from-center:active:before,
.btn:hover .hvr-underline-from-center:before, .btn:focus .hvr-underline-from-center:before, .btn:active .hvr-underline-from-center:before {
    left: 0;
    right: 0;
}

.btn-primary .display-static:before {
    background-color: #3e9e08;
}

.btn-primary .hvr-underline-reveal:before, .btn-primary .hvr-underline-from-center:before {
    /*background-color: #87C758;*/
    /*background-color: #7FB9B4;*/
    background-color: #2e8e00;
}

.btn-primary .display-static.hvr-underline-reveal:hover {
    /*background-color: #3e9e08;*/
}

.scroll-left {
    overflow: hidden;
}

.scroll-left .text {
    white-space: nowrap;
    -moz-transform: translateX(100%);
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
    /* Apply animation to this element */
    -moz-animation: scroll-left 15s linear infinite;
    -webkit-animation: scroll-left 15s linear infinite;
    animation: scroll-left 15s linear infinite;
}

.scroll-left:hover .text {
    -webkit-animation-play-state: paused;
    -moz-animation-play-state: paused;
    -o-animation-play-state: paused;
    animation-play-state: paused;
}

@-moz-keyframes scroll-left {
    0% {
        -moz-transform: translateX(100%);
    }
    100% {
        -moz-transform: translateX(-100%);
    }
}

@-webkit-keyframes scroll-left {
    0% {
        -webkit-transform: translateX(100%);
    }
    100% {
        -webkit-transform: translateX(-100%);
    }
}

@keyframes scroll-left {
    0% {
        -moz-transform: translateX(100%); /* Browser bug fix */
        -webkit-transform: translateX(100%); /* Browser bug fix */
        transform: translateX(100%);
    }
    100% {
        -moz-transform: translateX(-100%); /* Browser bug fix */
        -webkit-transform: translateX(-100%); /* Browser bug fix */
        transform: translateX(-100%);
    }
}

/* IE Specific Hacks */
@media all and (-ms-high-contrast: none) {

}

.input-group-addon {
    border-color: rgba(0, 0, 0, 0.1);
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
}

/* ERROR PAGE */
.error_content {
    margin-top: 20px;
    text-align: center;
    margin-bottom: 72px;
}

.error_content .text {
    color: #555;
    font-size: 14px;
    width: 50%;
    margin: 20px auto 0;
	padding-bottom: 40px;
}

@media (max-width: 992px) {
  /* .error_content .text {
    font-size: 16px;
    width: 95%;
    line-height: 22px;
    margin-top: 0;
  } */
  .error_content img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .error_content .image_404_wrapper {
    /* height: 275px;
    margin-left: -24.3px;
    margin-right: -24.3px; */
	height: auto;
  }
}

/* FORMS */
form label {
    font-weight: normal;
    cursor: pointer;
}

form .errorMessage {
    color: red;
    margin-top: 5px;
}

.form-input label {
    font-weight: normal;
}

.form-input label.error {
    font-size: inherit;
}

.form-group.form-input {
    max-width: 300px;
    margin-bottom: 0;
}

.form-group.form-input label {
    margin: 0 0 8px 0;
}

.notice.notice-required,
label.required > span.required {
    color: #e65100 !important;
}

/* STICKY SIDEBAR */
#sidebar-sticky {
    position: fixed;
    right: 0;
    top: 375px;
    z-index: 805;
    opacity: 1;
}

#sidebar-sticky.closed {
    right: -150px;
    opacity: 0;
    visibility: hidden;
    transition: 0.5s all;
}

#sidebar-sticky .wrapper {
    position: relative;
    width: 150px;
    height: 120px;
}

#sidebar-sticky img {
    width: 100%;
}

#sidebar-sticky .close {
    position: absolute;
    top: -20px;
    right: 5px;
    width: 24px;
    height: 24px;
    background: url('../images/sticky_sidebar_icon_close.png') 100% no-repeat;
    opacity: 1;
}

/* STANDARD COLUMN 1 PAGE */
.layout-column1 .container .content-container .page-block-top {
    padding: 0;
}

/* STATIC PAGE */
.static_page {
  overflow-y:unset;
}

.static_page h2 .page-heading-title,
.static_page h1 .page-heading-title {
    /*border-bottom: 3px solid #3e9e08;
    font-size: 20px;
    padding: 0 7px 0 0;
    text-transform: uppercase;*/
}

.static_page h2,
.static_page h1{
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    display: block;
    margin-bottom: 20px;
    padding-bottom: 0;
    line-height: 26px;
}

.static_page .static_page_content {
    margin-top: 20px;
}

.static_page p {
    margin-bottom: 10px;
    text-align: justify;
}

.static_page ol {
    list-style: decimal;
}

.static_page ul {
    list-style: disc;
}

.static_page ol:not(.tc-list),
.static_page ul:not(.tc-list) {
    margin: 0;
    padding: 0 0 0 75px;
}

.static_page ol,
.static_page ul {
    margin: 0;
    padding: 0 0 0 15px;
}
.static_page .widget_article_wrapper{
  padding-left: 15px;
  padding-right: 15px;
}
.static_page .list-view .pager{
  margin-bottom:10px;
}
.static_page .owl-carousel li{
  list-style-type: none !important;
}
.static_page .weekly-deals ul{
  padding-left:0px !important;
}
.static_page .carousel-item,.bst-carousel .carousel-item{
  display:block !important;
}
.static_page .bst-carousel .carousel-indicators{
  width:100% !important;
  left:0px !important;
  margin-left:0px !important;
  padding-right:75px;
}

/* pNotify */
.ui-pnotify-title {
    margin-bottom: 0;
}

.ui-pnotify-text {
    line-height: 1.3;
    /*padding-left: 25px;*/
    font-size: 13px;
    font-weight: normal;
}

.ui-pnotify-text a {
    font-weight: bold;
}

.ui-pnotify.terms-condition .ui-pnotify-icon, .ui-pnotify.terms-condition .ui-pnotify-closer, .ui-pnotify.terms-condition .ui-pnotify-sticker {
    padding: 0;
}

.ui-pnotify.terms-condition .ui-pnotify-title {
    line-height: 1.2;
}

.stack-bar-top .ui-pnotify-container {
    background-color: #f2be81;
    background-image: none;
}

.ui-state-error a, .ui-state-default a, .ui-state-default a:link {
    text-decoration: underline !important;
    /*font-family: gothic, Helvetica, sans-serif;*/
}

.ui-tabs .ui-tabs-panel {
    border: 1px solid #ddd;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    border-radius: 5px;
    background: #fbf9f7;
}

.ui-widget-content {
    border: 0;
}

.ui-widget-header {
    border: 0;
    background: 0;
}

.ui-state-highlight, .ui-widget-content .ui-state-highlight, .ui-widget-header .ui-state-highlight {
    border: 1px solid #fcefa1;
    background: #fbf9ee !important;
    color: #363636;
}

.rating-star-sm {
    font-size: 16px;
    color: #0f67b1;
    margin-top: 8px;
}

.rating-star-md {
    font-size: 23px;
    color: #0f67b1;
}

body.fancybox-active{
   overscroll-behavior-y: contain;
}
#navbar{
  background-color: #0f67b1 !important;
  -webkit-box-shadow: 0px 2px 22px 0px rgba(0,0,0,0.51);
  -moz-box-shadow: 0px 2px 22px 0px rgba(0,0,0,0.51);
  box-shadow: 0px 2px 22px 0px rgba(0,0,0,0.51);
}
#content-container {
  max-width: 1380px;
  margin: 0 auto;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-box;
  display: -webkit-flex;
  display: box;
  display: flex;
  -webkit-box-orient: vertical;
  -moz-box-orient: vertical;
  -o-box-orient: vertical;
  -ms-box-orient: vertical;
  -webkit-flex-direction: column;
  flex-direction: column;
  overflow: hidden;
}
#nav-container {
  margin: auto;
  position:relative;
  text-align: left;
  max-width: 1380px;
}
.header-top-right .homeslider {
  width: 100%;
}
.right-column{
  padding: 0px 0px 0px 0px;
  margin-left:8px;
  margin-top:20px;
  -webkit-box-flex: 1;
  -moz-box-flex: 1;
  -o-box-flex: 1;
  -ms-box-flex: 1;
  box-flex: 1;
  -webkit-flex: 0 0 230px;
  flex: 0 0 230px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.right-column-fixed{
  padding: 0px 0px 10px 0px;
  background: #64528e;
  position:fixed;
  width:230px;
  z-index: 3;
}
@media (max-width: 1199px){
  .right-column{
      display:none;
  }
}
.contain-center{
  display: -webkit-box;
  display: -moz-box;
  display: -ms-box;
  display: -webkit-flex;
  display: box;
  display: flex;
  -webkit-box-pack: justify;
  -moz-box-pack: justify;
  -o-box-pack: justify;
  -ms-box-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  margin-top: 57px;
  opacity: 1;
  -ms-filter: none;
  filter: none;
  -webkit-transition: opacity .3s ease;
  -moz-transition: opacity .3s ease;
  -o-transition: opacity .3s ease;
  -ms-transition: opacity .3s ease;
  transition: opacity .3s ease;
}
.nav-category .dropdown .layer-inside{
  margin-left: 3px;
  width: 100%;
  height: 100%;
  padding: 10px;
  background: #f2f2f2;
}
.category>a{
  position: static;
  margin-top: 0px;
  margin-bottom: 2px;
}
.nav-category .category{
  position: static;
  margin-top: 4px;
  /*margin-bottom: 4px;*/
}
#shop-leftmenu.nav-stacked>li+li {
  margin: 0;
}
.nav-category .category .layer{
  display: none;
  position: absolute;
  left: 100%;
  z-index: 999;
  padding: 0;
  -webkit-overflow-scrolling: touch;
  top: 0;
  background: #FFF;
  -webkit-border-radius: 3px;
  border-radius: 3px;
  overflow: hidden;
  bottom: 0;
  -webkit-box-shadow: 0px 0px 4px 1px rgba(217,217,217,0.5);
  -moz-box-shadow: 0px 0px 4px 1px rgba(217,217,217,0.5);
  box-shadow: 0px 0px 4px 1px rgba(217,217,217,0.5);
}
.nav-category .category .layer .layer-wrapper {
  height: calc(100% - 50px);
  padding: 10px 10px 10px 20px;
}
.nav-category .category:hover .layer-free-delivery,.category>a:hover .layer-free-delivery{
  display:block;
}
.nav-category .category .layer-free-delivery{
  display: none;
  left: 100%;
  color: white;
  z-index: 999;
  padding: 10px 10px 10px 20px;
  -webkit-overflow-scrolling: touch;
  text-align: center;
  background: #0f67b1;
  -webkit-border-radius: 3px;
  border-radius: 3px;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  overflow: hidden;
  bottom: -35px;
  height: 50px;
  text-align: center;
}
.nav-category .category .layer-free-delivery .text{
  margin-top: 2px;
  display: inline-block;
  text-transform: uppercase;
  position: relative;
  padding-left: 32px;
  text-align: left;
}
.nav-category .category .layer-free-delivery .text img{
  position: absolute;
  left: -10px;
  top: -4px;
}
.nav-category .category .layer-free-delivery .text p.top{
  font-weight: bold;
  letter-spacing: 4.5px;
}
.nav-category .category .layer-free-delivery .text p.bottom{
  margin-top: -5px;
}
.nav-category .category .layer-free-delivery .text p.oneline{
    margin-top: 5px;
}

.nav-category>li .layer{
  display:block;
  transition:.3s all ease-in;
  padding: 10px;
}

.nav-category>li .layer .layer-title{
  font-size: 24px;
  font-weight: 300;
  margin-bottom: 15px;
  color: #333;
}
.nav-category>li .layer .layer-content li>a{
  font-size:14px;
  font-weight: normal;
  color: #000;
}
.nav-category>li .layer .layer-content li>a:hover{
  color: #0f67b1;
}
.nav-category>li .layer .layer-content li{
  margin-bottom: 5px;
}

.nav-category>li .layer .layer-content .category-image{
  width: 150px;
  position: absolute;
  box-sizing: border-box;
  bottom: 0;
  right: 0;
}
.right-banner{
  height: auto;
  margin-left: -15px;
}
.popup_overlay {
  background: rgba(255, 255, 255, 0.7);
  width: 100%;
  height: 100%;
  z-index: 1000;
  top: 0;
  right: 0;
  left: 0;
  position: fixed;
  color: #fff;
  text-align: center;
  display: none;
  opacity: 0.8;
}
/* SIDEBAR */
#save_overlay {
    background: rgba(0, 0, 0, 0.7);
    width: 100%;
    height: 100%;
    z-index: 1000;
    top: 0;
    left: 0;
    position: fixed;
    color: #fff;
    text-align: center;
    display: none;
}
#login_register_drawer{
  padding-left: 35px;
  margin: 10px 0px 10px 0px;
}

/*TABLE MINI CART*/
#mini-cart-list tbody tr{
  vertical-align: middle;
  display: block;
}
#mini-cart-list tbody tr:not(.no-border) td {
    border-top: #eee 1px solid;
}
#mini-cart-list tbody tr td {
  padding: 7px 0px;
}

#mini-cart-list .desc{
  text-align: left;
  font-size: 14px;
  width: 230px;
}
#mini-cart-list .desc .title{
  max-height: 35px;
  overflow: hidden;
}
#mini-cart-list .desc .original-price, #mini-cart-list .desc .promo-price{
  height: 17px;
  margin-right: 2px;
  line-height: 17px;
  display: block;
  color: #869603;
  font-weight: 600;
}
#mini-cart-list .desc .item-price img{
  margin-top: 3px;
}
#mini-cart-list .desc .size, #mini-cart-list .desc .weight{
  max-height: 17px;
  font-size: 12px;
  display: block;
  margin-bottom: 2px;
}
#mini-cart-list .desc .weight img{
  height: 10px;
  vertical-align: baseline;
}
#mini-cart-list .remove_link{
  cursor: pointer;
  background: black;
  display: inline-block;
  opacity: 0.1;
  width: 16px;
  height: 16px;
  padding: 1px;
}
#mini-cart-list .remove_link:hover{
  background: red;
  opacity: 1;
}
#mini-cart-list .img{
  padding: 10px;
  position: relative;
  height: 70px;
  width: 70px;
}
#mini-cart-list .img img{
  max-height: 80%;
  max-width: 80%;
  width: auto;
  height: auto;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
}
#mini-cart-list .qty{
  width: 70px;
  text-align: center;
}
#mini-cart-list .qty button{
  border: 1px solid #efefef;
    padding: 0px 5px;
    cursor: pointer;
}
#mini-cart-list .qty .btn-mini-cart-input-quantity{
  margin: 5px auto;
  color: #000;
  width: 60px;
  display: block;
  text-align: center;
}
#mini-cart-list .price{
  width: 80px;
  text-align: right;
  color: #000;
  font-weight: bold;
}
#mini-cart-list .p-savings{
  background-color: #0f67b1;
  color: #FFF;
  padding: 2px 5px;
  border-radius: 5px;
  font-size: 10px;
  display: inline-block;
}
#mini-cart-list .original-price{
  color: #3e9e08;
}
#mini-cart-list .original-price.price-off{
  text-decoration: line-through;
  color: #666;
}
#mini-cart-list .promo-price.price-off-qty {
  color: #FFF;
  background-color: #F44336;
  border-radius: 5px;
  padding: 2px 7px;
  margin-top: -2px;
  margin-left: 1px;
  height: 20px;
  float: right;
  font-weight: 700;
  font-size: 11px;
}
#mini-cart-list .promo-price.price-off{
  color: red;
}
#mini-cart-list .mm-image-wrapper {
    text-align: center;
    margin-left: 5px;
}
#mini-cart-list .mm-product .original-price.price-off{
  text-align: center;
}
#mini-cart-list .mm-image-wrapper img {
    max-width: 60px;
    max-height: 60px;
}
#mini-cart-list tbody tr td.mm-product {
  text-align: left;
  width: 310px;
}
#mini-cart-list .price .edit {
    font-size: 11px;
    border: 1px solid #ccc;
    padding: 0px 10px;
    border-radius: 5px;
    font-weight: 400;
}
#mini-cart-list .promo-price.price-off-qty.mm-product a {
    color: #FFF;
}
.cart-block .cart-block-content .sticky-wrapper {
  padding-left: 200px;
  padding-top: 16px;
}

.burger-menu{
    display:none;
}
.search-box{
    display:none;
    position: absolute;
    right: 55px;
}
.reserve-delivery-box{
    display:none;
    position: absolute;
    right: 50px;
}
.floating-form#reserve-delivery-popup.open {
  padding: 5px 10px;
  height: auto;
}
#reserve-delivery-popup .text-reserve {
  color: #3e9e08;
}
#reserve-delivery-popup {
  padding: 5px 13px;
height: auto;
}
.floating-form#reserve-delivery-popup .btn .display {
    background: #3e9e08;
    padding: 10px 14px;
    color: #fff;
}
#reserve-delivery-popup .input-group-addon * {
    border: none;
}
#reserve-delivery-popup .input-group-addon .fa-angle-right {
    color: #0ab04e;
}
#reserve-delivery-popup .input-group-addon{
  padding:0;
}
#check-delivery-postal{
  padding: 19.5px 10px;
}
.input-group-addon.btn-close-delivery {
  background: #FFF;
  width: 43px;
}

#reserve-delivery-popup .input-group-addon .btn-go{
  color: #000;
  background: #FFF;
  font-size: 25px;
  padding: 2px 14px 1px 14px;
  padding-top: 0;
}

#btn-filter .mega_dropdown{
  min-width: 400px;
}

.row.category-banner-wrapper {
    margin-right: 2px;
}
.row.category-banner-wrapper .homepage-category-banner:nth-child(n) {
    padding-right: 12.5px;
}
.row.category-banner-wrapper .homepage-category-banner:nth-child(2n) {
    padding-left: 12.5px;
}
.row.category-banner-wrapper .homepage-category-banner {
    margin-bottom: 25px;
}
.row.category-banner-wrapper .homepage-category-banner img {
    border-radius: 5px;
    webkit-box-shadow: 0px 0px 4px 1px rgba(217,217,217,0.5);
    -moz-box-shadow: 0px 0px 4px 1px rgba(217,217,217,0.5);
    box-shadow: 0px 0px 4px 1px rgba(217,217,217,0.5);
}

.reserve-delivery-dialog-mobile .modal-body {
    padding: 0;
}
.reserve-delivery-dialog-mobile  .bootbox-body {
    overflow: auto;
}
.bootbox.reserve-delivery-dialog-mobile  .bootbox-body {
    margin-top: 10px;
}
.reserve-delivery-dialog-mobile p {
    text-align: center;
    margin-bottom: 15px;
}
.reserve-delivery-dialog-mobile .date {
    color: #3e9e08;
}
.reserve-delivery-dialog-mobile .timeslot-nav.left {
    left: 0;
}
.reserve-delivery-dialog-mobile .timeslot-nav.right {
    right: 0;
}
.reserve-delivery-dialog .timeslot-nav {
    background-color: #3e9e08;
    color: #fff;
    padding: 6px 12px;
    position: absolute;
    top: 50%;
    margin-top: -17px;
    width: 34px;
    height: 34px;
    z-index: 999;
}
.reserve-delivery-dialog-mobile .timeslot-nav {
    background-color: #3e9e08;
    color: #fff;
    padding: 6px 12px;
    position: absolute;
    top: 50%;
    margin-top: -17px;
    width: 34px;
    height: 34px;
    z-index: 999;
}
.reserve-delivery-dialog-mobile .timeslot-wrapper {
    margin-top: 10px;
    margin-left: 40px;
    margin-right: 40px;
    overflow: auto;
}
.reserve-delivery-dialog-mobile .grid-15 {
    float: left;
    width: 134px;
    padding: 0;
    margin-left: 2px;
    text-align: center;
    font-size: 12px;
}
.reserve-delivery-dialog-mobile .highlight.disable {
    background: #f2f2f2;
    color: #bbb;
    cursor: none;
    border: 1px solid #fff;
}
.reserve-delivery-dialog-mobile .highlight {
    width: 100%;
    padding: 10px 5px;
    display: inline-block;
    background: #FFFFFF;
    color: #303030;
    cursor: pointer;
    border: 1px solid #e9e9e9;
    margin: 5px 0;
}
.reserve-delivery-dialog-mobile .highlight.reserved, .reserve-delivery-dialog .highlight.reserved:hover {
  background: #0f67b1;
  color: #FFFFFF;
  cursor: pointer;
  border: 1px solid #0f67b1;
}
.reserve-delivery-dialog-mobile .highlight.enable:hover {
    background: #0f67b1;
    color: #FFFFFF;
    cursor: pointer;
}
.reserve-delivery-dialog-mobile .modal-footer {
    text-align: center;
}
.bootbox.reserve-delivery-dialog-mobile .modal-footer {
    border-top: none;
    padding-top: 0;
}
.bootbox.reserve-delivery-dialog-mobile .btn-primary {
    padding: 0!important;
}
.bootbox.reserve-delivery-dialog-mobile .btn-warning {
    padding: 0!important;
}

/**
 * BRANDS PROMOTIONS
 */
.brands_promotions .page-title {
    font-size: 30px;
    color: #333333;
    margin-bottom: 15px;
}

.brands_promotions .brands-promotions-list span.empty {
    margin-left: 0px;
}

.brands_promotions .promotion-image {
    /*border: 1px solid #ddd;*/
    /*height: 249px;
    position: relative;*/
    margin-bottom: 15px;
}

.brands_promotions .promotion-image img {
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 100%;
    transform: translateZ(0);
    /*position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);*/
}

.brands_promotions .promotion-image, .brands_promotions .promotion-info {
    text-align: center;
}

.brands_promotions .promotion-info hr {
    border-color: #0f67b1;
    border-width: 2px;
    margin-top: 5px;
    margin-bottom: 10px;
}

.brands_promotions .promotion-info .promotion-title, .brands_promotions .promotion-info .promotion-url a {
    color: #333333;
}

.brands_promotions .promotion-info .promotion-description {
    max-height: 100px;
    overflow: hidden;
}

.brands_promotions .promotion-info .promotion-url a {
    border: 1px solid #0f67b1;
    padding: 4px 36px;
}

.brands_promotions #brand_promotions_footer {
    background-color: #E2EFDA;
    height: 75px;
    margin-bottom: 15px;
    text-align: center;
    padding: 10px 5px 0 5px;
    cursor: pointer;
}

.brands_promotions #brand_promotions_footer p {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 22px;
    color: #000;
}

.brands_promotions #brand_promotions_footer img.bucket{
    width: 80px;
    position: absolute;
    bottom: 0;
    right: 50px;
    transform: translateZ(0);
}

/**
 * ARTICLES
 */
#container_article {
    /*padding-top: 10px;*/
}

#container_article #article-content p {
    margin: 0 0 10px;
}

#container_article #print_article {
    cursor: pointer;
}

#container_article .breadcrumb {
    padding: 0 !important;
}

#container_article .content-container .content-header {
    border-bottom: 3px solid #0f67b1;
}

#container_article .page-title {
    font-size: 30px;
    color: #fcc300;
    margin-bottom: 15px;
}

#container_article .articles-list .article-title h2 {
    background: #595959 none repeat scroll 0 0;
    color: #FFF;
    text-align: center;
    font-size: 19px;
}

#container_article .articles-list .article-image {
    background: #fff none repeat scroll 0 0;
    display: table;
    height: 225px;
    position: relative;
    table-layout: fixed;
    width: 100%;
}

#container_article .articles-list .article-image .article-image-content {
    display: table-cell;
    height: 225px;
    overflow: hidden;
    position: relative;
    text-align: center;
    vertical-align: middle;
    width: 100%;
}

#container_article .articles-list .article-image .article-image-content img {
    /*bottom: -100%;
    height: 100%;
    left: -100%;
    position: absolute;
    right: -100%;
    top: -100%;*/
    margin: auto;
    width: auto;
}

#container_article .articles-list .article-summary {
    height: 80px;
    overflow: hidden;
    margin-bottom: 10px;
}

#container_article .articles-list .article-read-more {
    margin-bottom: 15px;
}

.label-share {
    margin-bottom: 5px;
}

.label-share span {
    /*border-bottom: 3px solid #3e9e08;*/
}

.icon-share {
    font-size: 18px !important;
    margin-right: 22px;
}

#container_article .icon-share {
    margin-right: 12px;
}

/**
 * NEWSPAPER ADS
 */
.weekly-deals .frame {
    border: 1px solid #f3f3f3;
    height: 420px;
    margin-bottom: 15px;
    /*margin-top: 12px;*/
    padding-top: 68px;
    /*width: 30%;*/
    /*margin-right: 20px;*/
    overflow: hidden;
    text-align: center;
    padding-bottom: 10px;
}

.weekly-deals .frame .img-title {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    background: #0f67b1;
    opacity: 1;
    height: 58px;
}

.weekly-deals .frame .img-title p {
    font-weight: normal;
    font-size: 1em;
    margin: 0.25rem;
    color: #fff;
}
.weekly-deals .frame .img-title p strong{
    font-family:"NotoSans-Bold";
}

.weekly-deals .frame a img {
    width: auto;
    max-height: 100%;
    height: auto;
}

.weeklydeals-image-panel {
    background: none repeat scroll 0 0 #fff;
    display: table;
    height: 359px;
    table-layout: fixed;
    width: 100%;
}

.weeklydeals-image-panel-inner {
    display: table-cell;
    height: 359px;
    overflow: hidden;
    text-align: center;
    vertical-align: middle;
    width: 100%;
}

.weekly-deals .btn-wrapper {
    margin-bottom:20px;
}

.weekly-deals .btn {
    background-color: #ED7D31;
    border-radius: 8px;
    color: #fff;
    font-weight: regular;
    font-size: 14px;
    height: 40px;
    width: 280px;
}
.open-product-detail .right-block .btn.add-cart .input-group .input-group-btn {
  padding: 0 0;
}

/**
 * STORE LOCATION
 */
 .store-location {
	padding-bottom: 200px;
}

.store-location #store_search_result {
    border: 1px solid #ddd;
    padding: 5px;
    max-height: 400px;
    overflow-y: scroll;
}

.store-location a.green {
    color: #0f67b1;
}

/**
 * PRODUCT POP UP
 */
/*.product-lightbox .fancybox-inner .row {
    width: 100%;
}*/

.product-lightbox2 .fancybox-close-small:focus:after {
    outline: none;
}

.product-lightbox .fancybox-skin {
    padding: 30px 15px !important;
    background-color: #FFF;
}

.product-lightbox2 .fancybox-inner hr {
    margin-top: 10px;
    margin-bottom: 10px;
}

.product-lightbox2 .fancybox-inner #selected_image_lightbox {
    text-align: center;
    margin-bottom: 0px;
    /* height: 390px; */
    display: grid;
    padding-left: 0;
    text-align: center;
    /* max-width: 390px; */
	max-width: none;
	width: 100%;
    padding-right: 0;
    position: relative;
}

.product-lightbox2 .fancybox-inner #selected_image_lightbox img {
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 100%;
    vertical-align: middle;
    margin: auto;
    overflow:hidden;
}
.product-lightbox2 .fancybox-inner #selected_image_lightbox img.grayscale,
.product-lightbox2 .fancybox-inner #selected_image_lightbox_xs img.grayscale {
  -webkit-filter: grayscale(100%); /* Safari 6.0 - 9.0 */
  filter: grayscale(100%);
}

.zoomContainer.grayscale{
  -webkit-filter: grayscale(100%); /* Safari 6.0 - 9.0 */
  filter: grayscale(100%);
}

@supports (-ms-ime-align: auto) {
  .product-lightbox2 .fancybox-inner #selected_image_lightbox img {
      max-height: 390px;
  }
}

.product-lightbox2 #cart-block img {
    width: 20px;
}

.product-lightbox2 #product_full_description .product-description-title {
    margin-top: 20px;
    margin-bottom: 15px;
    font-weight: 600;
}

.product-lightbox2 #product_full_description ul, .product-lightbox2 #description_block ul, .product-lightbox2 .rating-review-container ul {
    list-style-type: disc;
    padding-left: 30px;
}

.product-lightbox2 #product_full_description ol, .product-lightbox2 #description_block ol, .product-lightbox2 .rating-review-container ol {
    list-style-type: decimal;
    padding-left: 30px;
}

.product-lightbox2 #product_image_gallery .bx-wrapper, .product-lightbox2 #selected_image_lightbox_xs .bx-wrapper {
    background: transparent;
    box-shadow: none;
    border: none;
}

.product-lightbox2 #product_image_gallery .bx-wrapper .bx-viewport, .product-lightbox2 #selected_image_lightbox_xs .bx-wrapper .bx-viewport {
    box-shadow: none;
    left: 0;
	background: transparent;
	border-color: transparent;
}

.product-lightbox2 #product_image_gallery .bx-wrapper img {
    width: auto;
    height: auto;
    max-height: 75px;
    text-align: center;
    margin: auto;
    border-radius: 5px;
    max-width: calc(100% - 4px);
}

.product-lightbox2 #product_image_gallery .bx-wrapper img.grayscale {
    -webkit-filter: grayscale(100%); /* Safari 6.0 - 9.0 */
    filter: grayscale(100%);
}

.product-lightbox2 #product_image_gallery .bx-wrapper .bx-controls-direction .bx-prev {
    background: url(../images/up_arrow.png) no-repeat;
    top: -2px;
    left: 50%;
    transform: translateX(-50%);
    width: 37px;
}

.product-lightbox2 #product_image_gallery .bx-wrapper .bx-controls-direction .bx-next {
    background: url(../images/down_arrow.png) no-repeat;
    bottom: -20px;
    top: unset;
    left: 50%;
    transform: translateX(-50%);
    width: 37px;
}

.product-lightbox2 .main-images-slider li {
    height: 300px;
    display: grid;
}

.product-lightbox2 .main-images-slider li img {
    width: auto;
    height: auto;
    max-height: 300px;
    margin: auto;
}

.product-lightbox2 .main-images-slider li img.grayscale {
  -webkit-filter: grayscale(100%); /* Safari 6.0 - 9.0 */
  filter: grayscale(100%);
}

.product-lightbox2 #selected_image_lightbox_xs .bx-wrapper .bx-pager {
    padding-top: 10px;
}

.cart-info .ccpromo-notify{
  background-color: #FFF;
  color: #000;
  margin: 0 -20px;
  padding: 15px 20px;
  font-size: 12px;
  text-align: left;
}
.cart-info .ccpromo-notify .left{
  float: left;
  width: 50px;
  margin-right: 10px;
  text-align: left;float: left;
  width: 50px;
  margin-right: 10px;
  text-align: left;
}
.cart-info .ccpromo-notify .right{
  float: right;
  width: calc(100% - 60px);
  text-align: left;
}
.checkout-info{
    margin: 20px 5px;
}
.pnotify-info{
  padding: 0 !important;
  margin: 0px !important;
}
.pnotify-white-background{
  background-color: #FFF !important;
}
.pnotify-card .ui-state-highlight{
  background: #FFF !important;
  border: none;
}

.search-reserve{
  right: 85px;
}
#submit-filter.selected{
  color: #FFF;
  background-color: #3F9B0A;
}

/*FREE DELIVERY*/
.free-delivery-wrapper {
  text-align: left;
  position: relative;
  display: none;
}
.free-delivery-wrapper img {
    width: 35px;
    position: absolute;
    top: -2px;
    right: 0px;
}
.free-delivery-wrapper .remaining{
  font-weight: bold;
}
.free-delivery-wrapper p{
  margin-bottom: 5px;
}
.progress-free-delivery {
    position: relative;
    height: 5px;
    margin-bottom: 20px;
    width: 91%;
    overflow: hidden;
    background-color: #f5f5f5;
    border-radius: 4px;
    -webkit-box-shadow: inset 0 1px 2px rgba(0,0,0,.1);
    box-shadow: inset 0 1px 2px rgba(0,0,0,.1);
}
.progress-free-delivery .progress-bar {
    background-color: #1868af;
}


/*RESPONSIVE*/

@media (max-width: 1430px) {
    #reserve-delivery-slot .display.reserved {
      padding-top: 5px;
      width: 100%;
    }
    
}
@media (max-width: 1430px) and (min-width: 1200px) {
  #search-page .product-list li .left-block .product-discount-label {
    font-size: 13px;
  }
}
@media (max-width: 1410px) and (min-width: 1361px){
  #content-container {
      width: 1335px!important;
  }
  #content-container .left-column {
      -webkit-box-flex: 1;
      -moz-box-flex: 1;
      -o-box-flex: 1;
      -ms-box-flex: 1;
      box-flex: 1;
      -webkit-flex: 0 0 180px!important;
      flex: 0 0 180px!important;
  }
  #content-container .left-column-fixed {
    width:180px;
  }
  #content-container .right-column {
      -webkit-box-flex: 1;
      -moz-box-flex: 1;
      -o-box-flex: 1;
      -ms-box-flex: 1;
      box-flex: 1;
      -webkit-flex: 0 0 212px!important;
      flex: 0 0 212px!important;
  }
  #content-container .right-column-fixed{
      width:212px;
  }

  .brands_promotions .promotion-image {
    /*height: 204px;*/
  }
}

@media (max-width: 1360px){
  #content-container {
      width: 1130px!important;
  }
  #content-container .right-column-fixed {
    display:none;
  }
  #content-container .left-column {
      -webkit-box-flex: 1;
      -moz-box-flex: 1;
      -o-box-flex: 1;
      -ms-box-flex: 1;
      box-flex: 1;
      -webkit-flex: 0 0 180px!important;
      flex: 0 0 180px!important;
  }
  #content-container .left-column-fixed {
    width:180px;
  }
}
@media (max-width: 1431px){
  #reserve-delivery-slot{
    position: absolute;
    right: 0px;
    width: 97%;
    top: 50%;
    transform: translateY(-50%);
  }
}
@media (max-width: 1220px) and (min-width:1175px){
  .center-column{
    min-width:875px;
    width:auto !important;
  }
}

@media (min-width:1175px) {
    #container_article, .brands_promotions {
        padding-left: 0px;
    }
    #container_article.recipe-page{
        padding-left:0px;
    }
    #notification-form{
      min-width: 450px;
    }
}

@media (max-width: 1220px){
  .container {
      width: auto;
      padding-left:15px;
      padding-right:15px;
  }
}
@media screen and (max-width:1175px) and (-ms-high-contrast: active), (-ms-high-contrast: none){
    span.notify-right {
      right: auto;
    }
}
@media (max-width:1175px){
  .my_account_link svg {
    margin-left: 15px;
  }


  #cart-info-block {
    display:none;
  }
  .dare-compare .product-list li .left-block {
    margin: 0 5px;
  }
  .dare-compare .product-list li .right-block {
    padding: 0 5px;
  }
  .center-column .row .right-banner{
    width: 100%;
    height: auto;
    margin: 10px 0px;
    padding: 0;
  }
  .bx-wrapper .bx-controls-direction a {
    width: 46px;
    height: 46px;
  }
  #footer{
    margin-top: 0px
  }
  .main-banner{
    width:100%;
  }

}
@media (max-width: 970px){
  .center-column{
    min-width:auto;
  }

}
@media (max-height: 768px){
  .left-menu .nav>li>a {
    padding-bottom: 4px;
    padding-top: 4px;
  }
}
@media (max-width: 990px){
  .cart-link .notify {
      right: 10%;
      top: 0;
  }
}


@media (min-width: 768px) {
    .product-lightbox {
        top: 30px !important;
        margin-bottom: 30px;
    }

    .product-lightbox, .product-lightbox .fancybox-inner  {
        width: 760px !important;
        max-width: 100%;
        /*min-height: 768px;*/
        min-height: 400px;
        max-height: 5000px;
        height: auto !important;
    }

    .product-lightbox2 #individual-product {
        width: 1080px !important;
        max-width: 100%;
        min-height: 400px;
        max-height: 600px;
        height: auto !important;
        padding: 30px 15px 15px 15px;
        border-radius: 5px;
    }

    .product-lightbox2 .md-no-right-padding {
        padding-right: 0;
    }
}
@media (min-width: 1366px){
  .ais-search-box {
    max-width: 100%;
  }
}
@media (min-width:1536px){
  .product-lightbox2 #individual-product {
      width: 1080px !important;
  }
}

@media (max-width: 640px){
  .cart-link .notify {
    right: 50%;
  }
  #fixed-slider{
    height: 200px;
  }
  #logo_desktop{
    display:none;
  }
  #logo_mobile{
    display:block;
  }
  .container .content-container form .form-input.form-long {
    width: 80%;
  }
  #loadingAddCart, .popup_overlay img{
    width: 100px;
  }
  body > .container {
    margin-top: 5px;
}
  #burger_menu{
    height: 50px;
  }
  .catalog-banner{
    margin-left: -15px;
    margin-right: -15px;
    width: calc(100% + 30px);
    margin-top: -5px;
  }
  #header {
    /* background-color: #0f67b1; */
    border-bottom: 1px solid #c1c1c1;
    /*-webkit-box-shadow: 0px 2px 22px 0px rgba(0,0,0,0.51);
    -moz-box-shadow: 0px 2px 22px 0px rgba(0,0,0,0.51);
    box-shadow: 0px 2px 22px 0px rgba(0,0,0,0.51);*/
  }
  .search-box{
    display:block;
    top: 50%;
    transform: translateY(-50%);
  }
  .reserve-delivery-box{
    display:block;
    top: 50%;
    transform: translateY(-50%);
  }
  .logo-box{
    width: 65%;
  }
  .logo-box #logo_mobile .header-logo img {
    height: auto;
    max-height: 40px;
    margin: 5px 0px 5px 15px;
  }
  #btn-cart {
    height: 24px;
    margin-top: 8px;
    background: transparent  url('data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4KPCEtLSBHZW5lcmF0b3I6IEFkb2JlIElsbHVzdHJhdG9yIDE5LjIuMCwgU1ZHIEV4cG9ydCBQbHVnLUluIC4gU1ZHIFZlcnNpb246IDYuMDAgQnVpbGQgMCkgIC0tPgo8c3ZnIHZlcnNpb249IjEuMSIgaWQ9IkNhcGFfMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayIgeD0iMHB4IiB5PSIwcHgiCgkgdmlld0JveD0iMCAwIDYwIDYwIiBzdHlsZT0iZW5hYmxlLWJhY2tncm91bmQ6bmV3IDAgMCA2MCA2MDsiIHhtbDpzcGFjZT0icHJlc2VydmUiPgo8c3R5bGUgdHlwZT0idGV4dC9jc3MiPgoJLnN0MHtmaWxsOiNGRUZFRkU7fQo8L3N0eWxlPgo8cGF0aCBjbGFzcz0ic3QwIiBkPSJNMTEuNywxMi41bC0wLjgtNWgtM2MtMC40LTEuNy0yLTMtMy45LTNjLTIuMiwwLTQsMS44LTQsNHMxLjgsNCw0LDRjMS45LDAsMy40LTEuMywzLjktM2gxLjNsMC41LDNsMCwwCglsMC4yLDEuMmwwLDBsMCwwTDEyLjQsMjdsMSw1LjVsMCwwbDEuMyw3Yy0yLjUsMC4yLTQuNSwyLjEtNC44LDQuNWMtMC4xLDEuNCwwLjMsMi44LDEuMywzLjljMC45LDEsMi4zLDEuNywzLjcsMS43aDIKCWMwLDMuMywyLjcsNiw2LDZzNi0yLjcsNi02aDExYzAsMy4zLDIuNyw2LDYsNnM2LTIuNyw2LTZoNGMwLjYsMCwxLTAuNCwxLTFzLTAuNC0xLTEtMWgtNC4zYy0wLjgtMi4zLTMtNC01LjctNHMtNC44LDEuNy01LjcsNAoJSDI4LjZjLTAuOC0yLjMtMy00LTUuNi00cy00LjgsMS43LTUuNiw0SDE1Yy0wLjgsMC0xLjctMC40LTIuMi0xQzEyLjIsNDYsMTIsNDUuMSwxMiw0NC4zYzAuMi0xLjUsMS41LTIuNywzLjItMi43SDE2CgljMCwwLDAsMCwwLjEsMGg2LjFIMzNsMCwwaDcuMUg1MWwwLDBoNGMyLjgsMCw1LTIuMiw1LTV2LTI0TDExLjcsMTIuNXogTTQsMTAuNWMtMS4xLDAtMi0wLjktMi0yczAuOS0yLDItMnMyLDAuOSwyLDIKCVM1LjEsMTAuNSw0LDEwLjV6IE00Niw0NS41YzIuMiwwLDQsMS44LDQsNHMtMS44LDQtNCw0cy00LTEuOC00LTRTNDMuOCw0NS41LDQ2LDQ1LjV6IE0yMyw0NS41YzIuMiwwLDQsMS44LDQsNHMtMS44LDQtNCw0CglzLTQtMS44LTQtNFMyMC44LDQ1LjUsMjMsNDUuNXogTTU4LDIxLjVoLTd2LTdoN1YyMS41eiBNNDIsMzkuNXYtN2g3djdINDJ6IE00MiwzMC41di03aDd2N0g0MnogTTI0LDM5LjV2LTdoN3Y3SDI0eiBNMjQsMzAuNXYtN2g3Cgl2N0gyNHogTTEzLjgsMjMuNUgyMnY3aC02LjlMMTMuOCwyMy41eiBNNDksMjEuNWgtN3YtN2g3VjIxLjV6IE00MCwyMS41aC03di03aDdWMjEuNXogTTMxLDE0LjV2N2gtN3YtN0gzMXogTTMzLDIzLjVoN3Y3aC03VjIzLjV6CgkgTTUxLDIzLjVoN3Y3aC03VjIzLjV6IE0yMiwxNC41djdoLTguNmwtMS4zLTdIMjJ6IE0xNS41LDMyLjVIMjJ2N2gtNS4yTDE1LjUsMzIuNXogTTMzLDMyLjVoN3Y3aC03VjMyLjV6IE01NSwzOS41aC00di03aDd2NAoJQzU4LDM4LjIsNTYuNywzOS41LDU1LDM5LjV6Ii8+Cjwvc3ZnPgo=') no-repeat center center;
  }
}
@media (max-width: 468px){
  #fixed-slider{
    height: 150px;
  }
  .center-column .row .first-right-banner{
    margin-bottom: 10px;
  }
 
  .dare-link_wrapper {
    font-size: 15px;
    padding: 0 10px;
  }
  .dare-compare a.view-more {
    margin-top: 0;
    position: absolute;
    right: 0;
    top: 15%;
    float: right;
    left: unset;
  }
}

@media (max-width:320px){
  #fixed-slider{
    height: 100px;
  }
  #btn-filter .mega_dropdown{
    min-width: 250px;
    font-size: 10px;
  }
  #btn-clear-filter{
    display:block;
  }
  #submit-filter{
    margin-left: -5px;
  }

  .brands_promotions .promotion-image {
    /*height: 154px;*/
  }
}

@media (max-width:540px){
  #mini-cart-list .promo-price.price-off-qty {
    display: inline-block;
    margin-left: 0;
    height: auto;
    line-height: 12px;
    padding-top: 3px;
    padding-bottom: 3px;
  }
  .cart-block {
    width: 400px;
  }
  .cart-block .cart-block-content .sticky-wrapper {
    padding-left: 10px;
  }
  #mini-cart-list .promo-price.price-off {
    margin-left: 0;
  }
}

@media (max-width:480px){
  @supports (-webkit-overflow-scrolling: touch) {
    /* CSS specific to iOS devices */
    body.noSroll {
      position: fixed;
      height: 100%;
      width: 100%;
    }
    body {
      overflow-x: hidden !important;
    }
  }
  .cart-block {
    width: 100%;
    right: 0;
  }
  .open-product-detail .right-block .btn.add-cart .input-group .input-group-btn {
    padding: 0 4px;
  }
  .home .list-view .items {
    padding-right: 0;
  }
  .category-featured.dare-compare {
    padding: 10px;
    margin-right: 0;
    margin-bottom: 10px;
  }
  .row.category-banner-wrapper .homepage-category-banner {
    margin-bottom: 10px;
  }
  .row.category-banner-wrapper .homepage-category-banner:nth-child(n) {
      padding-right: 0;
  }
  .row.category-banner-wrapper .homepage-category-banner:nth-child(2n) {
      padding-left: 15px;
   }
  .dare-link_wrapper {
    padding: 0px 25px;
  }
  #btn-filter .mega_dropdown{
    min-width: 330px;
  }

  .floating-form #searchform-suggestion {
    position: fixed;
    left: 10px;
    top: 51px;
    width: calc(100% - 20px);
  }

  .category-featured .product-featured .product-list .owl-carousel .owl-prev, .owl-carousel .owl-next {
    opacity: 1;
    visibility: visible;
  }

  .recipe-page .recipe-content .recipe-list-panel {
    width: 50%;
  }

  .recipedetail-page .col-narrow {
    width: 45%;
  }

  .recipe-row-grid .recipe-item .recipe-image {
    height: 145px;
  }

  .brands_promotions .promotion-image {
    /*height: 172px;*/
  }

  .product-lightbox .fancybox-close {
    top: 3px;
    right: 0;
  }

  .product-lightbox, .product-lightbox .fancybox-inner  {
    /*width: 325px !important;
    max-width: 100%;*/
    height: auto !important;
    top: 0 !important;
    width: 100% !important;
    left: 0 !important;
    min-height: 768px;
  }

  .product-lightbox2 #individual-product {
    width: 100%;
    height: 100%;
    padding: 30px 15px;
    margin-top: 0;
    margin-bottom: 0;
    -webkit-overflow-scrolling:touch;
    overflow:auto;
  }
  .product-lightbox2 #individual-product .individual-wrapper {
    width: 100%;
    height: 100%;
    overflow: scroll;
    -webkit-overflow-scrolling: touch;
    overflow: auto;
  }
  @supports (-webkit-overflow-scrolling: touch) {
    .product-lightbox2 #individual-product {
      overscroll-behavior: contain;
    }
  }

  .brands_promotions #brand_promotions_footer {
    height: auto;
  }

  .brands_promotions #brand_promotions_footer p {
    position: unset;
    top: unset;
    left: unset;
    transform: none;
    font-size: 22px;
    color: #000;
    text-align: center;
    margin-bottom: 10px;
  }

  .brands_promotions #brand_promotions_footer img.bucket {
    width: 115px;
    position: unset;
    bottom: unset;
    right: unset;
    transform: translateZ(0);
  }
}
@media screen and (-webkit-min-device-pixel-ratio:0) {
  select,
  textarea,
  input {
    font-size: 16px !important;
  }
}

/* Payment Status Page [complete,pending,failed] */
.checkout_result .header-status-pending{
    color: #7FB9B4;
}

.checkout-payment-status-btn-container{
    margin-top: 1.5em;
}

.checkout-status-header{
    font-size: 24px;
    margin-bottom: .2em;
}

@media (max-width: 1175px) {
    .no-padding-top-md {
        padding-top: 0 !important;
    }

    #container_article .articles-list .article-image .article-image-content img {
        width: 100%;
        height: auto;
        position: unset;
    }

    #container_article .articles-list .article-image .article-image-content, #container_article .articles-list .article-image {
        height: auto;
    }
}

@media (min-width: 992px) {
    .weekly-deals .frame.col-md-4 {
        width: calc(33.33333333% - 5px);
        margin-right: 5px;
    }

	.store-location {
		padding-bottom: 60px;
	}
}

@media (max-width: 991px) {
    #search-page{
      margin-left: 0;
      margin-right: 0;
    }
    #search-page #left_column .block.left-module.block_parent {
      margin: 0;
    }
    #search-page #center_column .product-list .list-view {
      /*margin-left: 15px;
      margin-right: 15px;*/
    }
    #container_article .articles-list .article-image .article-image-content img {
        width: 100%;
        height: auto;
        position: unset;
    }

    #container_article .articles-list .article-image .article-image-content, #container_article .articles-list .article-image {
        height: auto;
    }

    .product-lightbox2 .fancybox-inner .content-header::after {
        display: none;
    }
}

/**
 * FOR RECIPE PAGES
 */
.col-md-2.recipe-mod {
    /*width: 33.33333333%;*/
    width: 50%;
    float: left;
}

.col-md-3.recipe-mod {
    width: 50%;
    float: left;
}

@media (min-width: 1430px) {
    .recipe-page .category-container .frame-inner .img-content {
        height: 136px;
    }

    .recipe-page .category-container .img-content img {
        max-height: 136px;
    }

    .recipe-row-grid .recipe-item .recipe-image {
        height: 212px;
    }

    .recipe-row-grid .recipe-item .recipe-image a img {
        max-height: 212px;
    }
}

@media (min-width: 768px) {
    .col-md-2.recipe-mod {
        width: 16.66666667%;
        float: left;
    }

    .col-md-3.recipe-mod {
        width: 25%;
        float: left;
    }
}

@media (min-width: 992px) {
    .col-md-2.recipe-mod {
        width: 12.5%;
        float: left;
    }

    .col-md-3.recipe-mod {
        width: 20%;
        float: left;
    }
}

@media (max-width: 480px) {
    .cart-block .cart-block-content .cart-block-list {
      max-height: 330px;
    }
    #mini-cart-list .desc .item-price img {
      margin-top: 1px;
    }
    .view-product-list .toolbar-right {
      padding-right: 25px;
    }
    .recipe-row-grid .recipe-item .recipe-name {
        height: 70px;
    }

    .recipe-page .category-container .frame-inner .img-content {
        height: 167px;
    }

    .recipe-page .category-container .img-content img {
        max-height: 167px;
    }

    .recipe-row-grid .recipe-item .recipe-image {
        height: 155px;
    }

    .recipe-row-grid .recipe-item .recipe-image a img {
        max-height: 155px;
    }

    .recipedetail-page h1 {
        font-size: 22px;
    }
}
@media (max-width: 420px) {
  #mini-cart-list .qty {
    width: 50px;
  }
  #mini-cart-list .price {
    width: 100px;
  }
  #mini-cart-list .img {
    height: 60px;
    width: 60px;
  }
  #mini-cart-list .desc {
    font-size: 12px;
    width: 215px;
  }
  #mini-cart-list .p-savings {
    padding: 2px 4px;
  }
  #mini-cart-list .desc .title {
    max-height: 30px;
    overflow: hidden;
  }
}
@media (max-height: 660px){
  .cart-block .cart-block-content .cart-block-list {
    max-height: 200px;
  }
}
@media (max-height: 590px){
  .cart-block .cart-block-content .cart-block-list {
    max-height: 160px;
  }
}

@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
    .my_account_link svg {
        margin-left: 0;
    }

    .nav-top-links .my_account_link .my_account_items {
        top: -5px;
        right: -30px;
    }
}

@media only screen and (max-width: 1175px) {
    @media all and (-ms-high-contrast: active), (-ms-high-contrast: none) {
        .nav-top-links .my_account_link .my_account_items {
            right: -10px;
        }
    }
}

@media only screen and (max-width: 1430px) {
    @media all and (-ms-high-contrast: active), (-ms-high-contrast: none) {
        .nav-top-links .my_account_link .my_account_items {
            right: 0px;
        }
    }
}


/*SMART BANNER*/
.smartbanner-show #header{
  top:80px;
}
/*END SMART BANNER*/

/*SEARCH ARTICLE*/
.search_article_wrapper{
  margin-bottom:15px;
}
.search_article_wrapper .input-group{
  background: #fff;
  border: 1px solid #ccc;
  border-radius: 20px;
}
.search_article_wrapper input{
  font-size: 14px !important;
  height: 36px;
  border: 0px;
  box-shadow: unset;
  border-radius: 20px;
  overflow: hidden;
}
.search_article_wrapper .btn-search{
   background: transparent  url('data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4KPCEtLSBHZW5lcmF0b3I6IEFkb2JlIElsbHVzdHJhdG9yIDE5LjIuMCwgU1ZHIEV4cG9ydCBQbHVnLUluIC4gU1ZHIFZlcnNpb246IDYuMDAgQnVpbGQgMCkgIC0tPgo8c3ZnIHZlcnNpb249IjEuMSIgaWQ9IkNhcGFfMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayIgeD0iMHB4IiB5PSIwcHgiCgkgdmlld0JveD0iMCAwIDUzIDUzIiBzdHlsZT0iZW5hYmxlLWJhY2tncm91bmQ6bmV3IDAgMCA1MyA1MzsiIHhtbDpzcGFjZT0icHJlc2VydmUiPgo8c3R5bGUgdHlwZT0idGV4dC9jc3MiPgoJLnN0MHtmaWxsOiM0MjQyNDI7fQo8L3N0eWxlPgo8cGF0aCBjbGFzcz0ic3QwIiBkPSJNNTEuNyw1MS4zTDM2LjgsMzUuOEM0MC42LDMyLDQzLDI2LjgsNDMsMjFDNDMsOS40LDMzLjYsMCwyMiwwUzEsOS40LDEsMjFzOS40LDIxLDIxLDIxCgljNS4xLDAsOS43LTEuOCwxMy40LTQuOGwxNC45LDE1LjVjMC4yLDAuMiwwLjUsMC4zLDAuNywwLjNjMC4yLDAsMC41LTAuMSwwLjctMC4zQzUyLjEsNTIuMyw1Mi4xLDUxLjcsNTEuNyw1MS4zeiBNMjIsNDAKCUMxMS41LDQwLDMsMzEuNSwzLDIxUzExLjUsMiwyMiwyczE5LDguNSwxOSwxOVMzMi41LDQwLDIyLDQweiIvPgo8L3N2Zz4K') no-repeat center center;
  height: 36px;
  width: 50px;
  background-size:24px;
}
/*END SEARCH ARTICLE*/

/*NEW FONT*/
.widget_dynamic_list_block_content .whatshot_box .whatshot_content {
    position: relative;
    font-size: 15px;
    line-height: 1.4;
    padding: 10px 10px 15px 10px;
    font-family: 'NotoSans-Light';
}
.widget_dynamic_list_home_product .product_box .product_add_to_cart .btn-add-to-cart-old{
  background:transparent !important;
}
.widget_dynamic_list_product_item .btn.add-cart-old .display,.widget_dynamic_list_product_item .btn.add-cart-old .effect{
    background-color: transparent;
    color: rgb(44, 104, 64);
    text-transform: uppercase;
    font-family: 'NotoSans-Bold';
    font-weight: bold;
    font-size: 15px;
    border: 1px solid rgb(44, 104, 64);
    border-radius: 20px;
    padding: 6px 12px;
}
.widget_dynamic_list_home_product .btn.btn-add-to-cart-old:hover .effect{
  background:rgb(44, 104, 64);
  color:#fff;
}
.widget_dynamic_list_home_product .btn.add-cart-old{
  width:100%;
  margin-top:5px;
}
.widget_dynamic_list_home_product .open-product-detail:hover{
  box-shadow:none;
  border:0px !important;
}
.widget_dynamic_list_home_product .product_box .product_name{
  font-size:18px;
  margin-top:5px;
  font-weight:600;
  height: 51px;
  overflow: hidden;
}
.widget_dynamic_list_home_product .product_box .product_price{
  height:50px;
  text-transform: uppercase;
}
.widget_dynamic_list_product_left{
  padding:0px;
}

.widget_dynamic_list_home_product .product_box .product_images{
  position:relative;
  height: 155px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.widget_dynamic_list_home_product .product_box .product_images img{
  max-height:155px;
  max-width:100%;
}
.widget_dynamic_list_home_product .product_box .product_images .img_wrapper{
  text-align:center;
}

.widget_dynamic_list_block_content .whatshot_box .whatshot_images{
  display:flex;
  align-items: center;
  justify-content: center;
}
.widget_dynamic_list_product_left{
  display:flex;
}
.widget_dynamic_list_home_product .box_outer.bg-image{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}
.whatshot_box .whatshot_content .read-more img {
    height: 24px;
    margin-left: 5px;
}
.widget_dynamic_list_block_content .whatshot_box .whatshot_category{
    height: 42px;
    line-height: 1.2;
  overflow: hidden;
}
.widget_dynamic_list_block_content .whatshot_box .whatshot_content .title{
  height:42px;
  overflow: hidden;
}

.widget_dynamic_list_block_tabs .block_tabs_item{
  font-size:14px;
  color:#867E7E;
  letter-spacing: 0.9px;
}
.widget_dynamic_list_block_tabs .block_tabs_item .nav-link{
    padding: 10px 20px;
    position:relative;
}
.widget_dynamic_list_block_tabs .block_tab_content {
  font-size:14px;
  letter-spacing: 0.9px;
  color:#867E7E;
    padding: 20px 15px;
}
.widget_dynamic_list_block_tabs .block_tabs_item.active .nav-link:after{
  content:'';
  position:absolute;
  bottom:-1px;
  left:0;
  right:0;
  height:5px;
  background-color:#F7A601;
}
.widget_dynamic_list_block_tabs .navbar_block_tabs {
    border-bottom: 1px solid #979797;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    padding-left: 0;
    margin-bottom: 0;
    list-style: none;
    padding: 0px!important;
}
.widget_block_tabs_wrapper{
  padding:10px 0px;
}
/*END NEW FONT*/
