.header.fixed .header_fix{
  position: fixed;
  opacity: 1;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 99;
  animation: headerani 0.5s ease-in-out;
}


.cart_item_scroll {
    max-height: calc(100vh - 50px);
    overflow-y: auto;
    overflow-x: hidden;
}
.nav-link.active{
  color:#ffc107 !important;
}
.header_search .form-control{
    height: 38px;
    border-radius: 17px;
    margin: 0 auto;
    background:#646464;
    border:1px solid #646464;
   
}
.header_search .form-control::placeholder{
    color:#fff;
}
/*.header_search .btn{*/
/*     position: absolute;*/
/*    right: 7%;*/
/*    height: 43px;*/
/*    border-radius: 0;*/
/*    font-size: 16px;*/
/*    color: white !important;*/
/*}*/
/*.header_search{*/
/*  position: relative;*/
/*  flex-grow: 1;*/
/*}*/
.bottom_nav{
  padding-top: 0;
  padding-bottom: 0;
}
.category_dropdown{
  width: 290px;
  padding: 15px;
  display: flex;
  align-items: center;
  position: relative;
}
.category_dropdown_box .categories{
  position: absolute;
  width: 100%;
  background: white;
  box-shadow: 0px 3px 12px 0px rgb(183 183 183);
  padding: 4px 0;
  list-style: none;
  z-index: 99;
  height: auto;
  visibility: hidden;
  opacity: 0;
  transition: 0.3s;
}
.category_dropdown_box:hover .categories{
    visibility: visible;
    opacity: 1;
}
.category_dropdown_box.shop_category_dropdown .categories{
  visibility: hidden;
  opacity: 0;
}
.category_dropdown_box.shop_category_dropdown:hover .categories{
  visibility: visible;
  opacity: 1;
}
.category_dropdown_box .categories li.nav-item{
  padding: 8px 12px;
  border-bottom: 1px solid rgb(230, 230, 230);
  position: relative;
}
.category_dropdown_box .categories > li.nav-item:hover{
  background: rgb(230, 230, 230);
}
.category_dropdown_box .categories li.nav-item:last-child{
  border-bottom: 0;
}
.category_dropdown_box .categories li.has_menu:after{
  font-family: "Font Awesome 6 Free"; 
  font-weight: 600; 
  content: "\f105";
  padding-right: 0.5rem;
  position: absolute;
  right: 10px;
  top: 5px;
}

.category_dropdown_box .categories li.has_menu .inner_menu{
  position: absolute;
  left: 95%;
  top: 0;
  list-style: none;
  background: white;
  padding: 0;
  width: 240px;
  box-shadow: 0px 3px 12px 0px rgb(183 183 183);
  visibility: hidden;
  opacity: 0;
  transition: 0.5s;
}
.category_dropdown_box .categories li.has_menu:hover .inner_menu{
  visibility: visible;
  opacity: 1;
  left: 100%;
}
.category_dropdown_box .categories li.has_menu .inner_menu li:hover a{
  color:#fec108;
}
.category_dropdown_box .categories li.has_menu .inner_menu li{
  border-bottom: 0;
}
.header.fixed .category_dropdown_box .categories{
  visibility: hidden;
  opacity: 0;
}
.header.fixed .category_dropdown_box:hover .categories{
  visibility: visible;
  opacity: 1;
}


.orange-color{
    color: #F26E24;
}
.orange-bg{
    background: #F26E24;
}
.orderBtnDesign:hover {
    background: #d93221;
}
.orange-bg:active
{
    background-color: #F26E24 !important; /* your orange */
    color: #fff !important;
    box-shadow: none !important; /* remove default focus shadow */
    opacity: 1 !important; /* remove fade effect */
}

.light-bg{
    background:#d2d6da;
}
.text-gray{
    color:#8c8181;
}
.light-bg:hover{
     background:#c6c7c8;
}

@keyframes headerani {
  0%{
    transform: translate3d(0, -100%, 0);
  }100%{
    transform: none;
    opacity: 1;
  }
}

.cart_sidebar{
  position: fixed;
  right: -320px;
  background: white;
  box-shadow: 0px 3px 12px 0px rgb(183 183 183);
  top: 0;
  max-height: 100vh;
  height: 100vh;
  z-index: 105;
  width: 320px;
  visibility: hidden;
  opacity: 1;
}
.cart_sidebar.active{
  visibility: visible;
  opacity: 1;
  right: 0;
  z-index: 99999;
}
.cart_sidebar .card-header{
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: white;
}
.cart_sidebar .empty_icon{
  font-size: 80px;
  opacity: 0.3;
}
.cart_sidebar .product{
  display: flex;
  margin-bottom: 10px;
  cursor: pointer;
}
.cart_sidebar .product:hover{
  background:  rgb(244 244 244);
}
.cart_sidebar .product .image img{
  width: 70px;
}
.overlay{
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100%;
  background: rgba(128, 128, 128, 0.5);
  z-index: 102;
  cursor: pointer;
  display: none;
}
.menu_sidebar{
  position: fixed;
  left: -300px;
  background: white;
  box-shadow: 0px 3px 12px 0px rgb(183 183 183);
  top: 0;
  max-height: 100vh;
  height: 100vh;
  z-index: 105;
  width: 300px;
  visibility: hidden;
  opacity: 1;
}
.menu_sidebar.active{
  visibility: visible;
  opacity: 1;
  left: 0;
}
.menu_sidebar .navbar-nav > li > a{
  padding: 10px 15px;
  border-bottom: 1px solid rgb(230, 230, 230);
  position: relative;
}
.menu_sidebar .navbar-nav > li.has_menu > a:after{
  font-family: "Font Awesome 6 Free"; 
  font-weight: 600; 
  content: "\f105";
  padding-right: 0.5rem;
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  padding: 10px 20px;
  background: transparent;
  border-left: 1px solid rgb(230, 230, 230);
  cursor: pointer;
  transition: 0.5s;
}
.menu_sidebar .navbar-nav li.has_menu .inner_menu{
  display: none;
  list-style: none;
  padding: 0;
  width: 100%;
  transition: none;
}
.menu_sidebar .navbar-nav li.has_menu .inner_menu .nav-item{
  border-bottom: 1px solid rgb(230, 230, 230);
  padding: 5px 20px;
}
.menu_sidebar .navbar-nav > li.has_menu.active > a:after{
  transform: rotate(90deg);
  /* background-color: #ffc107; */
  /* color: white; */
}

.sign_in{
  position: fixed;
  right: -350px;
  background: white;
  box-shadow: 0px 3px 12px 0px rgb(183 183 183);
  top: 0;
  max-height: 100vh;
  height: 100vh;
  z-index: 105;
  width: 350px;
  visibility: hidden;
  opacity: 1;
}
.sign_in.active{
  visibility: visible;
  opacity: 1;
  right: 0;
}
.sign_in .card-header{
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: white;
}
.sign_in .empty_icon{
  font-size: 80px;
  opacity: 0.3;
}
.sign_in .product{
  display: flex;
  margin-bottom: 10px;
  cursor: pointer;
}
.sign_in .product:hover{
  background:  rgb(244 244 244);
}
.sign_in .product .image img{
  width: 70px;
}
.passwordChange{
  position: relative;
}
.passwordChange .password_visible{
  position: absolute;
  top: 35px;
  right: 5px;
}


footer{
  background-color: rgb(28,36,49);
  padding: 5px 0;
  color: white;
}
footer .socials a{
  color: white;
}
footer .socials{
    float: left;
  margin-left: -45px;
}

@media (max-width: 991px) {
    footer .socials {
        text-align: center;
        float: none;
        margin-left: none;
    }
    
     .container-xl{
        width: 90% !important;
    }
    
    
}

@media (min-width: 320px) and (max-width: 576px) {
     .header_search .btn {
        right: 7px !important;
        font-size: 14px  !important;
        color: gray;
        top: -3px  !important;
    }
}
@media (min-width: 320px) and (max-width: 768px) {
    .top_socials {
        margin-left: 60px;
    }
    .copyRight{
        margin-bottom: 70px;
    }
    .container-xl{
        width: 100% !important;
    }
   
}