/*my css*/
.nav-menu{
    /*font-size:16px;*/
    width:200px;
}
   
.nav-logo{
width:60px;
height:60px; 
border-radius: 10px;" 
}
.login-set{
font-size: 13px; 
color: #000; 
text-decoration: none; 
display: flex; 
align-items: center; 
width: 140px; 

}
.login-set:hover{
    color: #fff; 
}
.contact{
    width:127px !important;
}
.login-icon{
color: #000 !important;
font-size: 32px !important;
margin-right: 10px !important;
}
/*my css*/



.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: 42px;
    width: 84%;
    border-radius: 21px;
    margin: 0 auto;
    /*border-top-right-radius: 0px;*/
    /*border-bottom-right-radius: 0px;*/
}
.header_search .btn{
     position: absolute;
    right: 9%;
    height: 35px;
    border-radius: 50%;
    /*font-size: 16px;*/
    top:8%;
    color: white;
    width:50px;
}
.header_search{
  position: relative;
  flex-grow: 1;
}
.bottom_nav{
  padding-top: 0;
  padding-bottom: 0;
}
.category_dropdown{
  padding: 15px;
  display: flex;
  align-items: center;
  position: relative;
  cursor: pointer;
}
.categories .dp_content{
      width: 590px;
}
.right-menu{
     width: 200px;
}
.category_dropdown_box .categories{
  position: absolute;
  width: 100%;
  background: transparent;
  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 .categories .main_menu_content{
    background-color: white;
    box-shadow: 0 0 1px gray;
    display: flex;
}

.category_dropdown_box .categories .main_menu_content .left_content {
    max-width: 300px;
    border-right: 1px solid #80808024;
    list-style: none;
    width: 200px;
    min-width: 200px;
    padding: 0;
}
.category_dropdown_box .categories .main_menu_content .right_content{
    background-color: white;
    box-shadow: 0 0 1px gray;
    flex-grow: 1;
}

.category_dropdown_box .categories .main_menu_content .right_content .cat_item{
    width: 130px;
    min-width: 130px;
    max-width: 130px;
    z-index: 999;
    text-align: center;
    font-size: 15px;
    color: gray;
    margin-bottom: 15px;
}
.category_dropdown_box .categories .main_menu_content .right_content .cat_item a{
    font-size: 14px;
    color: gray;
}
.category_dropdown_box .categories .main_menu_content .right_content .cat_item img{
    aspect-ratio: 1/1;
    width: 100%;
    margin-bottom: 10px;
}

.category_dropdown_box:hover .categories{
    visibility: visible;
    opacity: 1;
}

.category_dropdown_box .category_dropdown i{
    transform: 0;
    transition: 0.3s;
}
.category_dropdown_box:hover .category_dropdown i{
    transform: rotate(180deg);
}
.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;
}

.light-green-bg{
    background-color:#0a8800;
}
.light-green-color{
    color:#0a8800;
}

.orange-color{
    color: #f14705;
}
.orange-bg{
    /*background: #10a2e5;*/
    background: #ff913b;
}

@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{
    font-size:10px !important;
  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;
}
*, ::after, ::before {
    box-sizing: border-box;
}


.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;
}
.d-sm-none{
    display:block!important;
}

@media (max-width: 991px) {
    footer .socials {
        text-align: center;
        float: none;
        margin-left: none;
    }
    
    
}

@media (min-width: 320px) and (max-width: 768px) {
    .top_socials {
        margin-left: 60px;
    }
    /*.copyRight{*/
    /*    margin-bottom: 70px;*/
    /*}*/
    .d-sm-none{
        display:none !important;
    }
    .navbar-brand{
        display:block!important;
    }
    .header_search .btn{
     position: absolute;
    right: 9%;
    height: 35px;
    border-radius: 50%;
    /*font-size: 16px;*/
    top:8%;
    color: #000 !important;
    width:50px;
}
    
}