html {
	scroll-behavior: smooth;
}
body {
	margin: 0 auto;
	box-sizing: border-box;
	/* font-family: 'Biryani', sans-serif; */
	font-family: "Noto Sans", sans-serif;
}
* {
	/*border: 1px solid red;*/
}
/* Colors */
.bg-very-light {
	background-color: #fbfbfb;
}
.text-light-success {
	color: #00ce68;
}
.bg-light-success {
	background-color: #00ce68;
}
.bg-custom-info {
	background-color: #00bcd4;
}
/* End of colors */

.category-card {
	min-width: 250px;
	min-height: 200px;
}
/* Dirty fix for font size*/
.category-card .display-4 {
	font-size: 2.5rem;
}

.border-shadow {
	box-shadow: 0 0 5px 1px lightgrey;
}

/* Single post Page */
.post-table-wrapper .table tr,
.post-table-wrapper .table tr th {
	padding: 20px !important;
}
.post-table-wrapper .table tr:first-of-type,
.post-table-wrapper .table tr:first-of-type th,
.post-table-wrapper .table tr:first-of-type td {
	border-top: none;
}
table tr th {
	color: #32557d;
	font-size: 16px;
	font-weight: 400;
}
table tr th i {
	color: #32557d;
	min-width: 36px;
	font-size: 2em;
	margin-right: 10px;
}

.custom-list-group {
	padding: 0;
	list-style: none;
}
.custom-list-group .list-item {
	margin-bottom: 15px;
}

.spinner-wrapper {
	text-align: center;
	padding: 20px 0;
}
.spinner-wrapper .spinner-border {
	height: 150px;
	width: 150px;
}
.spinner-wrapper .spinner-grow {
	height: 150px;
	width: 150px;
}

.arrow_box {
	position: relative;
	background: #fff;
	border: 1.9px solid #28a745;
	display: block;
	width: 100%;
}
.arrow_box:after,
.arrow_box:before {
	right: 100%;
	top: 50%;
	border: solid transparent;
	content: " ";
	height: 0;
	width: 0;
	position: absolute;
	pointer-events: none;
}

.arrow_box:after {
	border-color: rgba(255, 255, 255, 0);
	border-right-color: #fff;
	border-width: 20px;
	margin-top: -20px;
}
.arrow_box:before {
	border-color: rgba(40, 167, 69, 0);
	border-right-color: #28a745;
	border-width: 23px;
	margin-top: -23px;
}
