@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

* {
  box-sizing: border-box;
}
body {
  font-family: 'Montserrat', sans-serif;
  color: #0c0c0c;
  background-color: #ffffff;
  overflow-x: hidden;
}
ul{
  list-style: none;
}
.layout_padding {
  padding: 70px 0;
}

.layout_padding2 {
  padding: 75px 0;
}

.layout_padding2-top {
  padding-top: 75px;
}

.layout_padding2-bottom {
  padding-bottom: 75px;
}

.layout_padding-top {
  padding-top: 90px;
}

.layout_padding-bottom {
  padding-bottom: 90px;
}

h1,
h2 {
  font-family: 'Playfair Display', serif;
}

.heading_container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.shop_by_section{
  width: 100%;
  height: auto;
  background: #FFFFFF;
  border: 1px solid #002C3E30;
  margin-bottom: 20px;
}
.shop_by_section .shop_by_title{
  width: 100%;
  height: auto;
  background: #F7444E;
  border: 1px solid #F7444E;
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.shop_by_section .shop_by_title h4{
  font-size: 16px;
  color: #FFFFFF !important;
  margin-bottom: 0;
}


.shop_by_section .shop_by_category ul{
  min-height: 200px;
  height: calc( 100vh - 400px);
  max-height: calc( 100vh - 400px);
  overflow-y: auto;
  margin: 0;
  padding: 0;
}
.shop_by_section .shop_by_category ul li{
  padding: 4px 0;
}
.shop_by_section .shop_by_category ul li .custom_checkbox input{
  width: 18px;
  height: 18px;  
}
.shop_by_section .shop_by_category ul li .custom_checkbox label{
  font-size: 14px;
  font-weight: 500;
  padding-left: 4px;
}

.shop_by_section .shop_by_gram{
  
}
.shop_by_section .shop_by_gram .shop_by_gram_range{
  display: flex;
  justify-content: space-between;
}
.shop_by_section .shop_by_gram .shop_by_gram_range div{
  width: 47%;
  
}
.shop_by_section .shop_by_gram .shop_by_gram_range label{
  font-size: 14px;
  margin-bottom: 0;
}
.shop_by_section .shop_by_gram .btn-box{
  width: 100% !important;
  margin-top: 0 !important;
}
.shop_by_section .shop_by_gram .btn-box a{
  width: 100% !important;
  text-align: center;
}


.dd_arrow{
  display: none;
  width: 24px;
  height: 24px;
  line-height: 24px;
  align-items: center;
  color: #FFFFFF;
}
/*--------------------- New shop by Section -----------------------*/
.col_shop_by_mobile{
  padding-top: 70px;
}
.product_column_header{
  padding: 30px 0 16px 0;
}
.product_column_header h5{
  margin: 0;
}
.shop_by_section .shop_by_category h6, .shop_by_section .shop_by_gram h6{
  font-size: 14px;
  font-weight: 600;
  padding-bottom: 6px;
  padding: 8px 16px !important;
}
.shop_by_section .shop_by_category{
  padding: 10px 0;
  border-bottom: 1px solid #002C3E30;
}
.shop_by_category_ul{

}
.shop_by_category_li{
  height: 50px;
  padding-left: 16px !important;
  padding-right: 16px !important;
  display: flex;
  align-items: center;
  cursor: pointer;
}
.shop_by_category_li:hover{
  background: #0c0c0c20;
}
.shop_by_category_li a{
  
}
.shop_by_category_li a img{
  min-width: 30px;
  width: auto;
  max-width: 30px;
  height: auto;
  max-height: 30px;
}
.shop_by_category_li a span{
  font-size: 14px;
  font-weight: 500;
  color: #0c0c0c;
}
.shop_by_category_li_active{
  background: #e2f5fb;
  /* padding: ; */
}
.shop_by_section .shop_by_category .shop_by_category_ul {
  min-height: 200px !important;
  height: calc(100vh - 240px) !important;
  max-height: calc(100vh - 240px) !important;
  overflow-y: auto;
  margin: 0;
  padding: 0;
}

/* ----------------------- New product UI 28-08-2024 ------------------------------ */

.category-container {
  display: flex; 
  overflow: hidden;
  padding-top: 100px;
}

.left-menu {
  width: 20%;
  background-color: white;
  border-right: 1px solid #002C3E30;
  overflow-y: auto;
  padding-top: 35px;
}
.left-menu:first-child{
  padding-top: 0;
    
}
.left-menu ul {
  list-style-type: none;
  padding: 0;
}

.left-menu li {
  padding: 15px 20px;
  border-bottom: 1px solid #ddd;
  cursor: pointer;
  text-align: left;
  display: flex;
  align-items: center;
  position: relative;
}

.left-menu li img {
  width: 25px;
  margin-right: 10px;
}

.left-menu li.active {
  background-color: #e2f5fb;
  font-weight: bold;
}
.left-menu li span{
  font-size: 14px;
}
.left-menu li.active span{
  color: #0c0c0c;
}
.right-content {
  width: 90%;
  background-color: white;
  padding: 15px;
  overflow-y: auto;
  overflow-x: hidden;
  animation: fadeIn 0.3s ease;
}

.category-list {
  display: none;
}

.category-list h2 {
  font-size: 18px;
  margin-bottom: 10px;
}

.sub-category {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid #ddd;
  cursor: pointer;
}

.sub-category img {
  width: 30px;
  height: 30px;
  margin-right: 15px;
}

.sub-list {
  display: none;
  padding-left: 40px;
  background-color: #f9f9f9;
  margin-bottom: 10px;
}

.sub-list p {
  padding: 8px 0;
  border-bottom: 1px solid #ddd;
  margin: 0;
}

.expand {
  font-size: 18px;
  cursor: pointer;
}


.subCat {
  /*position: absolute;*/
  /*top: 50%;*/
  /*right: 0;*/
}