/* ---------------------------------------------------------------------------------------------------- */
/* DATA LIST																							*/

.datalist {

}

/* ------------------------------------------------------------ */
/* DATA LIST - GROUP											*/

.datalist-group + .datalist-group {
	margin-top: 10px;
}

.datalist-group-title {
	border-bottom: 1px solid #666666;
	padding: 5px 0 5px 0;
	vertical-align: bottom;
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: center;
}

.datalist-group-title h3 {
	color: #262626;
	font-size: 1.333em;
}

/* ------------------------------------------------------------ */
/* DATA LIST - SUBGROUP											*/

.datalist-subgroup {
	margin-top: 5px;
}

.datalist-subgroup + .datalist-subgroup {
	margin-top: 10px;
}

.datalist-subgroup-title {
	padding: 5px 5px;
	font-weight: bold;
}

/* ------------------------------------------------------------ */
/* DATA LIST - ROW												*/

.datalist-row {
	padding: 5px 5px;
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: center;
}

.datalist-row + .datalist-row,
.datalist-subgroup-title + .datalist-row {
	border-top: 1px solid #cccccc;
}

/* ---------------------------------------------------------------------------------------------------- */
/* CHOICE LIST																							*/

.choicelist {

}

.choicelist .choice {
	background: #f2f2f2;
	border: 1px solid #ffffff;
	border-radius: 4px;
	padding: 15px;
	position: relative;
	cursor: pointer;
}

.choicelist .choice + .choice {
	margin: 10px 0 0 0;
}

.choicelist .choice.active {
	border: 1px solid #BFD941;
}

/* ------------------------------------------------------------ */
/* CHOICE LIST - HEADER 										*/

.choicelist .choice-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	position: relative;
}

.choicelist .choice-title {
	margin: 0;
}

.choicelist .choice-icon {
	width: 24px;
	height: 24px;
}

/* ------------------------------------------------------------ */
/* CHOICE LIST - CONTENT 										*/

.choicelist .choice-content {
	margin-top: 15px;
	padding: 0 60px 0 0;
	display: none;
}

.choicelist .choice.active .choice-content {
	display: block;
}

/* ---------------------------------------------------------------------------------------------------- */
/* TABLE (QUIET)																						*/

.table-quiet {
	width: 100%;
	border-spacing: 0;
}

.table-quiet tbody td {
	border-top: 1px solid #cccccc;
	padding: 5px;
	text-align: left;
}

.table-quiet tbody .tr-subheader + tr td {
	border-top: none;
}

.table-quiet tbody .tr-subheader td {
	border-top: none;
	border-bottom: 1px solid #666666;
	padding: 20px 5px 10px 5px;
	vertical-align: bottom;
	font-size: 1.333em;
}

.table-quiet tbody .tr-subheader td:first-child {
	padding: 20px 10px 10px 0px;
}

.table-quiet tbody .tr-subheader:first-child td {
	padding-top: 0px;
}

/* ------------------------------------------------------------ */
/* TABLE (QUIET) - CHECKBOX										*/

.table-quiet .td-checkbox {
	width: 1%;
	text-align: center;
}

.table-quiet .td-checkbox input[type="checkbox"],
.table-quiet .td-checkbox input[type="radio"] {
	cursor: pointer;
}

/* ------------------------------------------------------------ */
/* TABLE (QUIET) - DIGIT										*/

.table-quiet .td-digit {
	text-align: right;
}

/* ---------------------------------------------------------------------------------------------------- */
/* VCARD																								*/

.vcard {
	width: 360px;
	background: #ffffff;
	border-radius: 3px;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
	position: absolute;
	z-index: 99;
}

.vcard-header {
	padding: 15px;
}

.vcard-header h2 {
	margin: 0 0 5px 0;
}

.vcard-body {
	padding: 15px;
}

.vcard-header + .vcard-body {
	border-top: 1px solid #e5e5e5;
}

/* ---------------------------------------------------------------------------------------------------- */
/* DESCLIST																								*/

.desclist {

}

.desclist-row {
	display: flex;
	flex-wrap: wrap;
}

.desclist-row:after {
	content: "";
	display: table;
	clear: both;
}

.desclist-row + .desclist-row {
	margin-top: 12px;
}

.desclist-label {
	width: 33.3333%;
	font-weight: bold;
}

.desclist-value {
	width: 66.6666%;
}

.desclist-value + .desclist-value {
	margin: 5px 0 0 33.3333%;
}

/* ---------------------------------------------------------------------------------------------------- */
/* IMAGES																								*/

/* ------------------------------------------------------------ */
/* IMAGES - FLUID												*/

.img-fluid {
	position: relative;
}

.img-fluid img {
	width: auto;
	max-width: 100%;
	height: auto;
}

/* ------------------------------------------------------------ */
/* IMAGES - THUMB												*/

.img-thumb {
	width: 80px;
	height: 80px;
	border-radius: 3px;
	overflow: hidden;
	position: relative;
}

.img-thumb img {
	width: 100%;
	height: 100%;
}

/* ------------------------------------------------------------ */
/* IMAGES - NO IMAGE											*/

.img-noimage {
	background-color: rgba(0, 0, 0, 0.1);
	background-image: url('../images/layout/no-image-transparent.svg');
	background-repeat: no-repeat;
	background-position: center center;
	background-size: 50% 50%;
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
}

@media only screen and (min-width: 768px) {

}

@media only screen and (min-width: 1024px) {

}

@media only screen and (min-width: 1440px) {

}

@media only screen and (min-width: 1920px) {

}

@media only screen and (min-width: 2560px) {

}