/* Description */
.zugferd .description {
	padding-top: 80px;
	position: relative;
	overflow: hidden;
	background: linear-gradient(180deg, rgba(255,255,255,0) 20%, #8EBBFF 120%);
}

/* Formats */
.zugferd .formats .columns > div {
	display: flex;
	flex-direction: column;
	gap: 20px;
	background: #EEEEEE;
	padding: 40px;
}

/* Examples */
.zugferd .examples .columns a img {
	border: 4px solid #EEEEEE;
	width: auto;
	height: auto;
}
.zugferd .examples .columns a:hover img {
	border: 4px solid #338ADB;
}

/* Creating */
.zugferd .creating {
	background: #E6F4FF;
	overflow-x: hidden;
}
.zugferd .creating .columns {
	width: 100%;
	overflow: visible;
	position: relative;
}
.zugferd .creating .columns img {
	position: absolute;
	top: 50%;
	right: -50%;
	transform: translateY(-50%);
	width: 100%;
	height: 100%;
	object-fit: contain;
}
@media (max-width: 860px) {
	.zugferd .creating .columns > div {
		width: 100%;
	}
	.zugferd .creating .columns img {
		position: relative;
		margin-top: 20px;
		top: 0;
		right: 0;
		transform: translateY(0);
		width: 100%;
		height: 100%;
		object-fit: contain;
	}
}

/* Code example */
.zugferd .code-example .code-header {
	display: flex;
	background: #CDD1D2;
	margin-top: 20px;
	margin-bottom: 0;
	border-top-left-radius: 7px;
	border-top-right-radius: 7px;
	justify-content: space-between;
	
}
.zugferd .code-example .code-header .code-tabs {
	border-radius: 7px;
	margin: 2px;
	padding: 7px 1px;
	display: inline-block;
}
.zugferd .code-example .code-header .code-tabs a {
	background: transparent;
	color: #3E3E3E;
	padding: 6px 15px;
	margin: 2px;
	border-radius: 5px;
	text-decoration: none;
	cursor: pointer;
}
.zugferd .code-example .code-header .code-tabs a.active {
	background: #FFFFFF;
}
.zugferd .code-example .code-header .copy-code {
    display: block;
	padding: 2px 6px;
	margin: 6px;
    color: #3E3E3E;
    border-radius: 4px;
    font-size: 14px;
    cursor: pointer;
	width: auto;
	text-align: center;
	height: 27px;
	text-decoration: none;
}
.zugferd .code-example .code-header .copy-code.copied {
	background: #2ecc71;
    color: #FFFFFF;
	padding: 0 6px;
	margin: 8px;
	border: 1px solid #2ecc71;
    cursor: not-allowed;
	text-decoration: none;
}
.zugferd .code-example .code-header .copy-code.failed {
    background: #FF0000;
	color: #FFFFFF;
	padding: 0 6px;
	margin: 8px;
	border: 1px solid #FF0000;
    cursor: not-allowed;
	text-decoration: none;
}
.zugferd .code-example pre {
	margin-top: 0;
	border-top-left-radius: 0;
	border-top-right-radius: 0;
}
@media (max-width: 350px) {
	.zugferd .code-example .code-header .code-tabs a {
		padding: 6px;
	}
}