a:hover{
    text-decoration: none !important;
} 
   
.main_menu{  
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 20;
    /* background-color: rgba(255, 255, 255, 0.9); */
    background-color: white;
    -webkit-transition: background-color 0.4s ease;
    -moz-transition: background-color 0.4s ease;
    -o-transition: background-color 0.4s ease;
    transition: background-color 0.4s ease;
}

.menu_logo{
    max-width:200px;
}

.menu_links{
    cursor: pointer !important;
    color: var(--darkgrey);
    border-top-color: var(--verydarkgrey);/*dropdown_arrow color*/
    padding: 5px 12px;
}
.menu_links_icon{
    font-size: 25px;
}

.menu_links{
    color: var(--darkgrey) !important;
}

.menu_links:hover{
    color: var(--darkgrey) !important;
}

.main_menu.sticky {
    border-bottom: solid 1px var(--lightgrey);
}


.main_menu.sticky .menu_links{
    color: var(--verydarkgrey) !important;
}             
 
.main_menu.sticky .menu_links:hover{
    color: var(--colorfirst) !important;
}
          
.menu_items_container{    
    display: flex;  
    flex-direction: column;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}
    
.sticky{
    background-color: var(--white);
}


.menu_logo{
    width: 0;
    height: 0;
    opacity: 0;

    transition: 0.3s all ease-in-out;
}
.menu_logo_home{
    width: 135px;
    height: auto;
    opacity: 1;
    margin-top: 15px;

    transition: 0.3s all ease-in-out;
}
.sticky .menu_items_container_bottom{
    align-items: flex-end;
}
.sticky .menu_logo{
    width: 90px;
    height: auto;
    opacity: 1;
}
.sticky .menu_logo_home{
    width: 0 !important;
    height: 0 !important;
    opacity: 0;
}

.sticky .menu_items_container_topo{
    display: none !important;
}
.sticky .menu_links{
    color: var(--black);
}

.sticky .dropdown_arrow::after{
    border-top-color: var(--black);
}

@media (max-width: 575px) {
    .main_menu {
        display: none;
    }
    .mHeight_filler {
        display: none !important;
    }
}   


.dropdown_arrow::after{
  content: '';
  width: 0; 
  height: 0; 
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 5px solid;
  border-top-color: white;
  margin-left: 10px;
}

.submenu_links{
    padding: 5px 10px !important;
    color: var(--black) !important;
}
.submenu_links:not(:last-child){
    border-bottom: solid 1px var(--lightgrey);
}

.dropdown:hover .dropdown-content{
  opacity: 1 !important;
  /* transform: scaleY(1); */
  transform: translate(-50%, 0%) scaleY(1);
  pointer-events: all;
}

.dropdown-content{
    display: block !important;
    /* transform: scaleY(0); */
    transform: translate(-50%, 0%) scaleY(0);
    left: 79%;
    transform-origin: top;
    opacity: 0;
    transition: all 0.3s ease-in-out;
    background-color: var(--verylightgrey);
    pointer-events: none;
    min-width: 220px !important;
    max-height: 70vh;
    overflow: scroll;
    scrollbar-width: none;
}

.menu_desktop_logo{
    max-width: 200px;
    margin: 15px 0;
}

.menuIconsCont .menuIcon{
  transition: all0.3s ease-in-out;
  padding: 8px 7px;
  font-size: 27px;
}
.menuIconsCont a:not(:last-child){
  border-right: solid 1px var(--grey);
}

.dropdownMenu{
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    max-height: 100vh !important;
    transform-origin: top;
    z-index: -1;

    transition: all 0.3s ease-in-out;
    transform: scaleY(0);
}

.menuShopBtn:hover .dropdownMenu{
    transform: scaleY(1) !important;
}

.menuSubcatsCont{
    position: absolute;
}

.menuSubcatsCont {
    webkit-animation-duration: 200ms;
    animation-duration: 200ms
}


.dropdownMenuCategs{
    z-index: 3;
    padding-right: 120px !important;
}
.dropdownMenuSubCategs{
    max-height: 100% !important;
    overflow: hidden !important;
    z-index: 2;
}

/* .dropdownMenuPadding{
    padding: 30px 0 !important;
} */

.menuProductsTitle,
.dropdownMenuSubSubCategs,
.menuSubcatsCont,/*added*/
.dropdownMenuCategs{
/* .dropdownMenuSubCategs{ */
    padding: 80px;
    padding-left: 80px !important;
}



.menuTopMenuLink{
    color: var(--verydarkgrey) !important;
    transition: 0.2s ease-in-out;
}
.menuSubShopLink,
.prodTopCateg,
.prodSubSubCateg,
.prodSubCateg{
    color: var(--white) !important;
    transition: 0.2s ease-in-out;
    padding: 10px 0;
    transform-origin: left center;
}
.menuSubShopLink:hover{
    color: var(--verydarkgrey) !important;
    /* text-decoration: underline !important; */
}
.prodTopCateg.hover,
.prodTopCateg:hover,
.prodSubSubCateg:hover,
.prodSubSubCateg.hover,
.prodSubCateg.hover,
.prodSubCateg:hover{
    /* text-decoration: underline !important; */
    color: white !important;
}

.hiddenCont{
    display: none !important;
}



/* Underline From Left custom */
.hvr-underline-from-left-c {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px transparent;
  position: relative;
  overflow: hidden;
}
.hvr-underline-from-left-c:before {
  content: "";
  position: absolute;
  z-index: -1;
  left: 0;
  right: 100%;
  bottom: 0;
  background: white;
  height: 1px;
  -webkit-transition-property: right;
  transition-property: right;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}

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

.menuSubShopLink.hvr-underline-from-left-c:before{
  background: var(--verydarkgrey);
}

/* .menuSubcatsCont, 
.dropdownMenuCategs{
    border-right: solid 1px var(--grey);
} */
/* .dropdownMenuSubCategs{
    border-right: solid 1px var(--grey);
} */

#desktopMenuSearchBtn{
    cursor: pointer;
}
#desktopMenuSearchBtnCont{
    position: relative;
}

#desktopMenuSearchBtnCont:hover .desktopMenuSearchCont{
    transform: scaleY(1);
}

.desktopMenuSearchCont{
    position: absolute;
    top: 100%;
    right: 0;
    transform-origin: top;

    transition: all 0.3s ease-in-out;
    transform: scaleY(0);
}

#desktopMenuSearchTextbox{
    border: solid 1px var(--darkgrey);
    border-radius: 0px;
    padding: 3px 8px;
}


.sideMenuSocialIcon{
    transition: all 0.3s ease-in-out;
}

.sideMenuSocialIcon:hover{
    color: var(--colorfirst) !important;
}

.menuCoverBgColor{
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: var(--colorfirst);
    opacity: 0.95;
}