/* General */
.my-invoices-front {
	font-size: 12px; 
}

.my-invoices-front hr {
	margin: 10px;
}
/* General end */

/* Line */
.my-invoices-front .header {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr 1fr 1fr 100px 1fr 330px;
	align-items: center;
	background-color: #d0e0e4;

	font-weight: bold;
	height: 30px;
}

.my-invoices-front .header .action {
	text-align: center;
}

.my-invoices-front .header .total-amount {
	text-align: right;
	margin-right: 15px;
}

.my-invoices-front .line {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr 1fr 1fr 100px 1fr 330px;
	align-items: center;
	background-color: #f6f6f6;
	border-bottom: 1px solid rgba(0,0,0,0.25);

	min-height: 36px;
}

.my-invoices-front .line .total-amount {
	justify-self: end;
	margin-right: 15px;
}

.my-invoices-front .line .button-wrapper {
	display: flex;
	place-self: anchor-center;
	gap: 5px;
}

.my-invoices-front .line .button {
	white-space: nowrap;
	cursor: pointer;

	/*margin: calc(.50rem - 2px);*/
	margin-top: 2px;
	margin-bottom: 2px;
	margin-left: auto; 
	margin-right: auto; 
	padding-block: 0px !important;
	display: block;
	background: white;

	min-height: 25px;
    display: flex;
    align-items: center;
}

.my-invoices-front .line .button:hover {
	color: white;
}

.my-invoices-front .line > * {
	display: flex;
	align-items: center;
}

.my-invoices-front .header > *:first-child,
.my-invoices-front .line > *:first-child {
	padding-left: 10px;
}
/* Line end */

/* Pay, Details or Questions object */
body.pay-open,
body.details-open,
body.questions-open {
	overflow: hidden;
}

.my-invoices-front .close {    
	background-image: url(../icon/x.svg);
	background-size: 50%;
	background-repeat: no-repeat;  
	background-position: center; 
	filter: invert(34%) sepia(78%) saturate(7217%) hue-rotate(352deg) brightness(89%) contrast(129%);

	border: 2px solid rgb(50,80,230);
	border-radius: 0.5rem;
	margin-left: 5px;

	width: 40px;
	height: 40px;
}

.my-invoices-front .close:hover { 
	background-color: #ffffff;
	border-color: #ffffff;
	filter: invert(100%) sepia(0%) saturate(7500%) hue-rotate(320deg) brightness(102%) contrast(103%);
}

.my-invoices-front .pay,
.my-invoices-front .details,
.my-invoices-front .questions {
	position: fixed;
    top: 0px;
    left: 0px;
	background: rgba(248,250,254, 0.8);
    z-index: 999;
    width: 100%;
    height: 100vh; 
	overflow: auto;
}

.my-invoices-front .pay .title,
.my-invoices-front .details .title, 
.my-invoices-front .questions .title { 
	font-weight: bold; 
} 

.my-invoices-front .pay .content, 
.my-invoices-front .details .content, 
.my-invoices-front .questions .content { 
	width: 100%;
	max-width: 700px; 
	margin: auto; 
	background-color: white; 
	padding: 10px; 
	border-radius: .75em; 
	border: 1px solid rgba(0, 0, 0, 0.08); 
	box-shadow: 0 1px 2px rgb(20 45 82 / 2%), 0 3px 4px rgb(20 45 82 / 3%), 0 5px 8px rgb(20 45 82 / 4%); 
	line-height: normal; 
} 
/* Details object end */


/*
@media all and (max-width:992px) {
	.lending-front .line {
		grid-template-columns: 1fr 1fr 1fr;
	}
}

@media all and (max-width:767px) {
	.lending-front .line{
		grid-template-columns: 1fr
	}
}
*/
