/*Cart Ribbon*/

/* Ribbon
*/



aside.ribbon {
    background-color: #43b02a;
    font-weight: bold;
    text-align: center;
    color: #fff;
    padding: 2px 4px 0 8px;
}

aside {    
    position: absolute;    
    user-select: none;
    top: 0;
    right: 0;
}

aside:before, aside:after {
    content: '';
    position: absolute;
    height: 0;
    width: 0;
    border-style: solid;
    border-width: 0;
}

aside.ribbon:before {
    border-width: 12px 0 12px 12px;
    border-color: #43b02a transparent;
    left: -12px;
    top: 0;
}

/* Social Colors
*/

.color-facebook { 
  color: #3b5998;
}

.color-twitter { 
  color: #1da1f2;
}

.color-instagram { 
  color: #cf257d;
}

.color-gplus { 
  color: #df635d;
}

.color-youtube { 
  color: #ff0000;
}



/* tooltip start*/

/**
 * Tooltip Styles
 */

/* Base styles for the element that has a tooltip */
[data-tooltip],
.tooltip {
  position: relative;
  cursor: pointer;
}

/* Base styles for the entire tooltip */
[data-tooltip]:before,
[data-tooltip]:after,
.tooltip:before,
.tooltip:after {
  position: absolute;
  visibility: hidden;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
  opacity: 0;
  -webkit-transition: 
    opacity 0.2s ease-in-out,
    visibility 0.2s ease-in-out,
    -webkit-transform 0.2s cubic-bezier(0.71, 1.7, 0.77, 1.24);
  -moz-transition:    
    opacity 0.2s ease-in-out,
    visibility 0.2s ease-in-out,
    -moz-transform 0.2s cubic-bezier(0.71, 1.7, 0.77, 1.24);
  transition:         
    opacity 0.2s ease-in-out,
    visibility 0.2s ease-in-out,
    transform 0.2s cubic-bezier(0.71, 1.7, 0.77, 1.24);
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform:    translate3d(0, 0, 0);
  transform:         translate3d(0, 0, 0);
  pointer-events: none;
}

/* Show the entire tooltip on hover and focus */
[data-tooltip]:hover:before,
[data-tooltip]:hover:after,
[data-tooltip]:focus:before,
[data-tooltip]:focus:after,
.tooltip:hover:before,
.tooltip:hover:after,
.tooltip:focus:before,
.tooltip:focus:after {
  visibility: visible;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
  opacity: 1;
}

/* Base styles for the tooltip's directional arrow */
.tooltip:before,
[data-tooltip]:before {
  z-index: 1001;
  border: 6px solid transparent;
  background: transparent;
  content: "";
}

/* Base styles for the tooltip's content area */
.tooltip:after,
[data-tooltip]:after {
  z-index: 1000;
  padding: 8px;
  width: 160px;
  background-color: #000;
  background-color: hsla(0, 0%, 20%, 0.9);
  color: #fff;
  content: attr(data-tooltip);
  font-size: 14px;
  line-height: 1.2;
}

/* Directions */

/* Top (default) */
[data-tooltip]:before,
[data-tooltip]:after,
.tooltip:before,
.tooltip:after,
.tooltip-top:before,
.tooltip-top:after {
  bottom: 100%;
  left: 50%;
}

[data-tooltip]:before,
.tooltip:before,
.tooltip-top:before {
  margin-left: -6px;
  margin-bottom: -12px;
  border-top-color: #000;
  border-top-color: hsla(0, 0%, 20%, 0.9);
}

/* Horizontally align top/bottom tooltips */
[data-tooltip]:after,
.tooltip:after,
.tooltip-top:after {
  margin-left: -80px;
}

[data-tooltip]:hover:before,
[data-tooltip]:hover:after,
[data-tooltip]:focus:before,
[data-tooltip]:focus:after,
.tooltip:hover:before,
.tooltip:hover:after,
.tooltip:focus:before,
.tooltip:focus:after,
.tooltip-top:hover:before,
.tooltip-top:hover:after,
.tooltip-top:focus:before,
.tooltip-top:focus:after {
  -webkit-transform: translateY(-12px);
  -moz-transform:    translateY(-12px);
  transform:         translateY(-12px); 
}

/* Left */
.tooltip-left:before,
.tooltip-left:after {
  right: 100%;
  bottom: 50%;
  left: auto;
}

.tooltip-left:before {
  margin-left: 0;
  margin-right: -12px;
  margin-bottom: 0;
  border-top-color: transparent;
  border-left-color: #000;
  border-left-color: hsla(0, 0%, 20%, 0.9);
}

.tooltip-left:hover:before,
.tooltip-left:hover:after,
.tooltip-left:focus:before,
.tooltip-left:focus:after {
  -webkit-transform: translateX(-12px);
  -moz-transform:    translateX(-12px);
  transform:         translateX(-12px); 
}

/* Bottom */
.tooltip-bottom:before,
.tooltip-bottom:after {
  top: 100%;
  bottom: auto;
  left: 50%;
}

.tooltip-bottom:before {
  margin-top: -12px;
  margin-bottom: 0;
  border-top-color: transparent;
  border-bottom-color: #000;
  border-bottom-color: hsla(0, 0%, 20%, 0.9);
}

.tooltip-bottom:hover:before,
.tooltip-bottom:hover:after,
.tooltip-bottom:focus:before,
.tooltip-bottom:focus:after {
  -webkit-transform: translateY(12px);
  -moz-transform:    translateY(12px);
  transform:         translateY(12px); 
}

/* Right */
.tooltip-right:before,
.tooltip-right:after {
  bottom: 50%;
  left: 100%;
}

.tooltip-right:before {
  margin-bottom: 0;
  margin-left: -12px;
  border-top-color: transparent;
  border-right-color: #000;
  border-right-color: hsla(0, 0%, 20%, 0.9);
}

.tooltip-right:hover:before,
.tooltip-right:hover:after,
.tooltip-right:focus:before,
.tooltip-right:focus:after {
  -webkit-transform: translateX(12px);
  -moz-transform:    translateX(12px);
  transform:         translateX(12px); 
}

/* Move directional arrows down a bit for left/right tooltips */
.tooltip-left:before,
.tooltip-right:before {
  top: 3px;
}

/* Vertically center tooltip content for left/right tooltips */
.tooltip-left:after,
.tooltip-right:after {
  margin-left: 0;
  margin-bottom: -16px;
}


/* tooltip end*/

.mycart-product-listing ul li.store-note{
margin-top: -1px;
border: none;
font-weight: 600;
}


ul.marshall-social-links {
  display: inline-block;
  list-style: outside none none;
  margin: 10px 0 0 10px;
  padding: 0;
}
ul.marshall-social-links li {
  display: inline-block;
}
.marshall-social-links a {
  padding: 0 6px;
  display: block;
  -webkit-transition: all 0.1s linear 0s;
  transition: all 0.1s linear 0s;
}
.marshall-social-links a:hover {
  -webkit-transform: translate3d(0px, -2px, 0px);
  transform: translate3d(0px, -2px, 0px);
  color: #cc2e0b;
}

.product-variant-btn:hover{  cursor: pointer!important; cursor: hand!important; }

.product-description:hover { cursor: pointer!important; cursor: hand!important; }

.product-variant-btn:hover{  cursor: pointer!important; cursor: hand!important; }

.product-description:hover { cursor: pointer!important; cursor: hand!important; }

@import url(//netdna.bootstrapcdn.com/font-awesome/3.2.1/css/font-awesome.css);

/****** Style Star Rating Widget *****/

.rating { 
  border: none;
  float: left;
}

.rating > input { display: none; } 
.rating > label:before { 
  margin: 5px;
  font-size: 1.25em;
  font-family: FontAwesome;
  display: inline-block;
  content: "\f005";
}

.rating > .half:before { 
  content: "\f089";
  position: absolute;
}

.rating > label { 
  color: #ddd; 
 float: right; 
}

/***** CSS Magic to Highlight Stars on Hover *****/

.rating > input:checked ~ label, /* show gold star when clicked */
.rating:not(:checked) > label:hover, /* hover current star */
.rating:not(:checked) > label:hover ~ label { color: #FFD700;  } /* hover previous stars in list */

.rating > input:checked + label:hover, /* hover current star when changing rating,.driver_rating */
.rating > input:checked ~ label:hover,
.rating > label:hover ~ input:checked ~ label, /* lighten current selection */
.rating > input:checked ~ label:hover ~ label { color: #FFED85;  } 

/* driver rating */

.driver_rating { 
  border: none;
  float: left;
}

.driver_rating > input { display: none; } 
.driver_rating > label:before { 
  margin: 5px;
  font-size: 1.25em;
  font-family: FontAwesome;
  display: inline-block;
  content: "\f005";
}

.driver_rating > .half:before { 
  content: "\f089";
  position: absolute;
}

.driver_rating > label { 
  color: #ddd; 
 float: right; 
}

/***** CSS Magic to Highlight Stars on Hover *****/

.driver_rating > input:checked ~ label, /* show gold star when clicked */
.driver_rating:not(:checked) > label:hover, /* hover current star */
.driver_rating:not(:checked) > label:hover ~ label { color: #FFD700;  } /* hover previous stars in list */

.driver_rating > input:checked + label:hover, /* hover current star when changing rating,.driver_rating */
.driver_rating > input:checked ~ label:hover,
.driver_rating > label:hover ~ input:checked ~ label, /* lighten current selection */
.driver_rating > input:checked ~ label:hover ~ label { color: #FFED85;  } 


/* driver rating end*/

/* show rating css*/

.show_rating   { 
  border: none;
  float: left;
}

.show_rating   > input { display: none; } 
.show_rating   > label:before { 
  margin: 5px;
  font-size: 1.25em;
  font-family: FontAwesome;
  display: inline-block;
  content: "\f005";
}

.show_rating   > .half:before { 
  content: "\f089";
  position: absolute;
}

.show_rating   > label { 
  color: #ddd; 
  float: right; 
}

.show_rating   > input:checked ~ label { color: #FFD700;  }




/* end show rating*/

/* driver show rating */
.show_driver_rating   { 
  border: none;
  float: left;
}

.show_driver_rating   > input { display: none; } 
.show_driver_rating   > label:before { 
  margin: 5px;
  font-size: 1.25em;
  font-family: FontAwesome;
  display: inline-block;
  content: "\f005";
}

.show_driver_rating   > .half:before { 
  content: "\f089";
  position: absolute;
}

.show_driver_rating   > label { 
  color: #ddd; 
  float: right; 
}

.show_driver_rating   > input:checked ~ label { color: #FFD700;  }

/**/

.checkoutChange{
    float: right!important;
    cursor: pointer!important;
    cursor: hand!important;
    color: #f86e01!important;
    background-color: white!important;
    border-color: #f86e01!important;
}

.checkoutChange:hover{
    float: right!important;
    cursor: pointer!important;
    cursor: hand!important;
    background-color: #f86e01!important;
    color: white!important;
    border-color: #f86e01!important;
}


.nav-tabs.nav-justified>li.active> a{
    color: #f86e01;
}

#goToTop {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: rgb(0, 0, 0);
    background: rgba(0, 0, 0, 0.7);
    width: 50px;
    height: 50px;
    display: block;
    text-decoration: none;
    -webkit-border-radius: 35px;
    -moz-border-radius: 35px;
    border-radius: 35px;
    display: none;
    -webkit-transition: all 0.3s linear;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
#goToTop i {
    color: #fff;
    margin: 0;
    position: relative;
    left: 16px;
    top: 13px;
    font-size: 19px;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
#goToTop:hover {
    background: rgba(0, 0, 0, 0.9);
}
#goToTop:hover i {
    color: #fff;
    top: 5px;
}

.add-list-png {width: 30px;opacity: 0.6}

.disabled {
    pointer-events:none; //This makes it not clickable
    opacity:0.6;         //This grays it out to look disabled
}

.btn-custom-remove {
    background-color : #ff0000!important;
    border-color: #ff0000!important;
}

form #card_number {
background-image: url(../images/images.png), url(../images/images.png);
  background-position: 2px -114px, 260px -21px;
  background-size: 120px 361px, 120px 361px;
  background-repeat: no-repeat;
  padding-left: 54px;
}
form #card_number.visa {
  background-position: 2px -156px, 260px -21px;
}
form #card_number.visa_electron {
  background-position: 2px -198px, 260px -21px;
}
form #card_number.mastercard {
  background-position: 2px -240px, 260px -21px;
}
form #card_number.maestro {
  background-position: 2px -282px, 260px -21px;
}
form #card_number.discover {
  background-position: 2px -324px, 260px -21px;
}
form #card_number.valid.visa {
  background-position: 2px -156px, 260px -21px;
}
form #card_number.valid.visa_electron {
  background-position: 2px -198px, 260px -21px;
}
form #card_number.valid.mastercard {
  background-position: 2px -240px, 260px -21px;
}
form #card_number.valid.maestro {
  background-position: 2px -282px, 260px -21px;
}
form #card_number.valid.discover {
  background-position: 2px -324px, 260px -21px;
}

img.lazy {
background-image: url('../images/grey.gif');
background-repeat: no-repeat;
background-position: 50% 50%;
}

.hero-seller-image { background-image: url(../images/hero-seller-2.jpg); padding-top: 160px; padding-bottom: 160px; }
.loader, .forget-loader, .login-loader , .login-otp-loader ,.list-create-loader,.add-in-list-loader, .signup-loader, .load-more-loader, .confirm-order-loader,.payment-loader {
   margin: 0 auto;
    position: relative;
    border: 4px solid #EEE;
    border-top: 4px solid #CCC;
    border-radius: 100%;
    height: 30px;
    width: 30px;
    display: inline-block;
    animation: spin .6s infinite linear;
    -webkit-animation: spin .6s infinite linear;
}

.contact-loader,.checkout-loader{
   margin: 0 auto;
    position: relative;
    border: 4px solid #EEE;
    border-top: 4px solid #CCC;
    border-radius: 100%;
    height: 30px;
    width: 30px;
    animation: spin .6s infinite linear;
    -webkit-animation: spin .6s infinite linear;
}


.forget-password {
  margin-top: 4px;
    float: right;
}
@-webkit-keyframes spin {
  0% { -webkit-transform: rotate(0deg); }
  100% { -webkit-transform: rotate(360deg); }
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}
div.required .control-label:not(span)::before, td.required::before {
  color: #f00;
  content: "* ";
  font-weight: bold;
}
.alert-success { background-color: #43b02a; color: #fafbfa; font-size: 34px; }

.alert-info {
    color: #fafbfa;
    background-color: #43b02a;
    border-color: #43b02a;
}
.alert-danger {
    color:#fafbfa;
    background-color: #ff0000;
    border-color: #ff0000;
}
.alert{
    border-radius: 0px;
    padding: 7px;
    margin-bottom: 0px;
}
.notice-text {
    text-align: center;
    font-size: 14px;
    font-weight: 800;
}
.category-header {min-height: 16px;}

body { font-family: 'Hind', sans-serif; color: #848684; font-size: 14px; line-height: 1.6; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; font-weight: 500; }
h1, h2, h3, h4, h5, h6 { color: #30322f; margin: 0px 0px 10px 0px; }
h1 { font-size: 30px; }
h2 { font-size: 20px; }
h3 { font-size: 15px; line-height: 24px; }
h4 { font-size: 13px; }
h5 { }
h6 { }
a { color: #30322f; }
a:focus, a:hover { text-decoration: none; color: #f86e01; outline: none; }
p { }
p:last-child { margin-bottom: 0px; }
ul, ol { padding: 0px; }
strong { color: #30322f; }
.listnone { list-style: none; }
/*.header-transparent { position: fixed; left: 0; right: 0; padding-top: 10px; z-index: 9999; }*/
.header-transparent { position: absolute; left: 0; right: 0; padding-top: 10px; }
.hero-image { background-image: url(../images/products_grid_1.jpg); padding-top: 160px; padding-bottom: 160px; }
.header-white { background-color: #fff;
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, .07);
    color: #fff;
    font-size: 14px;
    height: 60px;
    position: relative;
    width: 100%;
    z-index: 1000; }
    .header-white .header_item_content {
    display: inline-block;
    padding: 12px 8px 12px 12px;
}
.header-link { text-align: right; padding-top: 20px; }
.header-link a { padding-left: 20px; font-weight: 600; }
.bg-default { background-color: #f3f5f2; }
.nopadding { padding: 0px; }
.nopl { padding-left: 0px; }
.nopr { padding-right: 0px; }
.header-logo { line-height: 60px; border-right: 1px solid #eee; padding-right: 30px }
.header-logo, .header-search-form, .store-cart-action { }
.header-nav { }
.header-nav a { font-size: 15px; display: inline-block; font-weight: 600; }
.header-nav a:hover { background-color: #f3f5f2 }
.show-on-hover:hover > ul.dropdown-menu { display: block; }
.store-location { padding-right: 10px; }
.header-left { }
.header-item { display: inline-block; position: relative; text-align: center; vertical-align: top; }
.header-address { padding-left: 20px; }
.header-white .user-address { position: relative; line-height: 60px; padding: 0 20px; }
/*.header-white .user-address:before { content: "\f041"; font-family: FontAwesome; font-style: normal; font-weight: normal; text-decoration: inherit;position: absolute;    color: #000;  left: 0; }
.header-white .user-address:after { content: "\f107"; font-family: FontAwesome; font-style: normal; font-weight: normal; text-decoration: inherit;position: absolute;    color: #000;  right: 0px; }*/
.search-form { margin-top: 10px; position: relative;z-index: 9999; }
.search-form .form-control { height: 40px; }
.header-search-form .btn-default { height: 40px; background-color: #fafbfa; border: 1px solid #d7dcd6; color: #999f98; }
.header-search-form .btn-default:hover { height: 40px; background-color: #fafbfa; border: 1px solid #d7dcd6; color: #999f98; }
.header-search-form .btn-default:active:focus, .header-search-form .btn-default:active:hover { color: #333; background-color: #fafbfa; border-color: #fafbfa; }
.header-search-form { position: relative; z-index: 99; width: 100%; }
.overlay { width: 100%; height: 100%; background-color: rgba(0, 0, 0, 0.7); position: absolute; top: 0; left: 0; display: none; z-index: 9; }
.overlayed {
    background-color: rgba(0, 0, 0, 0.1);
    z-index: 99999999999;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    display: none;
}​
.header-search-form.focusDiv { position: relative; z-index: 9; width: 100%; }
.overflow-y-hidden { overflow-y: hidden; }
.header-right { text-align: right; line-height: 60px; }
.header-dropdown { padding-right: 30px; display: inline-block; line-height: 60px; }
.header-item-account { }
.header-dropdown .dropdown-menu { border-radius: 2px; border: 1px solid #d7dcd6; min-width: 240px; -webkit-box-shadow: 0 0px 0px rgba(0, 0, 0, .175); box-shadow: 0 0px 0px rgba(0, 0, 0, .175); padding: 0px; margin: 0px; position: absolute; top: 100%; left: inherit; right: 0; z-index: 2090; }
.dropdown-menu>li>a { padding-top: 10px; padding-bottom: 10px; border-bottom: 1px solid #d7dcd6; }
.header-dropdown .dropdown-menu { left: inherit; right: 0; min-width: 240px; border-radius: 0px; padding: 0px; }
.header-dropdown .dropdown-menu li { }
.header-dropdown .dropdown-menu li a { padding: 16px 14px; font-weight: 500; line-height: 14px; }
.header-dropdown .dropdown-menu li a .fa { padding-right: 10px; color: #696969; }
.backdrop{background-color:#000;
    height:100% ;
    left: 0;
    opacity: .7;
    position: fixed;
    top: 0;
    width: 100% ;
    z-index: 2000;}


/*--------- Side Navigation -------*/
#wrapper { padding-left: 0; -webkit-transition: all 0.5s ease; -moz-transition: all 0.5s ease; -o-transition: all 0.5s ease; transition: all 0.5s ease; }
#wrapper.toggled { padding-left: 250px; }
#sidebar-wrapper { z-index: 1000; position: fixed; left: 250px; width: 0; margin-left: -250px; overflow-y: auto; background: #1E1E21; -webkit-transition: all 0.5s ease; -moz-transition: all 0.5s ease; -o-transition: all 0.5s ease; transition: all 0.5s ease; }
#wrapper.toggled #sidebar-wrapper { width: 250px; }
#page-content-wrapper { width: 100%; position: absolute; }
#wrapper.toggled #page-content-wrapper { position: absolute; margin-right: -250px; }

/* Sidebar Styles */
#wrapper { }
#wrapper.toggled { padding-left: 0; }
#sidebar-wrapper { width: 280px; }
#wrapper.toggled #sidebar-wrapper { width: 0;}
#page-content-wrapper { position: relative; }
#wrapper.toggled #page-content-wrapper { position: relative; margin-right: 0; }
.side-nav { border-right: 1px solid #d7dcd6; }
.side-menu { margin-bottom: 40px; }
#side-menu, #side-menu ul, #side-menu ul li, #side-menu ul li a { margin: 0; padding: 0; border: 0; list-style: none; line-height: 1; display: block; position: relative; -webkit-box-sizing: border-box; -moz-box-sizing: border-box; box-sizing: border-box; }
#side-menu { color: #ffffff; }
#side-menu ul ul { display: none; }
#side-menu > ul > li.active > ul { display: block; }
.align-right { float: right; }
.menu-toggle { z-index: 9; display: none; }
#side-menu > ul > li > a { padding: 16px 40px 16px 30px; cursor: pointer; z-index: 2; font-size: 14px; text-decoration: none; color: #333; background: #fff; -webkit-transition: color .2s ease; -o-transition: color .2s ease; transition: color .2s ease; border-bottom: 1px solid #eee; font-weight: 600; }
#side-menu > ul > li > a:hover { color:#fff; background-color: #43b02a; }
#side-menu > ul > li.open > a { color: #fff; background-color: #43b02a; }
#side-menu > ul > li.open a { border-bottom: 1px solid #eee; background-color: #43b02a; }
#side-menu > ul > li.open ul li a { padding-left: 50px; background-color: #fff; }
#side-menu > ul > li.open ul li.selected a { color: #f86e01; }
#side-menu > ul > li.open ul li a:hover { background-color: #f3f5f2; }


#side-menu ul > li.has-sub > a:after { position: absolute; left: 16px; top: 16px; z-index: 5; display: block; height: 10px; width: 2px; background: #f86e01; content: ""; -webkit-transition: all 0.1s ease-out; -moz-transition: all 0.1s ease-out; -ms-transition: all 0.1s ease-out; -o-transition: all 0.1s ease-out; transition: all 0.1s ease-out; }
#side-menu ul > li.has-sub > a:before { position: absolute; left: 12px; top: 20px; display: block; width: 10px; height: 2px; background: #f86e01; content: ""; -webkit-transition: all 0.1s ease-out; -moz-transition: all 0.1s ease-out; -ms-transition: all 0.1s ease-out; -o-transition: all 0.1s ease-out; transition: all 0.1s ease-out; }
#side-menu ul > li.has-sub.open > a:after, #side-menu ul > li.has-sub.open > a:before { -webkit-transform: rotate(45deg); -moz-transform: rotate(45deg); -ms-transform: rotate(45deg); -o-transform: rotate(45deg); transform: rotate(45deg); }
#side-menu ul ul li a { padding: 16px 20px; cursor: pointer; z-index: 2; font-size: 14px; text-decoration: none; color: #6A6A6F; -webkit-transition: color .2s ease; -o-transition: color .2s ease; transition: color .2s ease; font-weight: 600; }
#side-menu ul ul ul li a { padding-left: 32px; }
#side-menu ul ul li a:hover { color: #f86e01; }
#side-menu ul ul > li.has-sub > a:after { top: 16px; right: 26px; background: #6A6A6F; }
#side-menu ul ul > li.has-sub > a:before { top: 20px; background: #6A6A6F; }

/*-------------------------------
    Page breadcrumb
---------------------------------*/
.page-breadcrumb { background-color: #f3f5f2; border-bottom: 1px solid #d7dcd6; padding-top: 8px; padding-bottom: 7px; }
.page-breadcrumb .breadcrumb { padding: 8px 15px; margin-bottom: 0px; list-style: none; background-color: #f3f5f2; border-radius: 4px; font-size: 13px; }
.page-title { margin-bottom: 0px; }
.page-section { padding-top: 30px; padding-bottom: 30px; }

/*-------------------------------
    Website Input & Buttons
---------------------------------*/
.form-control { background-color: #fafbfa; border: 1px solid #d7dcd6; -webkit-box-shadow: inset 0 0px 0px rgba(0, 0, 0, .075); box-shadow: inset 0 0px 0px rgba(0, 0, 0, .075); height: 50px; border-radius: 2px; }
.control-label { }
button { }
.input-group-addon { background-color: #fafbfa; border: 1px solid #d7dcd6; }

/*-------------------------------
    Website all buttons
---------------------------------*/
.btn { padding: 6px 14px; border-radius: 2px; font-size: 15px; font-weight: 600; }
.btn-default { color: #fff; background-color: #43b02a; border-color: #43b02a; }
.btn-default.disabled:hover { color: #000; background-color: #43b02a; border-color: #43b02a; }
.btn-default:hover { color: #fff; background-color: #4dbf33; border-color: #4dbf33; }
.btn-grey { color: #fff; background-color: grey; border-color: grey; }
.btn-grey[disabled]:hover { color: #fff; background-color: grey; border-color: grey; }

.btn-default.focus, .btn-default:focus { color: #fff; background-color: #4dbf33; border-color: #4dbf33; }
.btn-primary { color: #fff; background-color: #f86e01; border-color: #f86e01; }
.btn-primary:hover { color: #fff; background-color: #ff811e; border-color: #ff811e; }
.btn-primary.focus, .btn-primary:focus { color: #fff; background-color: #ff811e; border-color: #ff811e; }
.btn-grey { background-color: #cccccc; border: 1px solid #cccccc; }
.btn-lg { font-size: 18px; padding: 12px 20px; }
.btn-sm { font-size: 13px; padding: 5px 12px; }
.btn-xs { font-size: 11px; padding: 6px; line-height: 1; }
.btn-link-white { color: #fff; }
.btn-link-white:hover { color: #43b02a; }
.btn-link { color: #43b02a; }
.btn-link:focus, .btn-link:hover { color: #f86e01; text-decoration: underline; background-color: transparent; }
.btn-default:active:focus, .btn-default:active:hover { color: #fff; background-color: #33981b; border-color: #33981b; }
/*-------------------------------
    Section space
---------------------------------*/
.space-small { padding-top: 40px; padding-bottom: 40px; }
.space-normal { padding-top: 80px; padding-bottom: 80px; }
.space-medium { padding-top: 100px; padding-bottom: 100px; }
.space-large { padding-top: 120px; padding-bottom: 120px; }
.bdr-btm { border-bottom: 1px solid #d7dcd6; }
.store-find-block { background-color: #fff; }
.store-logo { padding: 20px; border-bottom: 2px solid #d7dcd6; text-align: center; }
.store-find { padding: 40px; text-align: center; }
.store-head { margin-bottom: 30px; }
.store-head h4 { color: #999f98; }
.store-form { margin-top: 20px; padding: 10px 30px; }
.store-form .form-control { margin-bottom: 10px; }
.store-footer { background-color: #f3f5f2; padding: 20px; text-align: center; }
.store-footer p { color: #999f98; text-transform: uppercase; font-size: 13px; }
.social-login-section { }
.social-login-btn { background-color: #eee; font-size: 13px; color: #333; padding: 15px 20px; border-radius: 4px; display: block; width: 100%; font-weight: 600; margin-bottom: 8px; }
.facebook-btn { background-color: #3b5998; color: #fff; }
.facebook-btn:focus, .facebook-btn:hover { background-color: #29488a; color: #fff; }
.twitter-btn { background-color: #00abe9; color: #fff; }
.twitter-btn:focus, .twitter-btn:hover { background-color: #0295ca; color: #fff; }
.googleplus-btn { background-color: #df4a32; color: #fff; }
.googleplus-btn:focus, .googleplus-btn:hover { background-color: #cf4332; color: #fff; }
.success-sign { color: #43b02a; font-size: 34px; }
/*.seperator { margin-top: 32px; text-transform: uppercase; font-size: 10px; }*/
.seperator { margin-top: 16px;text-transform: uppercase;font-size: 16px; }

.phoneModal-popup { }
.phoneModal-popup .close { float: right; font-size: 21px; font-weight: 700; line-height: 1; color: #000; text-shadow: 0 0px 0 #fff; opacity: 1; position: absolute; right: 0px; background: #f3f5f2; padding: 10px 14px; top: 0px; }
.phoneModal-popup .modal-body, .signupModal-popup .modal-body { padding: 0px; }
.phoneModal-popup .modal-dialog { width: 540px; margin: 120px auto; }

.timeslotModal-popup { }
.timeslotModal-popup .close { float: right; font-size: 21px; font-weight: 700; line-height: 1; color: #000; text-shadow: 0 0px 0 #fff; opacity: 1; position: absolute; right: 0px; background: #f3f5f2; padding: 10px 14px; top: 0px; }
/*.timeslotModal-popup .modal-body, .signupModal-popup .modal-body { padding: 0px; }
.timeslotModal-popup .modal-dialog { width: 540px; margin: 120px auto; }*/


.listModal-popup { z-index: 10000!important }
.listModal-popup .close { float: right; font-size: 21px; font-weight: 700; line-height: 1; color: #000; text-shadow: 0 0px 0 #fff; opacity: 1; position: absolute; right: 0px; background: #f3f5f2; padding: 10px 14px; top: 0px; }
.listModal-popup .modal-body { padding: 0px; }
.listModal-popup .modal-dialog { width: 540px; margin: 120px auto; }

.mydivs { }
.mydivs>div { height: 100%; }
/*.signupModal-popup { z-index: 10000!important}*/
.signupModal-popup .close { float: right; font-size: 21px; font-weight: 700; line-height: 1; color: #000; text-shadow: 0 0px 0 #fff; opacity: 1; position: absolute; right: 0px; background: #f3f5f2; padding: 10px 14px; top: 0px; }
.productModal_popup {z-index: 9999 }
.productModal_popup .close, .changelocationModal .close { float: right; font-size: 21px; font-weight: 700; line-height: 1; color: #000; text-shadow: 0 0px 0 #fff; opacity: 1; position: absolute; right: 0px; background: #f3f5f2; padding: 10px 14px; top: 0px; }
.product-variants-list { }
.product-variant { margin-bottom: 20px; }
.product-variant-label { color: #333; }
.product-variant-btn { background-color: #fff; border-radius: 3px; border: 2px solid #ccc; display: inline-block; font-size: 16px; min-height: 32px; min-width: 32px; padding: 8px 12px; margin: 10px 16px 10px 0; font-weight: 500;}

.product-variant-btn-active { background-color: #fff; border-radius: 3px; border: 2px solid #e96125; color: #e96125; }
.product-variant-btn-disabled { border: 2px solid #ccc !important; color: #ccc; opacity: .4; background: transparent; }
.product-disclaimer { color: #848684; }
.productModal_popup .sp-quantity { float: none; margin-top: 20px; }
.changelocationModal { text-align: center; }
.changelocationModal .modal-body { padding: 80px 30px; }
.changelocationModal .modal-body h2 { font-size: 26px; }
.changelocationModal .exclamation-icon { color: #f83c36; margin-bottom: 30px; }
.changelocationModal-content { margin-bottom: 20px; }
.changelocationModal .modal-content { margin-top: 120px; }
.product-price .price-popup {  font-weight: 600;  font-size: 20px; color: #43b02b;}
.product-price .old-price-popup {  font-weight: 600;  color: #000; padding-right: 5px; font-size: 16px; text-decoration: line-through;}
.add-cart-btn-popup {font-size: 16px; padding: 8px 12px;}
.add-cart-btn{font-size: 16px; text-transform: uppercase; display: block;}

/*-------------------------------
    Feature block css
---------------------------------*/
.feature-block { margin-bottom: 20px; margin-top: 20px; }
.feature-title { font-size: 16px; }
.feature-icon { }
.feature-content { }
.feature-icon-bg { border: 1px solid #d7dcd6; background-color: #fff; width: 60px; height: 60px; text-align: center; padding: 18px; }

/* if feature needs left - conditional class*/
.feature-left { }
.feature-left .feature-icon { float: left; padding-right: 10px; color: #a0a39f; font-size: 18px; }
.feature-left .feature-content { padding-left: 80px; }

/*------------------------------
    Footer
--------------------------------*/
.about-info { }
.footer-title { font-size: 16px; margin-bottom: 20px; }
.footer-block { border-right: 1px solid #d7dcd6; padding-top: 60px; padding-bottom: 30px; padding-right: 40px; min-height: 320px; }
.footer-social { margin-top: 30px; border-top: 1px solid #d7dcd6; padding-top: 30px; }
.footer-social a { padding-right: 10px; font-size: 42px; }

/*---------- download app icon ---------*/
.app-action { }
.app-action a { display: inline-block; margin-bottom: 5px; }
.app-btn { width: 100%; }
.tinyfooter { border-top: 1px solid #d7dcd6; padding-top: 20px; padding-bottom: 20px; }
.footer-text { letter-spacing: 1px; font-weight: normal; font-size: 12px; }
.store-list-wrapper { border-top: 1px solid #d7dcd6; margin-bottom: 60px; display: inline-block; border-right: 1px solid #d7dcd6; }
.store-company-page { margin-top: 60px; }
.store-block { padding: 28px 28px 0; border: 2px solid #44b02a; border-radius: 5px; text-align: center; transition: all 0.2s ease-in-out 0s; transform: translateY(0) !important; margin-bottom: 30px; }
.store-block:hover { transform: translateY(-6px) !important; -moz-box-shadow: 0 10px 25px 5px rgba(213, 216, 213, 0.2); -webkit-box-shadow: 0 10px 25px 5px rgba(213, 216, 213, 0.2); box-shadow: 0 10px 25px 5px rgba(213, 216, 213, 0.2); }
.store-company { border-radius: 100%; margin: 0 auto; margin-bottom: 30px; }
.store-info { margin-bottom: 0; }
.store-title { min-height: 2em; overflow: hidden; position: relative; line-height: 1em; max-height: 2em;  display: -webkit-box; -webkit-line-clamp: 2; text-overflow: ellipsis;-webkit-box-orient: vertical; -o-text-overflow: ellipsis; }
.store-delivery-info{background: #44b02a; color: #fff; padding: 4px 6px; margin: 10px -28px 0 -28px;}
.store-delivery-info img{width: 30px;}
.store-cart-action { position: relative; line-height: 60px; }
.store-cart-action .badge { position: absolute; left: 8px; top: 12px; background-color: #d0023b;}
.store-cart-action .fa {font-size:24px;}
.mycart-header { padding: 20px; }
.store-cart-panel { }
.store-cart-panel .modal-header { background-color: #333; color: #fff; padding: 0px; position: fixed; top: 0px; width: 100%; background: #333; z-index: 9; }
.store-cart-panel .modal-header .modal-title { color: #fff; font-size: 17px; font-weight: 700 }
.store-cart-panel .modal-header .close { float: right; font-size: 21px; font-weight: 700; line-height: 1; color: #fff; text-shadow: 0 1px 0 #fff; filter: alpha(opacity=20); opacity: .9; margin-top: 20px; margin-right: 20px; }
.store-shop-panel { background-color: #fff; color: #333; }
.store-logo-img { margin-left: 10px;}
.store-mycart-info { padding: 20px 20px 0px 0px; text-align: right; }
.modal.left .modal-dialog, .modal.right .modal-dialog { position: fixed; margin: auto; width: 420px; height: 100%; -webkit-transform: translate3d(0%, 0, 0); -ms-transform: translate3d(0%, 0, 0); -o-transform: translate3d(0%, 0, 0); transform: translate3d(0%, 0, 0); }
.modal.left .modal-content, .modal.right .modal-content { height: 100%; overflow-y: auto; }
.modal.left .modal-body, .modal.right .modal-body { padding: 15px 15px 80px; }

/*Left*/
.modal.left.fade .modal-dialog { left: -320px; -webkit-transition: opacity 0.3s linear, left 0.3s ease-out; -moz-transition: opacity 0.3s linear, left 0.3s ease-out; -o-transition: opacity 0.3s linear, left 0.3s ease-out; transition: opacity 0.3s linear, left 0.3s ease-out; }
.modal.left.fade.in .modal-dialog { left: 0; }

/*Right*/
.modal.right.fade .modal-dialog { right: -320px; -webkit-transition: opacity 0.3s linear, right 0.3s ease-out; -moz-transition: opacity 0.3s linear, right 0.3s ease-out; -o-transition: opacity 0.3s linear, right 0.3s ease-out; transition: opacity 0.3s linear, right 0.3s ease-out; }
.modal.right.fade.in .modal-dialog { right: 0; }

/* ----- MODAL STYLE ----- */
.modal-content { border-radius: 0; border: none; background-color: #fff; position: relative; }
.modal-footer { padding: 15px;    /* text-align: right; */ border-top: 1px solid #e5e5e5; position: fixed; bottom: 0px; z-index: 9; background: #f3f5f2; width: 100%; }
.store-cart-panel .modal.left .modal-body, .modal.right .modal-body { padding: 185px 0px 160px 0px; }

.product-items { font-size: 12px; display: inline-block; width: 100%; }
.product-items .product-quantity { float: left; }
.product-items .price-cancelled { float: left; font-size: 16px; padding-right: 10px; padding-left: 20px; margin-top: 4px; }
.product-items .price { float: left; font-size: 16px; padding-right: 10px; padding-left: 0px; margin-top: 4px; }
.product-items .total-price { float: right; font-size: 16px; font-weight: 600; }
.mycart-product-listing { padding: 0px 20px 0px 0px; }
.mycart-product-listing ul { }
.mycart-product-listing ul li { border-bottom: 1px solid #d7dcd6; margin-top: 14px; margin-left: 14px; }
.mycart-product-listing .total-price { float: right; color: #333; }
.mycart-product-img { width: 100px; height: 100px; position: relative; }
.mycart-product-info { }
.mycart-product-listing .product-items{position: relative;}
.mycart-product-listing .product-items .price-cancelled{float: left;
    font-size: 16px;
    padding-right: 10px;
     padding-left: 0px; 
     min-height: : 12px; 
    margin-top: 0px;}
.mycart-product-listing .product-items .price{float: left;
    font-size: 16px;
    padding-right: 10px;
    padding-left: 0px;
    margin-top: 0px;}
.mycart-product-listing .product-items .product-quantity {
    position: absolute;
    top: -5px;
    left: 60px;
}
.store-cart-panel .modal-footer { background-color: #f3f5f2; text-align: center; }
.product-details { }
.product-details .modal-body { padding: 40px; margin-top: 80px; }
.offer-ratio { margin-bottom: 20px;    display: inline-block;    color: #fff;    font-size: 14px;    font-weight: 700;    background-color: #ee4054;    border-radius: 2px;    text-align: center; padding: 6px 10px; }
.product-details .price { color: #333; font-size: 18px; }
.old-price { color: #afb2af; padding-right: 5px; font-size: 16px; text-decoration: line-through; }
.product-features { padding-top: 30px; }
.product-features table tr td, .product-features table tr th { padding: 14px 16px; }
.table-title { margin-bottom: 20px; }
.product-features table tr th { color: #333; }
.product-features .table-bordered>tbody>tr>td, .product-features .table-bordered>tbody>tr>th, .product-features .table-bordered>tfoot>tr>td, .product-features .table-bordered>tfoot>tr>th, .product-features .table-bordered>thead>tr>td, .product-features .table-bordered>thead>tr>th { border: 1px solid #d7dcd6; }
.product-slider { }
.product-slider .owl-buttons { }
.product-slider .owl-controls .owl-buttons div { color: #333; display: inline-block; zoom: 1; margin: 0px; padding: 4px 8px; font-size: 22px; -webkit-border-radius: 0px; -moz-border-radius: 0px; border-radius: 0px; background: #fff; filter: Alpha(Opacity=50); line-height: 1; }
.owl-prev { position: absolute; top: 40%; left: 0px; }
.owl-next { position: absolute; top: 40%; right: 0px; }

/*-----------------------------
Product block
------------------------------*/
.product-category-block { padding: 20px 0px 10px 0px; }
.product-block { border: 1px solid transparent; padding: 18px; border-left: 1px solid #d7dcd6; border-bottom: 1px solid #d7dcd6;}
/*.product-details:last-child .product-block { border: 1px solid transparent; padding: 18px; border-left: 1px solid #d7dcd6; border-bottom: 1px solid #d7dcd6; border-right: 1px solid #d7dcd6; min-height: 380px; }*/
.product-details:last-child{  border-right: 1px solid #d7dcd6; }

.product-block:hover { border: 1px solid #d5dbd4; }
.product-img img { 
    padding: 20px !important; width: 100%; transition: all 0.2s ease-in-out 0s; transform: translateY(0) !important; }
.product-block:hover img { transform: translateY(-8px) !important; }
.product-description { position: relative;margin-top: -18px; }
.product-title {     
  display: block;    
  min-height: 3em;    
   
  /* hide text if it more than N lines  */
  overflow: hidden;
  /* for set '...' in absolute position */
  position: relative; 
  /* use this value to count block height */
 line-height: 1em;
  /* max-height = line-height (1.2) * lines max number (3) */
  max-height: 3em;
  /* fix problem when last visible word doesn't adjoin right side  */
  display: -webkit-box; 
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;


}
.add-to-list{ right: 0;
    margin: 5px 5px;
    position: absolute;
    z-index: 2;}

.product-info { margin: 0 0 5px; }
.small-info { color: #969995; display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis; overflow: hidden;}
.product-price .price { font-weight: 600; font-size: 16px; color: #333; }
.addcart-block { 
    right: 0px;
    bottom: 4px; }
.price-cancelled { font-size: 14px; text-decoration: line-through; float: right;}

.spacial-offer {
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    background-color: #ee4054;
    border-radius: 999px;
    padding: 3px 8px 0;
    z-index: 2;
    width: fit-content;
    margin-top: 5px;
}

.spacial-no-offer {
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    border-radius: 999px;
    padding: 2px 8px;
    z-index: 2;
    width: fit-content;
    margin-top: 5px;
    min-height: 25px;
}


/*-----------------------------
Step Wizard
------------------------------*/
.checkout-wrapper { padding-top: 40px; padding-bottom: 40px; background-color: #fafbfa; }
.checkout { background-color: #fff; border: 1px solid #d7dcd6; font-size: 14px; margin-bottom: 20px; }
.panel { margin-bottom: 0px; }
.checkout-step { border-bottom: 1px solid #f2f2f2; color: #666; font-size: 14px; padding: 30px; position: relative; }
.checkout-step:last-child { border-bottom: 1px solid transparent; }
.checkout-step-number { border-radius: 50%;display: inline-block;font-size: 14px;height: 34px;margin-right: 26px;padding: 8px;text-align: center;width: 34px;color: #fff;background: #d8dcd6; }
.checkout-step-color {background: #4CAF50;}
.checkout-step-title { font-size: 18px; font-weight: 500; vertical-align: middle; display: inline-block; margin: 0px; }
.checout-address-step { margin-bottom: 30px; }
.checout-address-step .form-group { margin-bottom: 18px; display: inline-block; width: 100%; }
.checkout-step-body { padding-left: 60px; padding-top: 20px; }
.checkout-step-body button.btn { height: 50px; line-height: 36px; }
.checkout-step-body .form-control { margin-bottom: 10px; }
.checkout-step-active { display: block; }
.checkout-step-disabled { display: none; }
.checkout-login { }
.checkout_login_msg { margin-bottom: 30px; }
.login-phone { }
.login-phone:after { content: '+91 - '; font-size: 14px; left: 36px; }
.login-phone:before { content: ""; font-style: normal; color: #333; font-size: 18px; left: 12px; display: inline-block; font: normal normal normal 14px/1 FontAwesome; font-size: inherit; text-rendering: auto; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
.login-phone:after, .login-phone:before { position: absolute; top: 44%; -webkit-transform: translateY(-50%); transform: translateY(-50%); }
.login-phone .form-control { padding-left: 68px; font-size: 14px; }
.checkout-login .btn { height: 42px; line-height: 1.8; }
.otp-verifaction { }
.checkout-sidebar { background-color: #fff; border: 1px solid #d7dcd6; padding: 30px; margin-bottom: 30px; }
.checkout-sidebar-merchant-box { background-color: #fff; border: 1px solid #d7dcd6; margin-bottom: 30px; }
.checkout-total { border-bottom: 1px solid #d7dcd6; padding-bottom: 10px; margin-bottom: 10px; }
.checkout-invoice { display: inline-block; width: 100%; }
.checout-invoice-title { float: left; color: #30322f; }
.checout-invoice-price { float: right; color: #30322f; }
.checkout-charges { display: inline-block; width: 100%; }
.checout-charges-title { float: left; color: #666; }
.checout-charges-price { float: right; }
.charges-free { color: #43b02a; font-weight: 600; }
.checkout-payable { display: inline-block; width: 100%; color: #333; }
.checkout-payable-title { float: left; }
.checkout-payable-price { float: right; }
.checkout-cart-merchant-box { padding: 20px; display: inline-block; width: 100%; border-bottom: 1px solid #d7dcd6; padding-bottom: 20px; }
.checkout-cart-merchant-name { color: #30322f; float: left; }
.checkout-cart-merchant-item { float: right; color: #30322f; }
.checkout-cart-products { }
.checkout-cart-products .checkout-charges { padding: 10px 20px; color: #333; }
.checkout-cart-item { border-bottom: 1px solid #d7dcd6; box-sizing: border-box; display: table; font-size: 12px; padding: 12px 20px; width: 100%; }
.checkout-item-list { }
.checkout-item-count { margin-top: 21px; float: left; font-weight: 600; font-size: 14px; color: #333; }
.checkout-item-img { width: 60px; float: left; border: 1px solid #d7dcd6; margin-left: 10px; margin-right: 10px; }
.checkout-item-name-box { float: left; max-width: 200px; }
.checkout-item-title { color: #30322f; font-size: 14px; }
.checkout-item-unit { }
.checkout-item-price { float: right; color: #30322f; font-size: 14px; font-weight: 600; }
.checkout-viewmore-btn { padding: 10px; text-align: center; }
.header-checkout-item { text-align: right; padding-top: 20px; margin-right: 16px; }
.checkout-promise-item { background-repeat: no-repeat; background-size: 14px; display: inline-block; margin-left: 20px; padding-left: 24px; color: #30322f; }
.checkout-promise-item i { padding-right: 10px; color: #43b02a; }
.goto-next { margin-top: 20px; }
.addressModal { }
.addressModal .modal-body { padding: 30px; }
.addressModal .close { float: right; font-size: 21px; font-weight: 700; line-height: 1; color: #000; text-shadow: 0 0px 0 #fff; opacity: 1; position: absolute; right: 0px; background: #f3f5f2; padding: 10px 14px; top: 0px; }
.addnews-address-form { }
.addnews-address-form .form-group { display: inline-block; width: 100%; }
.addnews-address-form label { color: #333; display: inline-block; padding-right: 20px; }
.select-locations { margin-bottom: 10px; margin-top: 20px; }
.checkout-payment-mode { margin-bottom: 40px; }
.control-group { display: inline-block; vertical-align: top; background: #fff; text-align: left; box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1); padding: 30px; width: 200px; height: 210px; margin: 10px; }
.control { display: block; position: relative; padding-left: 30px; cursor: pointer; font-size: 16px; font-weight: normal; }
.control input { position: absolute; z-index: -1; opacity: 0; }
.control__indicator { position: absolute; top: 0px; left: 0; height: 20px; width: 20px; background: transparent; border: 2px solid #d7dcd6; }
.control--radio .control__indicator { border-radius: 50%; }
.control:hover input ~ .control__indicator, .control input:focus ~ .control__indicator { background: #fff; border: 2px solid #f86e01; }
.control input:checked ~ .control__indicator { background: #f86e01; border: 2px solid #f86e01; }
.control:hover input:not([disabled]):checked ~ .control__indicator, .control input:checked:focus ~ .control__indicator { background: #f86e01; }
.control input:disabled ~ .control__indicator { background: #f86e01; opacity: 0.6; pointer-events: none; }
.control__indicator:after { content: ''; position: absolute; display: none; }
.control input:checked ~ .control__indicator:after { display: block; }
.control--checkbox .control__indicator:after { left: 8px; top: 4px; width: 3px; height: 8px; border: solid #fff; border-width: 0 2px 2px 0; transform: rotate(45deg); }
.control--checkbox input:disabled ~ .control__indicator:after { border-color: #7b7b7b; }
.control--radio .control__indicator:after { left: 5px; top: 5px; height: 6px; width: 6px; border-radius: 50%; background: #fff; }
.control--radio input:disabled ~ .control__indicator:after { background: #7b7b7b; }
.checkout-time-table { margin-top: 30px; margin-bottom: 30px; }
.checkout-time-table label { margin-bottom: 0px; }
.checkout-time-table .list-group { padding-left: 0; margin-bottom: 20px; }
.checkout-time-table .list-group-item { position: relative; display: block; padding: 10px 15px; margin-bottom: -1px; background-color: #fff; border: 1px solid #d7dcd6; }
.checkout-time-table .list-group-item:first-child { border-top-left-radius: 0px; border-top-right-radius: 0px; border-top: transparent; }
.checkout-time-table .list-group-item:last-child { margin-bottom: 0; border-bottom-right-radius: 0px; border-bottom-left-radius: 0px; }
.checkout-time-table .tab-content { height: 245px; overflow: scroll; }

.checkout-time-table-new label { margin-bottom: 0px; }
.checkout-time-table-new .list-group { padding-left: 0; margin-bottom: 20px; }
.checkout-time-table-new .list-group-item { position: relative; display: block; padding: 10px 15px; margin-bottom: -1px; background-color: #fff; border: 1px solid #d7dcd6; }
.checkout-time-table-new .list-group-item:first-child { border-top-left-radius: 0px; border-top-right-radius: 0px; border-top: transparent; }
.checkout-time-table-new .list-group-item:last-child { margin-bottom: 0; border-bottom-right-radius: 0px; border-bottom-left-radius: 0px; }
/*.checkout-time-table-new .tab-content { height: 245px; overflow: scroll; }*/

.editAddressModal { }
.editAddressModal .modal-body { padding: 30px; }
.editAddressModal .close { float: right; font-size: 21px; font-weight: 700; line-height: 1; color: #000; text-shadow: 0 0px 0 #fff; opacity: 1; position: absolute; right: 0px; background: #f3f5f2; padding: 10px 14px; top: 0px; }

.nav-tabs>li>a { margin-right: 2px; line-height: 1.42857143; border: 1px solid transparent; border-radius: 4px 4px 0 0; background: #fafbfa; border-radius: 0px; border: 1px solid #d7dcd6; }
.nav>li>a:focus, .nav>li>a:hover { text-decoration: none; background-color: #d7dcd6; }
.nav-tabs.nav-justified>li>a { border-bottom: 1px solid #d7dcd6; border-radius: 0px; }
.nav-tabs.nav-justified>.active>a, .nav-tabs.nav-justified>.active>a:focus, .nav-tabs.nav-justified>.active>a:hover { border: 1px solid #d7dcd6; border-bottom-color: #fff; }
.checkout-promo-code { text-align: center; }
.checkout-promo-cta { background-color: #f5f7f4; border: 1px solid #d7dcd6; padding: 20px; margin-bottom: 30px; display: inline-block; width: 100%; }
.checkout-promo-cta:hover { background-color: #fbfcfb; }
.checkout-promocode-form{ margin-bottom: 20px; }
.checkout-promocode-form .btn{height: 50px;}
.checkout-promocode-form .form-control{background-color: #fff; padding-left: 40px;}
.promo-form{position: relative;}
.promo-form:before {
  content: "\f0a3";
    font-family: FontAwesome;
    font-style: normal;
    color: #51aa1b;
    left: 13px;
    font-size: 18px;
    position: absolute;
    top: 11px;
    z-index: 9;
}
.dropoff-form{position: relative;}
.dropoff-form:before {
  content: "\f24a";
    font-family: FontAwesome;
    font-style: normal;
    color: #51aa1b; 
    left: 13px;
    font-size: 18px;
    position: absolute;
    top: 11px;
    z-index: 9;
}

.coupon-forms{position: relative;}
.coupon-forms:before {
  content: "\f06b";
    font-family: FontAwesome;
    font-style: normal;
    color: #51aa1b;
    left: 13px;
    font-size: 18px;
    position: absolute;
    top: 11px;
    z-index: 9;
}



/*----------------------------------
    Dashboard Wrapper
-----------------------------------*/
.dashboard-wrapper { background-color: #fafbfa; padding-top: 40px; padding-bottom: 40px; }
.dashboard-content { background-color: #fff; border: 1px solid #d7dcd6; }
.dashboard-profile { }
.dashboard-profile-left { border-right: 1px solid #d7dcd6; }
.profile-block { padding-top: 30px; padding-bottom: 30px; text-align: center; border-bottom: 1px solid #d7dcd6; }
.profile-number { margin-top: 10px; margin-bottom: 10px; }
.profile-navigation { }
.profile-navigation .nav>li>a { position: relative; display: block; padding: 16px 15px; border-bottom: 1px solid #d7dcd6; line-height: 1; color: #6f6f6f; }
.profile-navigation .nav>li>a i { padding-right: 6px; }
.profile-navigation .nav-stacked>li+li { margin-top: 0px; }
.profile-navigation .nav>li>a:focus, .profile-navigation .nav>li>a:hover { text-decoration: none; background-color: #fafbfa; color: #30322f; }
.profile-navigation .nav>li a.active { background-color: #fafbfa; color: #f86e01; }
.dashboard-profile-right { }
.dashboard-profile-content { padding: 30px; border-left: 1px solid #d7dcd6; margin-left: -1px; }
.my-order { }
.my-order-group { }
.my-order-list-head { background-color: #fafbfa; padding: 20px; }
.my-order .list-group-item { border: 1px solid #d7dcd6; }
.my-order-list-head .btn { float: right; }
.my-order .list-group-item:first-child { border-top-left-radius: 1px; border-top-right-radius: 1px; }
.my-order .list-group-item:last-child { margin-bottom: 0; border-bottom-right-radius: 0px; border-bottom-left-radius: 0px; margin-top: -2px; }
.my-order-title { margin-bottom: 0px; }
.my-order-delivery { }
.my-order-info { }
.my-order-date, .my-order-id { font-size: 13px; }
.my-order-id-number { }
.my-order-id-item { padding-left: 10px; }
.my-order-block { padding: 20px; }
.list-group-item.my-order-details-block { padding: 0px; }
.my-order-details { padding: 20px; border-bottom: 1px solid #eee; }
.my-order-refund, .my-order-showaddress { padding: 6px 20px; }
.my-order-showaddress { text-align: center; }
.my-order-price { padding-top: 20px; color: #30322f; }
.my-order-list-title { margin-bottom: 6px; }
.my-order-view-dashboard { padding: 30px; background-color: #fff; border: 1px solid #d7dcd6; }
.my-order-view-content { }
.my-order-view-sidebar { }
.back-link-block { padding-bottom: 20px; }
.back-link-block .back-arrow { padding-right: 10px; }

/*--------------------------
    My address 
----------------------------*/
.dashboard-address-content { padding: 30px; border-left: 1px solid #d7dcd6; margin-left: -1px; }
.address-block { padding: 20px; border: 1px solid #d7dcd6; margin-bottom: 30px; }
.address-locations { }
.address-name { }
.dashboard-cash-content { padding: 30px; border-left: 1px solid #d7dcd6; margin-left: -1px; }
.cash-info { padding-top: 120px; text-align: center; padding-bottom: 120px; }
.cash-icon { font-size: 24px !important; }
.your-cash { font-size: 30px; color: #30323f; }
.cash-block { }
.my-account-dropdown { position: relative; display: inline-block; }
.my-account-dropdown .dropdown-menu { left: inherit; right: 0; min-width: 240px; border-radius: 0px; padding: 0px; }
.my-account-dropdown .dropdown-menu li { }
.my-account-dropdown .dropdown-menu li a { padding: 16px 14px; font-weight: 500; line-height: 14px; }
.my-account-dropdown .dropdown-menu li a .fa { padding-right: 10px; color: #696969; }
.user-profile { padding: 10px 20px; border-bottom: 1px solid #eee; }
.user-profile-img img { width: 40px; }
.user-name { color: #333; padding-left: 20px; font-weight: 600; }

/*-------------- Product Quantity --------------*/
#plus, #minus, .product-count{    width: 30px;
    height: 30px;
    border: 1px solid #e1e1e1;
   font-size: 16px;
    float: left;
    text-align: center;
    border-radius: 100%; padding-top: 3px;
    margin-left: 3px; background-color: transparent;}
.product-count{    float: left;
    font-size: 16px;
    color: #333;
    padding-top: 3px;
    border:none;}
.product-quantity {
    bottom: 3px;
    right: 0px;
    position: absolute;
    left: 80px;
}

#plus:hover, #minus:hover{border:1px solid #f86e01;color: #f86e01;}
.ui-autocomplete {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 1000;
  display: none;
  float: left;
  min-width: 160px;
  padding: 5px 0;
  margin: 2px 0 0;
  list-style: none;
  font-size: 14px;
  text-align: left;
  background-color: #ffffff;
  border: 1px solid #cccccc;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 0px 0px 4px 4px;
  -webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
  background-clip: padding-box;
}

.AtcButton__small___1a1kH {
    height: 36px;    
    font-weight: 400;
    font-size: 16px;   
}

.AtcButton__with_text___4C5OY {
    background-color: #43b02b;
}

.AtcButton__with_text___4C5OY:hover {
    background-color: #399625;
}

.AtcButton__with_counter___3YxLq {
    background-color: #43b02b;
}

.AtcButton__container___1RZ9c {
    border-radius: 2px;
    color: #fff;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: justify;
    justify-content: space-between;
    font-size: 16px !important;
    font-weight: 600;
    text-transform: uppercase;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;    
}

.AtcButton__button_text___VoXuy {
    width: 100%;
    text-align: center;
}

.AtcButton__small___1a1kH .AtcButton__decrement_button___2ov_L, .AtcButton__small___1a1kH .AtcButton__increment_button___3j3y8 {
    width: 50px;
}

.AtcButton__decrement_button___2ov_L {
    border-radius: 2px 0 0 2px;
}

.AtcButton__decrement_button___2ov_L, .AtcButton__increment_button___3j3y8 {
    height: 100%;
    width: 80px;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.AtcButton__small___1a1kH .AtcButton__counter___iR7_X {
    font-size: 16px;
}

.AtcButton__counter___iR7_X {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    height: 60px;
    font-size: 16px;
}

.AtcButton__increment_button___3j3y8 {
    border-radius: 0 2px 2px 0;
}

.AtcButton__decrement_button___2ov_L:hover, .AtcButton__increment_button___3j3y8:hover {
    background-color: #348a21;
}

.AtcButton__small___1a1kH:hover {
    color: #fff;
}

.AtcButton_container_popup {
    max-width: 240px;
    height: 42px;
    font-size: 18px;
}


.ui-autocomplete > li > div {
  display: block;
  padding: 3px 20px;
  clear: both;
  font-weight: normal;
  line-height: 1.42857143;
  color: #333333;
  white-space: nowrap;
}

.ui-state-hover,
.ui-state-active,
.ui-state-focus {
  text-decoration: none;
  color: #262626;
  background-color: #f5f5f5;
  cursor: pointer;
}

.ui-helper-hidden-accessible {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}

/*.badge {
    border-radius: 1em;
    margin-left: 5px;
}*/

.badge-success {
    background-color: #5cb85c;
    text-transform: capitalize;
}

.badge-danger {
    background-color: #d9534f;
    text-transform: capitalize;
}

.badge-info {
    background-color: #5bc0de;
    text-transform: capitalize;
}

.badge-warning {
    background-color: #f0ad4e;
    text-transform: capitalize;
}

.badge-primary {
    background-color: #337ab7;
    text-transform: capitalize;
}

.
/*
 * Off Canvas
 * --------------------------------------------------
 */
body { overflow-x: hidden;    /* Prevent scroll on narrow devices */ }
@media screen and (max-width:767px) {

    /* small screen*/
    .row-offcanvas { position: relative; -webkit-transition: all .25s ease-out; -o-transition: all .25s ease-out; transition: all .25s ease-out; }
    .row-offcanvas-right { right: 0; }
    .row-offcanvas-left { left: 0; }
    .row-offcanvas-right .sidebar-offcanvas { right: -50%;   }
    .row-offcanvas-left .sidebar-offcanvas { left: -48%;         }
    .row-offcanvas-right.active { right: 50%;   /* 6 columns */ }
    .row-offcanvas-left.active { left: 50%;   /* 6 columns */ }
    .sidebar-offcanvas { position: absolute; top: 0; width: 50%;  }

    .header .user-address:before { content: "\f041"; font-family: FontAwesome; font-style: normal; font-weight: normal; text-decoration: inherit;     color: #000; left: 0; }
    .header .user-address:after { content: "\f107";white-space: pre; font-family: FontAwesome; font-style: normal; font-weight: normal; text-decoration: inherit;     color: #000; right: 0px; }

    .header-white .user-address:before { content: "\f041"; font-family: FontAwesome; font-style: normal; font-weight: normal; text-decoration: inherit;position: absolute;    color: #000;  left: 0; }
    .header-white .user-address:after { content: " \f107"; font-family: FontAwesome; font-style: normal; font-weight: normal; text-decoration: inherit;position: absolute;    color: #000;  right: 0px; }
    
    .header .header-item-address { padding: 0 0 0 25px; width: 155px; }

}

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

    /* big screen*/
    .row-offcanvas { position: relative; -webkit-transition: all .25s ease-out; -o-transition: all .25s ease-out; transition: all .25s ease-out; }
    .row-offcanvas-right { right: 0; }
    .row-offcanvas-left { left: 0; }
    .row-offcanvas-right .sidebar-offcanvas { right: -50%;        /* 6 columns */ }
    /*.row-offcanvas-left .sidebar-offcanvas { left: -48%;         }*/
    .row-offcanvas-right.active { right: 50%;   /* 6 columns */ }
    .row-offcanvas-left.active { left: 50%;   /* 6 columns */ }
    /*.sidebar-offcanvas {  position: -webkit-sticky;position: sticky;top: 60px;}*/

    .header .user-address:before { content: "\f041"; font-family: FontAwesome; font-style: normal; font-weight: normal; text-decoration: inherit;     color: #000; left: 0; }
    .header .user-address:after { content: " \f107";white-space: pre; font-family: FontAwesome; font-style: normal; font-weight: normal; text-decoration: inherit;     color: #000; right: 0px; }

    .header-white .user-address:before { content: "\f041"; font-family: FontAwesome; font-style: normal; font-weight: normal; text-decoration: inherit;    color: #000;  left: 0; }
    .header-white .user-address:after { content: " \f107"; font-family: FontAwesome; font-style: normal; font-weight: normal; text-decoration: inherit;    color: #000;  right: 0px; }


    .header .header-item-address { padding: 0 0 0 25px; width: 155px; }

}

.side-nav-btn-control { }
.header { background-color: #fff; box-shadow: 0 0 10px 0 rgba(0, 0, 0, .07); color: #fff; font-size: 14px; height: 60px; position: relative; width: 100%; z-index: 1000; }
.header .header_item { display: inline-block; height: 60px; vertical-align: middle; }

.header_left { display: inline-block; margin-right: -4px; max-width: calc(100% - 100px); }
.header .user-address { position: relative; line-height: 60px; padding: 0 20px; }
.header .header_item_content { display: inline-block; padding: 12px 8px 12px 12px; }
/*.header .user-address:before { content: "\f041"; font-family: FontAwesome; font-style: normal; font-weight: normal; text-decoration: inherit;  position: absolute;   color: #000; left: 0; }
.header .user-address:after { content: "\f107";white-space: pre; font-family: FontAwesome; font-style: normal; font-weight: normal; text-decoration: inherit; position: absolute;    color: #000; right: 0px; }*/

/*a::before {
  content: "♥";
   font-family: FontAwesome;
    font-style: normal;
     font-weight: normal; 
     color: #000;
      position: absolute; left: 0px;

}*/
/*.search { left: 386px; top: 2px; position: absolute; width: calc(100% - 680px); z-index: 2001; }*/
.search { left: 386px; top: 2px; position: absolute; width: calc(100% - 718px); z-index: 2001; }
.header_right { display: inline-block; float: right; margin-left: -4px; }





/*
 * Media Query
 * --------------------------------------------------
 */

/*==========  Non-Mobile First Method  ==========*/

/* Large Devices, Wide Screens */
@media only screen and (max-width:1300px) {
    .mycart-product-info { padding-top: 0px; }
    .mycart-product-listing ul li { border-bottom: 1px solid #d7dcd6; margin-top: 14px; margin-left: 14px; }
    

}

/* Medium Devices, Desktops */
@media only screen and (max-width:992px) {
    .mycart-product-info { padding-top: 0px; }
    .mycart-product-listing ul li { border-bottom: 1px solid #d7dcd6; margin-top: 14px; margin-left: 14px; }
}

/* Small Devices, Tablets */
@media only screen and (max-width:768px) {
    .product-category-block { padding: 10px 0px 10px 0px; }
    .header { background-color: #fff; box-shadow: 0 0 10px 0 rgba(0, 0, 0, .07); color: #fff; font-size: 14px; height: 160px; position: relative; width: 100%; z-index: 1000; }
    .search { left: 0; margin: 0 10px; top: 58px; width: calc(100% - 20px); border-top: 1px solid #eee; }
    .header .header-item-address { box-sizing: border-box; font-size: 13px; padding: 14px 25px 11px 5px;  }

    /*.header .header-item-address { box-sizing: border-box; font-size: 13px; padding: 14px 25px 11px 5px; width: calc(100% - 50px); }*/

    .header .user-address { position: relative; line-height: 30px; padding: 0 20px;}
    .header-dropdown { padding-right: 30px; display: inline-block; line-height: 60px; padding-left: 10px; font-size: 20px; }
    .footer-block { border-right: 1px solid #d7dcd6; padding-top: 30px; padding-bottom: 30px; padding-right: 30px; min-height: 260px; }
    .mycart-product-info { padding-top: 0px; }
    .mycart-product-listing ul li { border-bottom: 1px solid #d7dcd6; margin-top: 14px; margin-left: 14px; }
    .header-search-form { position: relative; z-index: 99; width: 87%; margin-left: 20px; }
    .search { padding-top: 10px; }
    .search-form { margin-top: 0px; }
    .header { height: 120px; }


    
}

/* Extra Small Devices, Phones */
@media only screen and (max-width:480px) {

    /* test here for ios small screens */

    .header-link { text-align: right; padding-top: 0px; }
    .product-category-block { padding: 10px 0px 10px 0px; }
    .search { left: 0; margin: 0 10px; top: 58px; width: calc(100% - 20px); }
    /*.header .header-item-address { box-sizing: border-box; font-size: 13px; padding: 14px 25px 11px 5px; width: calc(100% - 50px);  }*/
    .header .header-item-address { box-sizing: border-box; font-size: 13px; padding: 14px 25px 11px 5px;  }
    .header .user-address { position: relative; line-height: 30px; padding: 0 20px; width: 60px}
    .header-dropdown { padding-right: 30px; display: inline-block; line-height: 60px; padding-left: 10px; font-size: 20px; }
    .footer-block { border-bottom: 1px solid #d7dcd6; border-right: 0px; padding-top: 30px; padding-bottom: 30px; padding-right: 30px; min-height: 260px; }
    .store-find { padding: 20px; text-align: center; }
    .store-form { margin-top: 20px; padding: 10px; }
    .phoneModal-popup .modal-dialog, .productModal_popup .modal-dialog, .signupModal-popup .modal-dialog{ width: 100%; margin: auto; }
    .product-details .modal-body{margin:0;}

    /*width 360 */
    .modal.left .modal-dialog, .modal.right .modal-dialog { position: fixed; margin: auto; width: 100%; height: 100%; -webkit-transform: translate3d(0%, 0, 0); -ms-transform: translate3d(0%, 0, 0); -o-transform: translate3d(0%, 0, 0); transform: translate3d(0%, 0, 0); }

    /*.timeslotModal-popup .modal-dialog { width: 340px; margin: 120px auto; }*/

    /*.listModal-popup .modal-dialog { width: 340px; margin: 120px auto; }*/
    .header-search-form { position: relative; z-index: 99; width: 79%; margin-left: 20px; }
    .search { padding-top: 10px; }
    .search-form { margin-top: 0px; }
    .header { height: 120px; }
}

/* Custom, iPhone Retina */
@media only screen and (max-width:320px) {
    .header { height: 120px; }
    .header-link { text-align: right; padding-top: 0px; }
    .header-search-form { position: relative; z-index: 99; width: 79%; float: right; }
    .search { padding-top: 10px; }
    .search-form { margin-top: 0px; }

    .addcart-block {    
      position: absolute;
      right: 15px;
      bottom: -44px; 

    }

    .product-quantity{
      float: right;
      position: absolute;
      bottom: -44px;
      right: 15px;
    }
    .product-price{
       margin-left:30px;
       margin-top : 10px;
    }
}
