.show {display: block;transition:1s;}
.dropdown-contents {
  margin-bottom: 5px;
  transition:1s;
  display: none;
  position: absolute;
  right: 0;
  top: 58px;
  background-color: #000;
  min-width: 100%;
  height: 70px;
  /* overflow: hidden; */
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: auto;
}

.dropdown-contents div {
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    z-index: auto;
    /* height: 30px; */
}


::-webkit-scrollbar {
    width: 0px;  /* remove scrollbar space */
    background: transparent;  /* optional: just make scrollbar invisible */
}
/* optional: show position indicator in red */
::-webkit-scrollbar-thumb {
    background: #FF0000;
}
ul { list-style: none; }
a { text-decoration: none; color: black;}
body {
   font-family: 'Dosis', sans-serif;
 
}
@media screen and (max-width: 600px) {
  div.menu {
    width:100%;
  }
}

@media screen and (max-width: 768px) {
  .icon-color {
   color:white;
    font-size: 18px;
    margin-right:10px;
    padding:0px;
  }
}


@media screen and (max-width: 768px) {
  div.mobile-logo {
    width: 40px;
    margin-top: 10px;
    margin-left: 65px;
    bottom: -10px;
  }
  div.burger {width: 40px;margin-top: 5px;margin-left: 15px;position: absolute;}
}
@media screen and (max-width: 768px) {
  div #top-links {
    margin:6px 10px 0px 0px;
  }
}
@media screen and (max-width: 380px) {
  div #top-links {
    margin:6px 0px 0px 0px;
  }
}
@media screen and (max-width: 370px) {
  div.mobile-logo {
    width:70px;
    margin-top:15px;
  }
}
#top-links{
      margin:6px 20px 0px 0px;
    }
#top{
  padding:0px;

}

.menu ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
  list-style-image: none;
}

.menu li {
  display: block;
  padding: 15px 0 15px 0;
  border-bottom: #1c7317 1px solid;
}

.menu ul li a {
  text-decoration: none;
  margin: 0px;
  color: #fff;
  font-size: 15px;
  
}

.menu ul li a:hover {
  color: #fff;
  text-decoration: none;
}

.menu a {
  text-decoration: none;
  color: white;
}

.menu a:hover {
  text-decoration: none;
  color: white;
}
#menu-wrapper {
    /* overflow: hidden; */
    max-width: 100%;
    cursor: pointer;
    background: #000;
    height: 60px;
}


#menu-wrapper #hamburger-menu {
    position: relative;
    width: 25px;
    height: 20px;
    margin: 15px;
    float:left;
}


#menu-wrapper #hamburger-menu span {
    opacity: 1;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
    left: 0;
    display: block;
    width: 100%;
    height: 2px;
    border-radius: 10px;
    color: black;
    background-color: white;
    position: absolute;
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: .4s ease-in-out;
    transition: .4s ease-in-out;
}

#menu-wrapper #hamburger-menu span:nth-child(1) {
    top: 0;
}
#menu-wrapper #hamburger-menu span:nth-child(2) {
    top: 9px;
}
#menu-wrapper #hamburger-menu span:nth-child(3) {
    top: 18px;
}
#menu-wrapper #hamburger-menu.open span:nth-child(1) {
    top: 9px;
    -webkit-transform: rotate(135deg);
    transform: rotate(135deg);
}
#menu-wrapper #hamburger-menu.open span:nth-child(2) {
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    left: -60px;
}
#menu-wrapper #hamburger-menu.open span:nth-child(3) {
    top: 9px;
    -webkit-transform: rotate(-135deg);
    transform: rotate(-135deg);
}

#menu-container .menu-list .menu-submenu {
    padding-top: 20px;
    padding-bottom: 20px;
}

#menu-container .menu-list li.accordion-toggle, #menu-container .menu-list .menu-login {
    font-size: 16px;
    padding: 20px;
    text-transform: uppercase;
    border-top: 1px solid #dbdcd2;
}
#menu-container .menu-list li:first-of-type {
    border-top: 0;

}

#menu-container .menu-list li.sub-category {
    border-top: 0;
   padding:10px;
}

.accordion-toggle, .accordion-content {
    cursor: pointer;
    font-size: 16px;
    position: relative;
    letter-spacing: 1px;
}

  .accordion-content {
    display: none;
}

.accordion-toggle a:before, .accordion-toggle a:after {
    content: '';
    display: block;
    position: absolute;
    top: 50%;
    right: 30px;
    width: 15px;
    height: 2px;
    margin-top: -1px;
    background-color: #5a5858;
    -webkit-transform-origin: 50% 50%;
    -ms-transform-origin: 50% 50%;
    transform-origin: 50% 50%;
    -webkit-transition: all 0.3s;
    transition: all 0.3s ease-out;
}

.accordion-toggle a:before {
    -webkit-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    transform: rotate(-90deg);
    opacity: 1;
    z-index: 2;
}

.accordion-toggle a.active:before {
    -webkit-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg);
    background: #fff !important;
}

.accordion-toggle a.active:after {
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
    background: #fff !important;
    opacity: 0;
}



.sub-category a:before{
    content: '';
    display: inline-block;
    position: relative;
    
    left: -3%;
    margin-bottom: 1%;
    width: 15px;
    height: 2px;
    margin-top: -1px;
    background-color: #5a5858;
    -webkit-transform-origin: 50% 50%;
    -ms-transform-origin: 50% 50%;
    transform-origin: 50% 50%;
    -webkit-transition: all 0.3s;
    transition: all 0.3s ease-out;
}

.toggle-single{font-size: 16px;
    padding: 20px;
    text-transform: uppercase;
    border-top: 1px solid #dbdcd2;}
    #top-links{
      margin:6px 20px 0px 0px;
    }
    .icon-color{
    color:white;
    font-size: 32px!important;
    margin-right:12px;
    padding:0px;
    position: relative;
    top: -5px;
    }
   
    .box{
       float:right;
        overflow: hidden;
        
    }
    .customcss{
      display:block;
    }
   
   .gly{
      position: relative;
      top: -35px!important;
      right: 10px;
      display: inline-block;
      font-family: 'Glyphicons Halflings';
      font-style: normal;
      font-weight: 400;
      line-height: 1;
      -webkit-font-smoothing: antialiased;
}

.dropdown-content {
    display: none;
    position: absolute;
    right:1px;
    top:50px;
    background-color: #ffff;
    min-width: 160px;
  /*  overflow: hidden; */
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 666666666666;
}

.dropdown-content a {
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
}
.dropdown-overlays{
  position:absolute;
  top:56px;
  right:0px;
  bottom:0px;
  left:0px;
  background: rgba(0,0,0,.35);
  z-index:23;
  display:none;
 overflow-x: hidden;
}
.dropdown-overlay{
  position:absolute;
  top:56px;
  right:0px;
  bottom:0px;
  left:0px;
 
  overflow-y: scroll;
  background: rgba(0,0,0,.35);
  z-index:22;
  overflow-x: hidden;

}
.menu-container{
  position:fixed;
  top:0px;
  left:0px;
  right:0px;
  z-index:99999999999;
}
#mobile-cart-count{
 position: relative;
 top: -15px;
 right: 12px;
 color: white;
 /* border:solid 1px white; */
 padding: 2px 4px 2px 4px;
 /* border-radius: 12px; */
}

.left-side-menu{height:100%!important; position:fixed;top:63px;left:0px;}
.show {display: block;}