header{
  width: 100%; 
  background-color: #fff;
  font-size: 14px;
  z-index: 700;
  position: fixed;
  top: 0;
}

header #logo img{
 	height: 35px; 
}

header button{
	background: none; 
	border: none;
  cursor: pointer;
}

header input[type="text"]{
	border-radius: 25px;
  border: solid 1px #989898;
  width: 100%;
}

header i{
 font-size: 20px; 
}

header ul{
	display: flex;
  flex-direction: row;
}

header nav{
  position: relative;
}

header .usp{
 	margin-right: 25px;
}

header .phone-number{
  display: flex;
  flex-direction: row;
  align-items: center;
}

header .phone-number a{
  color: #35383a !important;
}

.line{
 	color: #E6ECF1;
  background-color: #E6ECF1;
  border-color: #E6ECF1;
  height: 1px; 
  border: 0;    
}

.search-form{
	position: relative; 
  width: 30%;
}

.search-form input{
   box-sizing:border-box;
    -moz-box-sizing:border-box; 
}

.search-btn{
  position: absolute;
  top: 25%;
  right: 5%;
  height: 50%;
}

.mainBar .btn{
  background-color: var(--color-header);
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}

.user_message{
 margin: 0; 
}

.nav-item a span{
  position: relative;
}

.nav-item a span:after{
	content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  border-bottom: 1px solid #fff;
  transition: all .3s ease-in-out;
}

.nav-item:hover a span:after{
 	width: 80%; 
}

.nav-item i{
 	font-size: 12px;
  transition: .25s ease-in-out;
}

.mega-menu{
 	position: absolute; 
  top: 90%;
  background-color: #fff;
  width: 1100px;
  opacity: 0;
  left: 0;
  transition: all .15s ease-in-out;
  pointer-events: none;
  border-radius: 0 0 5px 5px;
  z-index: 100;
  box-shadow: 0px 0px 20px 15px rgba(0,0,0,0.1);
}

.mega-menu ul li{
  display: flex;
  flex-direction: column;
}

.mega-menu ul li a h4{
 	margin-bottom: 10px; 
}

.mega-menu .subcategory li .sub-sub-cat{
 	padding-bottom: 5px; 
  transition: all .2s ease-in-out;
}

.mega-menu .subcategory li .sub-sub-cat:hover{
 	transform: translateX(5px); 
}

.mega-menu .subcategory li a h4{
  font-size: 18px;
}

.checkout-header{
 	background-color: #24653A;
  color: #fff;
/*   padding: 20px; */
}

.checkout-header a{
 	color: #fff; 
  font-size: 14px;
}

header .checkout-header .container{
 	max-width: 750px; 
}

.checkout-header #logo{
 padding: 15px 0; 
}

header .progress{
 	color: #323232;
  background-color: #fff;
  max-width: 100vw!important;
  width: 100%;
  display: flex;
  justify-content: center;
/*   margin-top: 15px; */
  padding: 20px 0;
  border-bottom: 1px solid #E9E9E9;
}

header .progress i{
 	color: #24653A;
}

header .checkout-header .progress div{
 	max-width: 750px; 
  width: 100%;
  display: flex;
  justify-content: space-between;
}

header .checkout-header .progress div div{
 width: auto; 
}

header .progress span{
 	font-size: 14px; 
  color: #323232;
}

header .progress hr{
 	width: 43%;
  height: 3px;
  border: none;
  background-color: #24653A;
}

@media(max-width: 1024px){
 .nav .mega-menu .container {
    display: grid;
    grid-template-columns: repeat(1, minmax(0, 1fr));
}
}

@media(min-width: 550px){
  .dropdown:hover .mega-menu{
    opacity: 100; 
    top: 100%;
    pointer-events: auto;
  }

  .dropdown:hover .fa-caret-down{
   transform: rotate(180deg); 
  }
}
.cart{
  height: 100%;
 	position: relative; 
}

.cart-badge{
	position: absolute!important;
  top: -35%;
  right: -20%;
  border-radius: 50%;
  padding: 0.15em 0.45em;
  font-size: 10px;
  color: #fff;
}

#store__notice{
  position: relative;
}

#store__notice i{
  position: absolute;
  top: 25%;
  font-size: 16px;
  right: 1%; 
  cursor: pointer;
}

#suggestions{
 	background-color: #fff;
  overflow-y: scroll;
  max-height: 600px;
  width: 100%;
}

#suggestions .item{
 	padding: 15px;
  border-bottom: solid 1px #cdcdcd;
  display: flex;
  flex-direction: row;
}

#suggestions .item img{
	margin-right: 10px;
}

#suggestions .item h6{
  font-size: 14px;
  margin-bottom: 5px;
  margin-top: 0;
  font-weight: 400!important;
}

#suggestions .showAll{
 	text-align: center;
  padding: 10px;
  position: fixed;
	left: 50%;
  top: 0%;
  transform: translateX(-50%; 50%);
/*   width: calc(100% - 20px); */
  z-index: 10;
  background-color: #fff;
}

@media(max-width: 1024px){
 	.mainBar{
   	padding: 15px; 
  }
  
  header .container{
   	padding: 0; 
  }
  
  .sub-menu-head{
   	display: flex!important; 
  }
  
  .nav{
   	position: fixed;
    top: 0;
    left: -120%;
    height: 100vh;
    width: 100%;
/*     padding: 25px; */
    transition: all .3s ease-in-out;
    background-color: #fff;
  }
  
  .nav .container{
   	padding: 25px; 
  }
  
  .nav hr{
   	color: #E6ECF1; 
    background-color: #E6ECF1;
    height: 1px; 
    border: 0;
    margin-left: 25px;
    margin-right: 25px;
    margin-bottom: 0;
  }
  
  .nav ul{
   	flex-direction: column;
    align-items: start;
  }
  
  .nav .nav-link{
   	font-size: 18px; 
  }
  
  .mega-menu ul li{
  	width: 100%;
	}
  
  .nav ul li a h4{
   	font-size: 18px;
    text-transform: none!important;
  }
  .nav ul li a span{
   	font-size: 18px; 
    text-transform: none!important;
  }
  .nav ul li a span, .nav ul li a i, #menu-close{
  	color: var(--color-contrast-higher);
  }
  
  #nav-container .container .text-primary{
   	font-size: 18px; 
  }
  
  #nav-container .container .text-primary i{
   	width: 30px; 
  }
  
  #nav-container .container #phonenumber{
    font-size: 18px!important; 
  }
  
  nav{
   padding: 0 25px!important; 
  }
  
  .breadcrumbs{
   	padding: 0!important; 
  }
  
  .mega-menu{
   	position: fixed;
    left: -120%;
    top: 0!important;
    height: 100vh;
    width: 100%;
    transition: all .3s ease-in-out;
    opacity: 1;
    pointer-events: auto;
  }
  
  .mega-menu ul {
   	max-width: 100%; 
  }
  
   .mega-menu ul li a h4{
    	text-decoration: underline;
     	font-weight: 400;
  	}
  
  .mega-menu-back{
    padding: 25px;
   	color: var(--color-contrast-higher);
    background-color: #F2F7FF;
    font-size: 18px;
    font-weight: bold;
  }
  
  .sub-menu-close{
   	font-size: 20px!important; 
    color: var(--color-contrast-higher);
  }
  
  .active-sub{
   	left: 0;
    z-index: 100;
  }
  
  .hero{
   z-index: 5; 
  }
  
  #store__notice{
   padding: 10px; 
  }
  
  .kiyoh{
   	width: 75%; 
  }
  .search-form{
  	width: 92%;
  }
  .search-form input{
    box-sizing:border-box;
    -moz-box-sizing:border-box;
    margin: 0 15px;
  }
  .mobile-usp ul{
   	display: flex; 
    flex-direction: row;
    padding: 15px 0;
  }
  .mobile-usp ul li{
   	width: 100vw; 
    opacity: 0;
    transition: opacity .3s ease-in-out;
    visibility: hidden;
    position: absolute;
    left: 100%;
    text-align: center;
  }
  .mobile-usp ul .active__usp{
   	opacity: 1!important; 
    visibility: visible!important;
    left: 0!important;
  }
}