@import "../../theme/styles/antd/themes/default.less";

:host {
	display: block;
	::ng-deep {
		.title {
			font-size: 14px;
			color: @heading-color;
			font-weight: 500;
			margin-bottom: 16px;
		}
		.term {
			line-height: 22px;
			padding-bottom: 16px;
			margin-right: 8px;
			color: @heading-color;
			white-space: nowrap;
			display: table-cell;

			&:after {
				content: ":";
				margin: 0 8px 0 2px;
				position: relative;
				top: -0.5px;
			}
		}
		.detail {
			line-height: 22px;
			width: 100%;
			padding-bottom: 16px;
			color: @text-color;
			display: table-cell;
		}
		// offset the padding-bottom of last row
		.ant-row {
			margin-bottom: -16px;
			overflow: hidden;
		}
	}

	&.vertical {
		::ng-deep {
			.term {
				padding-bottom: 8px;
				display: block;
			}

			.detail {
				display: block;
			}
		}
	}
	&.small {
		::ng-deep {
			.title {
				margin-bottom: 12px;
				color: @text-color;
			}
			.term,
			.detail {
				padding-bottom: 8px;
			}
			// offset the padding-bottom of last row
			.ant-row {
				margin-bottom: -8px;
			}
		}
	}
	&.large {
		::ng-deep {
			.title {
				font-size: 16px;
			}
		}
	}
}
