	
   .m_cat
   {
      box-shadow: 1px 2px 5px 2px #888888;  
   }
   .mcat::-webkit-scrollbar { 
    display: none;  
}
   .mob-header
   {
       width:100%;
       height:57px;
       background-color:black;
       position:fixed;
       margin-top:-10px;
       margin-left:-8px;
   }
   
   .sidenav {
  height: 100%;
  width: 0;
  position: fixed;
  z-index: 1;
  top: 0;
  left: 0;
  background-color: White;
  overflow-x: hidden;
  transition: 0.1s;
  padding-top: 0px;
  border-right:1px solid black;
 
}

.sidenav a {
  padding-top:20px;
  padding-right:32px;
  padding-left:10px;
  padding-bottom:10px;
  text-decoration: none;
  font-size: 15px;
  color: #818181;
  display: block;
  transition: 0.3s;
   border-bottom:1px solid #7f7f7e;
}

.sidenav a:hover {
  color: #f1f1f1;
}

.sidenav .closebtn {
  position: absolute;
  top: 0;
  right: 25px;
  font-size: 36px;
  margin-left: 50px;
}
@media screen and (max-height: 450px) {
  .sidenav {padding-top: 15px;}
  .sidenav a {font-size: 18px;}
}

.loader {
    position: fixed;
    z-index: 99;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    
    display: flex;
    
}

.loader > img {
    width: 100%;
    height:100%;
}
.centered {
  position: absolute;
  top: 30%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.loader.hidden {
    animation: fadeOut 2s;
    animation-fill-mode: forwards;
}

@keyframes fadeOut {
    100% {
        opacity: 0;
        visibility: hidden;
    }
}

.thumb {
    height: 100px;
    border: 1px solid black;
    margin: 10px;
}