*{
    user-select:none;
}
.top_nav{
  height: 50px;
  background: linear-gradient(264deg, rgba(69,137,235,1) 0%, rgba(41,134,203,1) 100%);
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
}
.top_nav i{
  color: #fff;
  font-size: 30px;
  position: absolute;
  top: 50%;
  left:10px;
  transform: translateY(-50%);
  padding:5px 20px 5px 5px;
  cursor: pointer;
}
.top_nav p{
  color: #fff;
}
/* category========================= */
.cat_div_2{
  margin-top: 20px;
  display: flex;
  width: 100%;
  overflow-x: auto;
  align-items: center;
}
.cat_div_2::-webkit-scrollbar-track
{
	-webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
	background-color: #F5F5F5;
	border-radius: 10px;
}

.cat_div_2::-webkit-scrollbar
{
	width: 10px;
  height: 4px;
	background-color: #F5F5F5;
}

.cat_div_2::-webkit-scrollbar-thumb
{
	border-radius: 10px;
	background-image: -webkit-gradient(linear,
									   left bottom,
									   left top,
									   color-stop(0.44, rgb(122,153,217)),
									   color-stop(0.72, rgb(73,125,189)),
									   color-stop(0.86, rgb(28,58,148)));
}
.cat_div_2 p{
  font-size: 12px;
  height:30px;
  align-items: center;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 14px;
  width: 55px;
}
.cat_div_2 .cat_box{
  background:#e9eff5;
  padding: 10px 20px;
  text-align: center;
  margin: 10px;
  border-radius: 10px;
  width: 200px;
  cursor: pointer;
}
.cat_box_active{
  background:linear-gradient(264deg, rgba(69,137,235,1) 0%, rgba(41,134,203,1) 100%)!important;
  color: #fff;
}
.cat_div_2 .cat_box img{
  height: 30px;
  width:30px;
}

/* sub category ====================== */
.sub_cat_main p{
  margin: 0;
}
.sub_cat_main .sub_cat_head{
  text-align: center;
  font-size: 14px;
  margin: 10px auto;
  color: rgba(41,134,203,1);
}
.sub_cat_box{
  width: 95%;
  display: grid;
  grid-template-columns:auto auto;
  align-items: center;
  padding: 5px 10px;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  margin: auto;
  border-radius: 8px;
  margin-top: 10px;
}
.sub_cat_box img{
  width: 100px;
  height: 70px;
  border-radius: 5px;
}
.sub_cat_box_content{
  padding:10px;

}
.sub_cat_box_content span{
  display: block;
}
.sub_cat_box_content p{
  font-size: 14px;
  font-weight: bold;
}
.sub_cat_box_content span:nth-child(2){
  font-size: 14px;
  line-height: 14px;
}
.sub_cat_box_content span:nth-child(3){
  font-size: 14px;
  color: rgba(41,134,203,1);
  text-decoration: underline;
  cursor: pointer;
  margin-top: 2px;
}
