﻿.l-divide-in-2 {
	display: -ms-grid;
	display: grid;
	grid-template-columns: 1fr 1fr;
}

.l-gap10px {
	-ms-grid-columns: 1fr 10px 1fr;
	-webkit-column-gap: 10px;
	-moz-column-gap: 10px;
	column-gap: 10px;
}

.l-gap0px {
	-ms-grid-columns: 1fr 0px 1fr;
	-webkit-column-gap: 0px;
	-moz-column-gap: 0px;
	column-gap: 0px;
}

.l-vertical-alignement {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

.l-horizontal-alignement {
	-webkit-justify-content: center;
	justify-content: center;
}

.l-space-between {
	justify-content: space-between;
	margin-right: 5px;
	margin-top: 3px;
}

.l-flex {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}

.l-iwi-uc:first-child {
	margin-top: 0;
}

.l-iwi-uc {
	margin-top: 20px;
}

	.l-iwi-uc .tableEdit {
		width: 100%;
	}

/*** Component ***/
.c-card {
	border: 1px solid #000;
	border-radius: 5px;
	background-color: #f5f5f5;
	margin-bottom: 20px;
}

.c-card__header {
	background-color: #2D2D2D;
	color: White;
	font-weight: bold;
	font-size: 12px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	padding-left: 50px;
	height: 30px;
}

.c-card__content {
	padding: 10px 10px 0 10px;
}

.c-card__row {
	display: -ms-grid;
	display: grid;
	-ms-grid-columns: 30% 20px 1fr;
	grid-template-columns: 30% 1fr;
	-webkit-column-gap: 20px;
	-moz-column-gap: 20px;
	column-gap: 20px;
}

.c-card__row-two_col {
	grid-template-columns: repeat(2, 1fr);
	column-gap: 100px;
}

.c-card__row-left {
	grid-template-columns: 10% 1fr;
}

/*Fix when inside table*/
td .c-card__row {
	margin-top: 3px;
	grid-template-columns: 48% 1fr;
}

.c-card__row--even-column {
	display: -ms-grid;
	display: grid;
	grid-auto-columns: minmax(0, 1fr);
	grid-auto-flow: column;
	-webkit-column-gap: 20px;
	-moz-column-gap: 20px;
	column-gap: 20px;
}

.c-card__row, .c-card__row-checkbox {
	margin-bottom: 10px;
}

.c-card__row--even-column, .c-card__row-checkbox {
	margin-bottom: 10px;
}

.c-card__first-cell {
	-ms-grid-column: 1;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: end;
	-ms-flex-pack: end;
	justify-content: end;
}

.c-card__first-cell--column {
	align-items: start;
	flex-direction: column;
}

.c-card__second-cell {
	-ms-grid-column: 3;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

.c-card__third-cell {
	grid-column: 3;
	-ms-grid-column: 3;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

.c-card__second-cell--column {
	flex-direction: column;
	align-items: start;
}

.c-card__row-checkbox {
	grid-template-columns: 30% min-content 40% min-content;
	display: grid;
	column-gap: 20px;
}

.c-card--home {
	max-width: 400px;
}

.c-card__product-content {
	margin-right: 5%;
}

/* Retro compatibility for table/card layout */
.column1 .c-card {
	width: 95%;
}

.c-documentation {
	color: inherit;
	background-color: rgba(180,210, 248, 0.5);
	border-color: rgb(180 210 248);
	cursor: pointer;
	user-select: text;
	transition: all 0.1s ease-in-out 0s;
	display: flex;
	width: fit-content;
	align-items: center;
	padding: 1px 5px;
	margin-bottom: 15px;
}

.c-documentation__icon {
	fill: rgb(25, 91, 177);
}

.c-documentation__content--link {
	color: rgb(25, 91, 177);
}

.c-documentation__icon--img {
	width: 24px;
}


/* BootStrap like */
.mt-1 {
	margin-top: 10px;
}

.mb-1 {
	margin-bottom: 10px;
}

.mb-3 {
	margin-bottom: 25px;
}

.mr-1 {
	margin-right: 10px;
}
