/*
 *
 * Diff to HTML (diff2html.css)
 * Author: rtfpessoa
 *
 */

.d2h-wrapper {

}

.d2h-file-header {
	/*
	height: 35px;
	padding: 5px 10px;
	border-bottom: 1px solid #d8d8d8;
	background-color: #f7f7f7;
	*/
	display: none;
}
/*
.d2h-file-stats {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	margin-left: auto;
	font-size: 14px;
}

.d2h-lines-added {
	text-align: right;
	border: 1px solid #b4e2b4;
	border-radius: 5px 0 0 5px;
	color: #399839;
	padding: 2px;
	vertical-align: middle;
}

.d2h-lines-deleted {
	text-align: left;
	border: 1px solid #e9aeae;
	border-radius: 0 5px 5px 0;
	color: #c33;
	padding: 2px;
	vertical-align: middle;
	margin-left: 1px;
}
*/

/*
.d2h-file-name-wrapper {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	width: 100%;
	font-family: 'Source Sans Pro', 'Helvetica Neue', Helvetica, Arial, sans-serif;
	font-size: 15px;
}

.d2h-file-name {
	white-space: nowrap;
	text-overflow: ellipsis;
	overflow-x: hidden;
}
*/

.d2h-file-wrapper {
	border: 1px solid #eee;
	border-left: 0;
}

.d2h-diff-table {
	width: 100%;
	border-collapse: collapse;
	border-spacing: 0;
	font-family: ui-monospace, 'Menlo', 'Consolas', monospace;
}

.d2h-files-diff {
	display: flex;
	width: 100%;
	height: 100%;
}

.d2h-file-diff {
	/* overflow-y: hidden; */
}

.d2h-file-side-diff {
	display: block;
	overflow-x: scroll;
	overflow-y: hidden;
	width: 50%;
}

.d2h-code-line {
	display: inline-block;
	white-space: nowrap;
	/* Compensate for the absolute positioning of the line numbers */
	padding: 0 8em;
}

.d2h-code-side-line {
	display: inline-block;
	white-space: nowrap;
	/* Compensate for the absolute positioning of the line numbers */
	padding: 0 4.5em;
}

.d2h-code-line del,
.d2h-code-side-line del,
.d2h-code-line ins,
.d2h-code-side-line ins {
	display: inline-block;
	/* margin-top: 0.1em; */
	text-decoration: none;
}

.d2h-code-line-prefix,
.d2h-code-line-ctn {
	display: inline;
	background: none;
	padding: 0;
	word-wrap: normal;
	white-space: pre;
}

.line-num1,
.line-num2 {
	float: left;
	width: 3.5em;
	overflow: hidden;
	text-overflow: ellipsis;
	padding: 0 0.5em 0 0.5em;
}

.line-num2 {
	float: right;
}

/*
.d2h-code-linenumber {
	width: 7.5em;
	position: absolute;
	display: inline-block;
	background-color: #fff;
	color: rgba(0, 0, 0, 0.3);
	text-align: right;
	border: 0px solid #eeeeee;
	border-width: 0 0;
	cursor: pointer;
}

.d2h-code-linenumber:after {
	content: '\200b';
}
*/
.d2h-code-side-linenumber {
	/* Keep the numbers fixed on line contents scroll */
	position: absolute;
	display: inline-block;
	box-sizing: border-box;
	width: 4em;
	background-color: #fff;
	color: rgba(0, 0, 0, 0.3);
	text-align: right;
	border: solid #eeeeee;
	border-width: 0 1px;
	cursor: pointer;
	overflow: hidden;
	text-overflow: ellipsis;
	padding: 0 0.5em 0 0.5em;
}

.d2h-code-side-linenumber:after {
	content: '\200b';
}

.d2h-code-side-emptyplaceholder,
.d2h-emptyplaceholder {
	background-color: #f1f1f1;
	border-color: #e1e1e1;
}

.d2h-code-linenumber,
.d2h-code-side-linenumber,
.d2h-code-line-prefix,
.d2h-emptyplaceholder {
	user-select: none;
}

.d2h-code-linenumber,
.d2h-code-side-linenumber {
	direction: rtl;
}

/*
 * Changes Highlight
 */

.d2h-del {
	background-color: #fee8e9;
	border-color: #e9aeae;
}

.d2h-ins {
	background-color: #dfd;
	border-color: #b4e2b4;
}

.d2h-info {
	display: none;
}

/*
.d2h-file-diff .d2h-del.d2h-change {
	background-color: #fdf2d0;
}

.d2h-file-diff .d2h-ins.d2h-change {
	background-color: #ded;
}
*/

/*
 * File Summary List
 */

/*
.d2h-file-list-wrapper {
	margin-bottom: 10px;
}

.d2h-file-list-wrapper a {
	text-decoration: none;
	color: #3572b0;
}

.d2h-file-list-wrapper a:visited {
	color: #3572b0;
}

.d2h-file-list-header {
	text-align: left;
}

.d2h-file-list-title {
	font-weight: bold;
}

.d2h-file-list-line {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	text-align: left;
}

.d2h-file-list {
	display: block;
	list-style: none;
	padding: 0;
	margin: 0;
}

.d2h-file-list > li {
	border-bottom: #ddd solid 1px;
	padding: 5px 10px;
	margin: 0;
}

.d2h-file-list > li:last-child {
	border-bottom: none;
}

.d2h-file-switch {
	display: none;
	font-size: 10px;
	cursor: pointer;
}

.d2h-icon {
	vertical-align: middle;
	margin-right: 10px;
	fill: currentColor;
}

.d2h-deleted {
	color: #c33;
}

.d2h-added {
	color: #399839;
}

.d2h-changed {
	color: #d0b44c;
}

.d2h-moved {
	color: #3572b0;
}

.d2h-tag {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	font-size: 10px;
	margin-left: 5px;
	padding: 0 2px;
	background-color: #fff;
}

.d2h-deleted-tag {
	border: #c33 1px solid;
}

.d2h-added-tag {
	border: #399839 1px solid;
}

.d2h-changed-tag {
	border: #d0b44c 1px solid;
}

.d2h-moved-tag {
	border: #3572b0 1px solid;
}
*/