*{
	font-family: 'Rubik', sans-serif;
}
.form_for_mobile .btn,.form_for_mobile .form-control{
	border-radius: 30px;
}
.form_for_mobile input,.form_for_mobile button{
	height: 50px;
}
.nav-item a:hover{
	color: red;
}
.category div:hover{
	background: orange!important;
	transform:scale(1.1);
	transition-duration: 0.5s;
}

.all_comment::-webkit-scrollbar,.manga_detail_description::-webkit-scrollbar {
    display: none;
}
.comment_form{
	display: none;
}
body {
    -webkit-user-select: none; /* Safari */
    -moz-user-select: none;    /* Firefox */
    -ms-user-select: none;     /* Internet Explorer/Edge */
    user-select: none;         /* Standard */
}


/* width */
::-webkit-scrollbar {
  width: 10px;
}
.mobile_footer{
	display: none;
}
 

/* Track */
::-webkit-scrollbar-track {
  box-shadow: inset 0 0 5px grey; 
  border-radius: 10px;
}
 
/* Handle */
::-webkit-scrollbar-thumb {
  background: red; 
  border-radius: 10px;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: #b30000; 
}
@media(min-width: 32em) and (max-width:60em){
    .navbar_for_mobile{
		display:none;
	}
	.desktop_footer{
		display: none;
		background: blue;
	}
	.mobile_footer{
		display: block;
		background: yellow;
	}
}

@media(max-width: 32em){
	.form_for_mobile{
		width: 100%;
	}
	.navbar_for_mobile{
		display:none;
	}
	.search_icon{
		display: inline;
	}
	.desktop_footer{
		display: none;
		background: blue;
	}
	.mobile_footer{
		display: block;
		background: yellow;
	}
}