
/* 
    Created on : 23-Sep-2024, 6:11:49 PM
    Author     : goswami2
*/

.leftPanel .categories header h3 {
  background: #247BC2;
}
.leftPanel .categories .moduleBody {
  border-radius: 0 0 5px 5px;
}
.leftPanel .categories.mobileOpen .moduleBody {
  display: block;
}

@media only screen and (max-width: 480px) {
  .leftPanel .categories.module header h3 {
    content: "";
    background: white;
    border-radius: 5px;
    border: solid 2px #d5d5d5;
    color: #0e0f14;
    font-size: 16px;
    display: block;
  }
  .leftPanel .categories header h3:before {
    content: "";
    /*background-image: url(/assets/themes/ofabee/img/downbiggrayarrow.png);*/
    background-position: 50%;
    background-repeat: no-repeat;
    background-size: 15px;
    display: block;
    width: 30px;
    height: 30px;
    position: absolute;
    right: 26px;
    top: 12px;
  }
  .leftPanel .categories .moduleBody {
    display: none;
  }
  .leftPanel .categories.mobileOpen .moduleBody {
    display: block;
  }
  .leftPanel .categories.mobileOpen header h3:before {
    transform: rotate(180deg);
  }
}