ƒ/*
Theme Name: Bellop HUB
Theme URI: https://hub.bellop.io/
Version: 1.0
Author: Bellop
Author URI: https://bellop.io
*/

:root{
	--bs-primary: #7367f0;

    --bs-black: #000000;
    --bs-dark: #1E2129;
    --bs-white: #ffffff;
    --bs-gray: #78829D;

    --bs-dark-rgb: 30,33,41;

    --bs-border-color: #F1F1F4;
    --bs-border-color-translucent: rgba(0, 0, 0, 0.175);
    --bs-border-radius-pill: 50rem;

    --bs-box-shadow: 0;
    --bs-box-shadow-sm: 0 0.1rem 1rem 0.25rem rgba(0, 0, 0, 0.05);
    --bs-box-shadow-lg: 0 1rem 2rem 1rem rgba(0, 0, 0, 0.1);
    --bs-box-shadow-inset: inset 0 1px 2px rgba(0, 0, 0, 0.075);

    --bs-form-valid-color: #00B2FF;
    --bs-form-valid-border-color: #00B2FF;
    --bs-form-invalid-color: #F1416C;
    --bs-form-invalid-border-color: #F1416C
}

html{
	scroll-behavior: smooth;
}

body{
	color: #5d596c;
	font-size: 15px;
	line-height: 1.6em;
	font-family: 'Roboto', sans-serif;
	background: #f5f5f5;
	font-smoothing: antialiased;
	-webkit-font-smoothing: antialiased;
}

b, strong{
	font-weight: 600;
}

a,
a:hover{
	color: inherit;
	text-decoration: none;
	transition: 0.3s all;
}

a:hover,
a:active{
	color: #7367f0;
}

h1, h2, h3, h4, h5, h6{
	margin: 0 0 0.5em;
	margin: 0;
	font-weight: 600;
	line-height: 1.4em;
	font-family: 'Roboto', sans-serif
}


h1 { font-size: 30px; }
h2 { font-size: 28px; }
h3 { font-size: 24px; }
h4 { font-size: 20px; }
h5 { font-size: 18px; }
h6 { font-size: 16px; }

@media screen and (min-width: 992px) {
	h1 { font-size: 34px; }
	h2 { font-size: 30px; }
	h3 { font-size: 26px; }
	h4 { font-size: 22px; }
	h5 { font-size: 20px; }
	h6 { font-size: 18px; }
}

b, strong {
    font-weight: 700;
}

hr{
	border-color: rgba(0,0,0,0.5);
}


/* Framework */

.main{
	position: relative;
	width: 100%;
	min-height: 100vh;
	min-height: calc(var(--vh, 1vh) * 100);
	overflow: hidden;
}

.container,
.container-fluid{
	max-width: 100%;
	padding-left: 15px;
	padding-right: 15px;
	transition: 0.3s all;
}

.wow{
	visibility: hidden;
}
.overh{
	overflow: hidden;
}
.overh:before{
	content: '';
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0,0,0,0.3);
	z-index: 100;
	transition: 0.3s all ease-in-out;
}

@media screen and (min-width: 1200px){
	.main{
		padding-left: 260px;
	}
	.main .container{
		max-width: 1440px;
		margin-left: 0;
	}
	.main .container-fluid{
		max-width: 1920px;
		margin-left: 0;
	}

}
@media screen and (min-width: 1600px){
	.main .container,
	.main .container-fluid{
		padding-left: 25px;
		padding-right: 25px;
	}
}


/* Framework */

.section{
	padding: 15px 0;
}

@media screen and (min-width: 1600px){
	.section{
		padding: 40px 0;
	}
}

/* Columns */

@media screen and (min-width: 992px){
	.col-lg-5-2{
		-ms-flex: 0 0 20%;
	    flex: 0 0 20%;
	    max-width: 20%;
	}
}

/* Alert */

/* Table */

.table{
	font-size: 15px;
}
.table tr th{
	font-size: 15px;
	font-weight: 500;
	text-transform: uppercase;
}
.table tr td{
	vertical-align: middle;
	padding: 10px 10px;
}
.table>:not(caption)>*>*{
	border-color: rgba(0,0,0,0.05);
}


/* Colors */

.text-primary{
	--bs-primary-rgb: 104,124,254;
}

/* Buttons */

.btn{
	padding-left: 1em;
	padding-right: 1em;
	border-radius: 25px;
}
.btn-loading:before{
	content: '';
    display: inline-block;
    vertical-align: text-bottom;
    margin-right: 10px;
    width: 20px;
    height: 20px;
    border: 2px solid #fff;
    border-right-color: transparent;
    border-radius: 50%;
    -webkit-animation: spinner-border .75s linear infinite;
    animation: spinner-border .75s linear infinite;
}

.btn-primary {
    --bs-btn-color: #fff;
    --bs-btn-bg: #687cfe;
    --bs-btn-border-color: #687cfe;
    --bs-btn-hover-color: #fff;
    --bs-btn-hover-bg: #5869d8;
    --bs-btn-hover-border-color: #5869d8;
    --bs-btn-focus-shadow-rgb: 49,132,253;
    --bs-btn-active-color: #fff;
    --bs-btn-active-bg: #5869d8;
    --bs-btn-active-border-color: #5869d8;
    --bs-btn-disabled-color: #fff;
    --bs-btn-disabled-bg: #687cfe;
    --bs-btn-disabled-border-color: #687cfe
}



/* Form */

label{
	font-weight: 500;
	color: #111;
	margin-bottom: 0.5em;
}

.required{
	color: #ff0000;
}

.form-label{
	margin-bottom: .25em;
}
.form-select,
.form-control{
	font-weight: 400;
    font-size: 15px;
    line-height: 1.7em;
    color: #333;
    background-color: #f5f5f5;
}
.form-select:focus,
.form-control:focus{
	box-shadow: none;
	border-color: #7367f0;
	background-color: #f5f5f5;
	color: #333;
}
.form-select:placeholder,
.form-control:placeholder{
	color: #555;
    font-weight: 500;
}

.repeater-container .repeater-item a[data-repeater-remove]{
	display: block;
	margin: 0 auto;
	width: 30px;
	height: 30px;
	font-size: 18px;
	line-height: 30px;
	text-align: center;
}

/* Input Checkbox */

.form-check .form-check-input{
	width: 18px;
	height: 18px;
	border-radius: 50px;
}

input[type="checkbox"]:focus,
input[type="radio"]:focus{

}

input[type="checkbox"] ~ label,
input[type="checkbox"] ~ span,
input[type="radio"] ~ label,
input[type="radio"] ~ span{
	display: inline-block;
	vertical-align: 1px;
	margin: 0;
	margin-left: 5px;
}

/* Header */

.header {
	position: relative;
	top: 0;
	left: 0;
	display: flex;
	align-items: center;
	width: 100%;
	min-height: 70px;
	z-index: 999;
	background: #151515;
}
.header .logo{
	display: block;
	filter: invert(1);
	transition: none;
	z-index: 3;
	max-width: 120px;
	margin-left: 70px;
}
.header .logo img{
	max-width: 108px;
}
.header .nav-menu{
	position: absolute;
    top: 10px;
    left: 15px;
    width: 50px;
    height: 50px;
    padding: 14px 8px;
    cursor: pointer;
    z-index: 999;
	transition: 0.3s all;
	border-radius: 50%;
}
.header .nav-menu .menu-line{
	float: right;
	display: block;
	width: 100%;
	height: 3px;
	margin: 4px 0;
	background: #fff;
	border-radius: 6px;
	transition: 0.3s;
}
.header .nav-menu .menu-line:nth-child(2){ width:80% }

body.open-menu .header .nav-menu .menu-line:nth-child(1) { transform: rotate(45deg); width: 35px; margin-top: 10px; }
body.open-menu .header .nav-menu .menu-line:nth-child(2) { transform: rotate(-45deg); width: 35px; margin-top: -7px; }

.header .navigation{
	position: fixed;
	top: 70px;
	left: 0;
	padding: 0;
	width: 100%;
	height: calc(100vh - 70px);
	height: calc(var(--vh, 1vh) * 100 - 70px);
	background: #151515;
	color: #fff;
	z-index: 2;
	overflow: hidden;
	transition: 0.3s left;
	display: none;
}

body.open-menu .header .navigation{
	display: block;
}

.header .navigation .menu{
	margin: 0 0 15px;
	padding: 0;
	list-style: none;
	text-align: left;
}
.header .navigation .menu li{
	margin: 5px 15px;
}
.header .navigation .menu li a{
	display: block;
	padding: 10px 18px;
	color: #fff;
	font-weight: 400;
	font-size: 15px;
	line-height: 18px;
	border-radius: 3px;
}
.header .navigation .menu li a:hover{
	color: #fff;
	background: rgba(255,255,255,0.2);
}
.header .navigation .menu li a i{
	margin-right: 10px;
}

.header .navigation .menu > li.current-menu-item a{
	color: #fff;
	background: #7367f0;
	font-weight: 500;
}

.header .navigation .menu li.menu-lined{
	border-bottom: 1px solid rgba(255,255,255,0.25);
	margin-bottom: 10px;
	margin-top: 10px;
}

.header .navigation .user{
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	border-top: 1px solid #7367f0;
	z-index: 2;
}
.header .navigation .user.current-menu-item{
	background: #7367f0;
	color: #fff;
}
.header .navigation .user .data{
	display: block;
	position: relative;
	width: 100%;
	padding: 15px 25px 10px;
	height: 75px;
	background: #111;
	color: #fff;
	cursor: pointer;
}
.header .navigation .user .data i{
	position: absolute;
	top: calc(50% - 10px);
	right: 10px;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 20px;
	height: 20px;
	font-size: 16px;

}
.header .navigation .user .data span{
	display: block;
}
.header .navigation .user .data .name{
	font-size: 16px;
	line-height: 18px;
	font-weight: 600;
}
.header .navigation .user .data .email{
	font-size: 14px;
	line-height: 16px;
	font-weight: 400;
	color: rgba(255,255,255,0.8);
}
.header .navigation .user .data:hover{
	background-color: #000;
}

@media screen and (min-width:1200px){
	.header{
		position: fixed;
		width: 260px;
		min-height: 100dvh;
	}
	.header .logo{
		display: flex;
		align-items: center;
		justify-content: center;
		width: 100%;
		max-width: 100%;
		height: 140px;
		margin: 0;
	}
	.header .logo img{
		max-width: 163px;
	}
	.header .nav-menu{
		display: none;
	}
	.header .navigation{
		display: flex;
		justify-content: space-between;
		flex-direction: column;
		position: relative;
		top: 0;
		left: auto;
		transition: none;
		height: calc(100dvh - 140px);
	}
}

/* Modules */

.main_title{
	position: relative;
	display: flex;
	align-items: center;
	padding: 15px 0;
	min-height: 110px;
	background: #fff;
	border-bottom: 1px solid #f1f1f4;
	box-shadow: 0px 3px 4px 0px rgba(0, 0, 0, 0.03);
}
.main_title .title{
	margin: 0;
}
.main_title .title h1{
	margin: 0;
	font-size: 24px;
	color: #111;
	text-transform: capitalize;
}
.main_title .title h1 small{
	display: block;
	font-size: 16px;
	line-height: 20px;
	font-weight: 400;
}
.main_title .breadcrumb{
	margin: 0;
}
.main_title .breadcrumb li{
	text-transform: capitalize;
}
.main_title .breadcrumb li:last-child{
	font-weight: 600;
}

@media screen and (min-width:992px){
	.main_title{

	}
	.main_title{
		padding: 25px 0;
	}
	.main_title .title h1{
		font-size: 26px;
	}
	.main_title .title h1 small{
		font-size: 18px;
		line-height: 22px;
	}
}


.title{
	position: relative;
	margin-bottom: 15px;
	z-index: 2;
}
.title h1,
.title h2,
.title h3,
.title h4{
	margin: 0;
}
.title h1{
	font-size: 26px;
}
.title h2{
	font-size: 24px;
}
.title h3{
	font-size: 22px;
}
.title h4{
	font-size: 20px;
}
.title p{
	margin: 15px 0 0;
}

.title .subtitle{
	position: relative;
	display: inline-block;
	font-weight: 300;
	font-size: 18px;
	margin: 0;
}

.title.max-width{
	max-width: 1000px;
}
.title.text-center.max-width{
	margin-left: auto;
	margin-right: auto;
}

@media screen and (min-width: 992px){
	.title{
		margin-bottom: 30px;
	}
	.title .subtitle{
		font-size: 20px;
	}
	.title h1{
		font-size: 32px;
	}
	.title h2{
		font-size: 28px;
	}
	.title h3{
		font-size: 26px;
	}
	.title h4{
		font-size: 22px;
	}
}

@media screen and (max-width: 480px){
	.title h3 br{
		display: none;
	}
}



.card{
	background: #fff;
	border-color: #f1f1f4;
	box-shadow: 0px 3px 4px 0px rgba(0, 0, 0, 0.03);
}

.card .card-header{
	padding: 15px;
	border:0;
	background: #fff;
}
.card .card-header .card-title{
	margin: 0;
	font-size: 16px;
}

.card .card-footer{
	padding: 15px;
}

.card .card-body{
	padding: 15px;
}
.card-header ~ .card-body{
	padding-top: 0;
}

.card .card-list{
	padding: 0;
	margin: 0 0 15px;
	list-style: none;
}

@media screen and (min-width:992px){
	.card .card-header{
		padding: 30px;
	}
	.card .card-footer{
		padding: 20px 30px;
	}
	.card .card-header .card-title{
		font-size: 18px;
	}
	.card .card-body{
		padding: 30px;
	}
	.card-header ~ .card-body{
		padding-top: 0;
	}
}

/* Pages */

.page.list .widgets ~ .feed{
	padding-top: 20px;
}

/* Pages > Login */

.page.page-login{
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 100dvh;
}
.page.page-login .content .card{
	max-width: 400px;
	padding: 30px;
	margin-left: auto;
	margin-right: auto;
}
.page.page-login .content .logo{
	padding-bottom: 30px;
	margin-bottom: 30px;
	text-align: center;
	border-bottom: 1px solid #eee;
}

.page.page-login .content .module-login .btn{
	width: 100%;
	max-width: 100%;
	font-size: 18px;
}

@media screen and (min-width:992px){
	.page.page-login .content .card{
		padding: 50px;
	}
}


/* Pages > Create */

.page.create form{
	max-width: 800px;
	margin: 0 auto;
}

/* Pages > Edit */


.page.edit form{
	max-width: 800px;
	margin: 0 auto;
}
.page.proposals form,
.page.invoices form,
.page.invoices_recurring form{
	max-width: 1200px;
}

.page.invoices .pdf-footer .page-counter:after{
	content: "Page 1 of 1";
}

/* Pages > Detail */




/* Pages > 404 */

.page.page-404{
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 100dvh;
}

/* Pages > Contact */

.page.contact .socialmedia li{
	display: inline-block;
	vertical-align: middle;
	margin-right: 5px;
}
.page.contact .socialmedia li a{
	display: block;
	font-size: 26px;
}

/* Details */

.tab-menu{
	width: 100%;
	background: #fff;
	border-radius: 6px;
	padding: 0 10px;
	margin: 0;
	box-shadow: 0px 0px 35px 0px rgba(154, 161, 171, 0.15);
}
.tab-menu ul li{
	display: inline-block;
	margin: 0 5px;
}
.tab-menu ul li a{
	display: block;
	padding: 15px 15px;
	font-weight: 500;
	font-size: 16px;
}
.tab-menu ul li.current-menu-item a,
.tab-menu ul li a:hover{
	color: #7367f0;
	box-shadow: inset 0 -2px 0 0 #7367f0;
}

/* Details > Maintenance */

.page.detail .site-presentation{
	padding: 30px;
	min-height: 200px;
}
.page.detail .site-presentation .site-screenshot{
	width: 100%;
	max-width: 300px;
	margin-right: 30px;
	margin-bottom: 30px;
	border:1px solid #f5f5f5;
}
.page.detail .site-presentation .site-screenshot .img{
	width: 100%;
	height: 100%;
	background: #eee no-repeat center;
	background-size: cover;
	aspect-ratio: 1.5 / 1;
}
.page.detail .site-presentation .site-screenshot .img img{
	width: 100%;
}
.page.detail .site-presentation .site-data{

}

.page.detail .site-presentation .site-data .site-name{
	margin: 0 0 5px;
	font-size: 22px;
	line-height: 28px;
}
.page.detail .site-presentation .site-data .site-url{
	margin: 0;
	font-size: 16px;
}
.page.detail .site-presentation .site-data .site-url i{
	vertical-align: 0;
	font-size: 14px;
	margin-right: 4px;
}

.page.detail .site-presentation .site-data .site-status{
	margin-top: 15px;
}


.page.detail .site-presentation .site-data .site-links{
	margin-top: 30px;
}
.page.detail .site-presentation .site-data .site-links li{
	margin-bottom: 12px;
}
.page.detail .site-presentation .site-data .site-links li a{
	display: inline-block;
	padding: 5px 20px;
	background: #f9f9f9;
	border: 1px solid rgba(0,0,0,0.1);
	font-size: 15px;
	border-radius: 25px;
}
.page.detail .site-presentation .site-data .site-links li a:hover{
	color: #7367f0;
	border-color: #7367f0;
}

.page.detail .site-presentation .site-data .site-meta{
	font-size: 15px;
	line-height: 20px;
}

.page.detail .site-presentation .site-data .site-api-key{
	margin-top: 30px;
}
.page.detail .site-presentation .site-data .site-api-key label{
	margin-bottom: 5px;
}
.page.detail .site-presentation .site-data .site-api-key .form-control{
	max-width: 200px;
}

@media screen and (min-width:578px){
	.page.detail .site-presentation{
		display: flex;
		align-items: flex-start;
		flex-direction: row;
	}
	.page.detail .site-presentation .site-screenshot{
		width: 200px;
		margin-bottom: 0;
	}
}

@media screen and (min-width:992px){
	.page.detail .site-presentation .site-screenshot{
		width: 250px;
	}

	.page.detail .site-presentation .site-data .site-name{
		font-size: 28px;
		line-height: 34px;
	}
	.page.detail .site-presentation .site-data .site-links{
		position: absolute;
		top: 25px;
		right: 30px;
		margin: 0;
		text-align: right;
	}
	.page.detail .site-presentation .site-data .site-api-key{
		position: absolute;
		bottom: 30px;
		right: 30px;
		margin: 0;
		text-align: right;
	}
}



.page.detail .ping {
    position: relative;
    width: 100%;
    height: auto;
    margin-top: 50px;
}
.page.detail .ping .day {
    stroke: #fff;
    stroke-width: 2px;
}
.page.detail .ping .month {
    font-size: 10px;
    text-transform: uppercase;
}
.page.detail .ping .year {
    font-size: 12px;
/*    writing-mode: vertical-rl;
    text-orientation: upright;*/
}
.page.detail .ping .highlight-fail {
    fill: red;
}
.page.detail .ping .highlight-success {
    fill: green;
}
.page.detail .ping .ping-tooltip {
    position: absolute;
    text-align: center;
    padding: 5px 12px;
    font-size: 14px;
    background: #fff;
    box-shadow: 0 0 3px 3px rgba(0, 0, 0, 0.1);
    font-weight: 500;
    border-radius: 4px;
    pointer-events: none;
    opacity: 1;
    visibility: hidden;
    color: #111;
}

/* List */

.list-data{
	display: flex;
	flex-wrap: wrap;
	width: 100%;
}
.list-data li{
	position: relative;
	width: 50%;
	margin-bottom: 20px;
}
.list-data li span{
	display: block;
	width: fit-content;
	padding: 5px 15px;
	margin: 3px 0;
	background: #eee;
	font-weight: bold;
	border-radius: 25px;
}

@media screen and (min-width:992px){
	.list-data li{
		position: relative;
		width: 33.333%;
	}
}
@media screen and (min-width:1600px){
	.list-data li{
		position: relative;
		width: 25%;
	}
}

.list-check li{
	font-size: 16px;
	margin-bottom: 8px;
}

.list-check li i{
	font-size: 22px;
	margin-right: 5px;
}
.list-check li i .fa-check{

}


/* Feed > Actions */

.module-actions{
	margin-bottom: 15px;
	border-bottom: 1px solid #E7E7E7;
}
.module-actions ul{
	margin: 30px 0 15px;
}
.module-actions ul li{
	margin: 15px 0;
}

@media screen and (min-width:992px){
	.module-actions{
		margin-bottom: 30px;
	}
	.module-actions ul{
		display: flex;
		align-items: center;
		margin: 50px 0 15px;
	}
	.module-actions ul li{
		margin: 0;
	}
}

/* Feed > Filter */

.filter{
	margin-bottom: 15px;
	border-bottom: 1px solid #E7E7E7;
}
.filter ul{
	margin: 15px 0 30px;
}
.filter ul li{
	margin: 10px 0;
}
.filter .form-control,
.filter .form-select{
	background-color: #fafafa;
}
.filter ul li .form-control{
	width: 100%;
}
.filter ul li > label{
	font-size: 14px;
	color: rgba(0,0,0,0.4);
}

.filter .posts_per_page .form-control{
	max-width: 65px;
	padding-right: 5px;
}

.filter .view label{
	cursor: pointer;
	margin: 0 8px;
}
.filter .view label:last-child{
	margin-right: 0;
}
.filter .view label input{
	display: none;
}
.filter .view label i{
	font-size: 24px;
}
.filter .view label input:checked ~ i{
	color: #7367f0;
}

@media screen and (min-width:992px){
	.filter{
		margin-bottom: 30px;
	}
	.filter ul{
		display: flex;
		align-items: flex-end;
	}
	.filter ul li{
		margin: 0;
	}
	.filter ul li:not(:last-child){
		margin-right: 20px;
	}
	.filter .posts_per_page{
		margin-left: auto;
	}
	.filter .posts_per_page .form-control{
		margin-left: auto;
	}

	.filter .searcher .form-control{
		width: 300px;
	}
	.filter .orderby .form-control{
		width: 150px;
	}
}
@media screen and (max-width:580px){
	.filter .posts_per_page{
		display: inline-block;
		width: 50%;
	}
	.filter .view{
		display: inline-block;
		width: 49%;
		text-align: right;
	}
}


/* Table */

.table-responsive .table{
	white-space: nowrap;
}


/* Feed */

.feed .card-body{
/*	padding: 0;*/
}

.feed .meta{
	font-size: 14px;
}

.feed .status-select{
	display: block;
	max-width: 100px;
	height: 28px;
	padding: 0 8px;
	font-size: 12px;
    border: none;
	font-weight: 500;
	text-transform: uppercase;
    color: #111;
	background-color: #ddd;
    -webkit-appearance: none;
    -moz-appearance: none;
    cursor: pointer;
    border-radius: 50px;
}
.feed span.status-select{
	line-height: 30px;
	text-align: center;
}

.feed .status-select[data-status="sent"],
.feed .status-select[data-status="doing"]{
	background-color: #fff3cd;
}

.feed .status-select[data-status="paid"],
.feed .status-select[data-status="active"],
.feed .status-select[data-status="approved"],
.feed .status-select[data-status="done"]{
    background-color: #a3cfbb;
}

.feed .status-select[data-status="inactive"],
.feed .status-select[data-status="cancelled"]{
    background-color: #f1aeb5;
}

.feed .internal_comment{
	display: inline-block;
	vertical-align: middle;
	font-size: 22px;
	margin-right: 12px;
	color: #ccc;
}

/* Feed > List */

.feed-list .table tr th{
	font-weight: 500;
	font-size: 14px;
	color: #171717;
}
.feed-list .table tr td{
	padding: 10px 10px;
	line-height: 1.5em;
	font-weight: 300;
	font-size: 14px;
}
.feed-list .table h2{
	margin: 0;
	font-size: 15px;
	font-weight: 500;
}
.feed-list .table .col-actions{
	text-align: right;
}
.feed-list .table .col-total{
	text-align: center;
	max-width: 100px;
}



.feed-list .table tbody tr:nth-child(odd) td{
	background-color: #f5f5f5;
}


/* Feed > Grid */

.feed-grid .table{
	display: block;
	width: 100%;
}
.feed-grid thead{
	display: none;
}
.feed-grid tbody{
	display: flex;
	flex-wrap: wrap;
}
.feed-grid tbody tr{
	display: flex;
	flex-wrap: wrap;
	position: relative;
	width: 100%;
	height: auto;
	font-size: 14px;
	line-height: 18px;
	padding: 0;
	margin: 1.5% 0;
	border-radius: 16px;
	background: #f5f5f5;
	border: 1px solid #f1f1f4;
	box-shadow: 0px 3px 4px 0px rgba(0, 0, 0, 0.1);
	overflow: hidden;
}
.feed-grid tbody tr td:first-of-type{
	padding-top: 15px;
}
.feed-grid tbody tr td:last-child{
	padding-bottom: 15px;
}
.feed-grid tbody tr td{
	display: block;
	width: 100%;
	border:0;
	padding: 5px 15px;
	background: #f5f5f5;
}
.feed-grid tr:hover{
	box-shadow: 0 0 10px 0px rgba(0,0,0,0.05);
}
.feed-grid tr td h2{
	margin: 0;
	font-size: 20px;
	font-weight: 600;
}

@media screen and (min-width:578px){
	.feed-grid tbody tr{
		width: 47%;
		margin: 1.5%;
	}
}
@media screen and (min-width:992px){
	.feed-grid tbody tr{
		width: 30.333%;
		margin: 1.5%;
	}
}

/* Feed > Pagination */

.feed .meta-nav{
	padding: 15px 0;
}

@media screen and (min-width:992px){
	.feed .meta-nav{
		display: flex;
		align-items: center;
		justify-content: space-between;
	}
	.feed .meta-nav p,
	.feed .meta-nav .pagination{
		margin: 0;
	}

	.feed .meta-nav-footer{
		justify-content: center;
		padding: 50px 0;
	}
	.feed .meta-nav-footer .pagination .page-numbers{
		font-size: 24px;
		padding: 10px;
	}
}

.pagination{
	display: inline-flex;
	text-align: center;
}
.pagination .page-numbers{
	display: inline-block;
	vertical-align: middle;
	padding: 8px;
	font-size: 18px;
	font-weight: 300;
}
.pagination .page-numbers:hover{
	color: #7367f0;
}
.pagination .page-numbers.current{
	font-weight: bold;
	color: #7367f0;
}
.pagination .screen-reader-text{
	display:none;
}


/* Widgets */

.widget{
	height: 100%;
}

/* Widgets > Projects */

.widget-status .graph{
	width: 250px;
	height: 250px;
	margin: 25px auto;
	background: #eee;
	border-radius: 50%;
}

.widget-status ul{
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0;
}
.widget-status ul li{
	padding: 15px;
	width: 100%;
	text-align: center;
}
.widget-status ul li:last-child{
	border-right: 0;
}
.widget-status ul li span{
	display: block;
	font-size: 32px;
	line-height: 40px;
	font-weight: bold;
}




/* Widgets > Total */

.widget-totals ul{
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0;
}
.widget-totals ul li{
	padding: 30px;
	width: 100%;
	text-align: center;
	border-right: 1px solid #eee;
}
.widget-totals ul li:last-child{
	border-right: 0;
}
.widget-totals ul li h5{
	display: block;
	margin: 0;
	font-size: 32px;
	line-height: 40px;
}


/* Slider */

.slider {
	position: relative;
}
.slider .dots { position: absolute; bottom: -60px; left: 0; width: 100%; z-index: 10; }
.slider .dots .slick-dots { width: 100%; padding: 0; margin: 0; text-align: center; }
.slider .dots .slick-dots li { display: inline-block; vertical-align: top; margin: 10px 6px; }
.slider .dots .slick-dots li button {
	display: block;
	width: 10px;
	height: 10px;
	padding: 0;
	text-indent: -9999px;
	background: rgba(0,0,0,0.25);
	border: 0;
	border-radius: 50%;
	overflow: hidden;
	-webkit-appearance: none;
	cursor: pointer;
}
.slider .dots .slick-dots li.slick-active button { background: #151515; }


.slider .arrows button {
	position: absolute;
	top: calc(50% - 15px);
	left: 30px;
	width: 16px;
	height: 30px;
	padding: 0;
	padding: 0;
	line-height: 300px;
	text-align: center;
	color: #fff;
	background: transparent;
	border: 0;
	border-radius: 50%;
	transition: 0.3s all;
	cursor: pointer;
	overflow: hidden;
	z-index: 3;
}
.slider .arrows button:focus {
	outline: 0;
}
.slider .arrows button:after{
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: url('assets/img/icons/icon-arrow-left.svg') no-repeat center;
	background-size: contain;
}
.slider .arrows button.slick-next{
	left: auto;
	right: 30px;
}
.slider .arrows button.slick-next:after{
	background-image: url('assets/img/icons/icon-arrow-right.svg');
}

/* Template PDF */

.template-pdf-responsive{
	overflow: auto;
	white-space: nowrap;
}
.template-pdf-responsive .pdf-body{
	width: 800px;
	min-height: 1000px;
	padding: 0;
	margin: 30px auto;
	white-space: wrap;
	line-height: 1.3em;
	background: #fff;
}
.template-pdf-responsive .pdf-body p{
	line-height: 1.3em;
}
.template-pdf-responsive .pdf-body .pdf-header{
	position: absolute;
	top: 30px;
	left: 40px;
	right: 40px;
	height: 80px;
	font-size: 14px;
	line-height: 1.3em;
	width: calc(100% - 80px);
}
.template-pdf-responsive .pdf-body .pdf-header p{
	
}
.template-pdf-responsive .pdf-body .pdf-header strong{
	
}
.template-pdf-responsive .pdf-body .pdf-footer{
	position: absolute;
	bottom: 20px;
	left: 40px;
	right: 40px;
	height: 60px;
	font-size: 14px;
	line-height: 1.5em;
	width: calc(100% - 80px);
}
.template-pdf-responsive .pdf-body .pdf-page{
	position: relative;
	min-height: 1000px;
	padding: 120px 40px 90px 40px;
	margin: 15px 0;
	line-height: 1.3em;
	border: 1px solid #eee;
}

.template-invoice table tr{
	vertical-align: top;
}

/* Kanban */

.boards{
	display: block;
	overflow: auto;
	white-space: nowrap;
	padding: 0;
	padding-bottom: 25px;
	margin: 0 -15px;
}
.boards .board-column{
	display: inline-block;
	vertical-align: top;
	width: 300px;
	height: 600px;
	background: #eee;
	white-space: initial;
	padding: 15px;
	margin: 10px;
	overflow-y: auto;
	border-radius: 12px;
}
.boards .board-column .board-column-title{
	font-size: 16px;
	margin-bottom: 15px;
}
.board-task{
	position: relative;
	width: 100%;
	height: auto;
	padding: 15px 15px 75px;
	font-size: 14px;
	background: #fff;
	border: 1px solid rgba(0,0,0,0.1);
	border-radius: 12px;
	box-shadow: 0px 3px 4px 0px rgba(0, 0, 0, 0.03);
	cursor: pointer;
}
.board-task:hover{
	box-shadow: 0px 6px 8px 0px rgba(0, 0, 0, 0.05);
}
.board-task h2{
	font-size: 16px;
}

.board-task .dates{
	position: absolute;
	bottom: 0;
	left: 15px;
	padding:0;
	list-style: none;
}
.board-task .dates li{
	font-size: 14px;
	padding: 0;
}

.board-task .team{
	position: absolute;
	bottom: 0;
	right: 15px;
	white-space: nowrap;
	padding: 0;
	list-style: none;
}
.board-task .team li{
	display: inline-block;
	vertical-align: middle;
}
.board-task .team li:not(:last-child){
	margin-right: -8px;
}
.board-task .team li .avatar{
	display: block;
	width: 24px;
	height: 24px;
	border-radius: 50%;
	background: #eee no-repeat center;
	background-size: cover;
	box-shadow: 0 0 0 1px rgba(0,0,0,0.1) inset;
}

/* Modal */

.modal .modal-content{
	border: 0;
	border-radius: 3px;
}

.modal .modal-content .modal-header{}
.modal .modal-content .modal-header .modal-title:first-letter{
	text-transform: capitalize;
}
.modal .modal-content .modal-body{
	
}

#modalForm .modal-dialog{
	--bs-modal-width: 680px;
}
#modalForm .modal-body{
	padding: 30px 30px 0;
}

/* Offcanvas */
.offcanvas{
	--bs-offcanvas-width: 500px;
}