:root{
	--brandColor: rgb(47, 114, 183);
}

/* Brand Logo */
.app-brand{
	padding: 1rem;
}
.app-brand-logo img{
	width: 100px;
}
.authentication-wrapper.authentication-basic .authentication-inner .card .app-brand{
	margin-bottom: 1rem;
}

/* Spinner */
img.spinner{
	display: none;
	z-index: 1;
	position: absolute;
	top: 50%;
	left: 50%;
	width: 60px;
	transform: translate(-50%,-50%);
}

/* Badge */
.badge{
	text-transform: capitalize;
}
.bg-success{
	background-color: rgb(84 177 34) !important;
	color: #f8faf8;
}

/* Perfect Scrollbar */
.light-style .ps__thumb-x, .light-style .ps__thumb-y{
	background-color: var(--brandColor);
}

/* Menu UI */
.bg-menu-theme .menu-inner > .menu-item.active:before{
	background: var(--brandColor);
}

/* Alert */
.alert{
	position: fixed;
	left: 0;
	bottom: 0;
    z-index: 9999;
    width: 100%;
    margin: 0;
	padding: 1.2rem;
    border-radius: 0;
    border: 0;
	text-align: center;
	font-size: 1.1rem;
	font-weight: 600;
}

.alert-success{
	background-color: #bef1a5;
	color: #1a871e;
}

/* Login Page */
.authentication-wrapper.authentication-basic .authentication-inner:before,
.authentication-wrapper.authentication-basic .authentication-inner:after{
	content: "";
	width: 0;
	height: 0;
	background-image: none;
}
.authentication-wrapper.authentication-basic.container-p-y{
	align-items: baseline;
}
.authentication-inner{
	margin-top: 10em;
}

/* Invoice and receipt modal view */
div#adobe-dc-view{
    height: 80vh;
}
.public-document-dock div#adobe-dc-view{
	height: 680px;
}
@media(max-width:992px){
	div#adobe-dc-view{
		height: 400px;
	}
	.public-document-dock div#adobe-dc-view{
		height: 600px;
	}
}

/* Form Elements */
.form-control.disabled,
.form-control:disabled{
	background-color: #eceef1;
}

textarea.form-control{
	resize: none;
	min-height: 100px;
	max-height: 300px;
}

/* Badges in invoices and receipts */
#invoice .badge,
#unpaid-invoices .badge,
#receipt .badge{
	top: 10px;
	left: 150px;
}

/* PDF icon in receipts */
#receipt .pdf{
    bottom: 20px;
    right: 20px;
}
.list-group-item i{
	font-size: 1.5rem;
}

/* Recent Receipts */

/* Invoice history list */
#invoice-history{
	max-height: 500px;
	overflow-y: auto;
	position: relative;
}
#invoice-history .list-group-flush > .list-group-item{
	border-bottom: 0;
	margin-bottom: 3px;
}
#invoice-history .list-group .list-group-item{
	border-left-width: 3px;
	border-left-color: transparent;
}
#invoice-history .list-group .list-group-item.pending{
	border-left-color: var(--bs-warning);
}
#invoice-history .list-group .list-group-item.sent{
	border-left-color: var(--bs-success);
}

/* Contact Person List */
.list-contact-person-card{
	min-height: calc(100%);
}
/* .list-contact-person i.remove-contact-person{
	font-size: 1.5rem;
} */
.list-contact-person.list-group-item i.remove-contact-person{
	display: none;
}
.list-contact-person.list-group-item:hover i.remove-contact-person{
	display: block;
}

/* Mordern scrollbar */
.mordern-scroll{
	overflow-y: auto;
	max-height: 52vh;
}
.mordern-scroll::-webkit-scrollbar-track{
	border-radius: 6px;
	background-color: rgba(200,200,200,0.5);
	margin-right: 5px;
}
.mordern-scroll::-webkit-scrollbar{
  	width: 6px;
}
.mordern-scroll::-webkit-scrollbar-thumb{
	border-radius: 6px;
	background-color: var(--brandColor);
}

/* Seletize */
.s-hidden{
    visibility: hidden;
    padding: 0;
    position: absolute;
}
.select{
	width: 100%;
	cursor: default;
	display: inline-block;
	position: relative;
}
.selectize{
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	padding: 10px;
	width:auto;
}
.options{
    font-size: 16px;
    line-height: 2;
    display: none;
    position: absolute;
    top: 2.75em;
    right: 0;
    left: 0;
    z-index: 999;
    margin: 0 0;
    padding: 0;
    list-style: none;
    border: 1px solid #ccc;
    background-color: white;
	border-radius: 5px;
	max-height: 300px;
	overflow-y: auto;
}
.options li{
	padding: 0 6px;
	margin: 0 0;
	padding: 0px 10px;
}
.options li:hover{
	background-color: var(--bs-primary);
	color: white;
}
.options li.active{
	background-color: var(--bs-gray);
}
.options li.active:hover{
	color: inherit;
}

/* Misc */
.placeholder-lg{
	min-height: 300px;
}