@media print {
	.header {
		position: relative;
	}
	.breadcrumb {
		display: none;
	}
	.main-section {
		top: 0;
	}
}

:root {
	--white: #FFFFFF;
	--ultra-light-gray: #F7F8FA;
	--light-gray: #EDEFF1;
	--light-yellow: #FCFFA4;
	--medium-gray: #E7EAF0;
	--gray: #B4C0CC;
	--dark-gray: #333333;
	--black: #000000;
	--text-highlight: #0091E5;
	--cp-secondary: #00395A;
	--cp-primary: #B61F7E;
	--cp-primary-hover: #902367;
}

html {
	scroll-padding-top: 120px;
}

body {
	line-height: 24px;
}

a.button {
	display: inline-block;
}




.main-section .content a:not(.button):hover::after {
	transform: translate(0.1em, 0);
}

h1, h2, h3, h4, h5 {
	display: block;
}

h1[data-toc-label]::before,
h2[data-toc-label]::before,
h3[data-toc-label]::before,
h4[data-toc-label]::before,
h5[data-toc-label]::before {
	content: attr(data-toc-label) " ";
	color: var(--cp-primary);
}

h1 {
    margin-block-end: 40px;
}

h3, h4 {
	margin-block-start: 1.25em;
    margin-block-end: 0.75em;
}

h5 {
	font-size: 1em;
	font-style: italic;
	margin: 0;
}

.main-section .content section {
	padding-top: 0;
	padding-bottom: 0;
}

.main-section .content section:first-of-type hr:first-child {
	display: none;
}

.main-section .content section hr {
	margin-top: 40px !important;
	margin-bottom: 40px !important;
}

.sidebar-right {
	overflow: auto;
	padding-bottom: 10px;
}

.sidebar-right a.highlighted {
	color: var(--cp-primary) !important;
}

.sidebar-right li ol,
.sidebar-right li ul {
	padding-top: 10px;
}

.sidebar-right li ul {
	list-style-type: none;
}

.card-simple {
	margin-bottom: 30px;
}

.card.code-box .card-body {
	margin: 0;
	padding: 0;
}

.card.code-box {
	position: relative;
}

.card.code-box .code-box-copy {
	position: absolute;
	top: 1em;
	right: 1em;
	width: 1.5em;
	height: 1.5em;
	-webkit-mask: url(../img/icons/clipboard_copy.svg) no-repeat center;
	mask: url(../img/icons/clipboard_copy.svg) no-repeat center;
	background-color: var(--cp-secondary);
	opacity: 0;
	transition: opacity 0.2s ease-in-out;
	cursor: pointer;
}

.card.code-box:hover .code-box-copy {
	opacity: 0.8;
}

.card.code-box:hover .code-box-copy.success {
	-webkit-mask: url(../img/icons/clipboard_copy_success.svg) no-repeat center;
	mask: url(../img/icons/clipboard_copy.svg) no-repeat center;
}

.card.code-box .code-box-copy:hover {
	opacity: 1;
}

.card.code-box .card-body pre {
	width: 100%;
}

.card.code-box .card-body {
	background: rgb(247, 248, 250);
	padding: 1em;
}

.card.code-box .card-body code {
	background: transparent;
}

.badge {
	display: grid;
	grid-template-rows: 1fr 1fr;
	grid-template-columns: 45px auto;
	grid-template-areas: "logo product" "logo title";
	grid-column-gap: 10px;
	height: 3em;
}

.badge-logo {
	grid-area: logo;
}

.badge-logo img {
	width: 100%;
	height: 100%;
	object-fit: scale-down;
}

.badge-product {
	grid-area: product;
	font-family: "Helvetica-Regular", sans-serif;
	color: var(--black);
	vertical-align: middle;
}

.badge-title {
	grid-area: title;
	font-family: "Helvetica-Medium", sans-serif;
	color: var(--black);
	vertical-align: middle;
}

.info-box {
	position: relative;
	border: 1px solid var(--cp-secondary);
	border-radius: 4px;
	color: var(--dark-gray);
	padding: 1.5rem;
	padding-left: 5rem;
	font-family: "Helvetica-Italic";
	margin: 1rem 0;
}

.info-box::before {
	content: "";
	display: inline-block;
	position: absolute;
	left: 1.5em;
	top: 1.5em;
	width: 2em;
	height: 2em;
	-webkit-mask: url(../img/icons/icon_info.svg) no-repeat center;
	mask: url(../img/icons/icon_info.svg) no-repeat center;
	background-color: var(--cp-secondary);
}

.alert-box {
	position: relative;
	border: 1px solid var(--cp-primary);
	border-radius: 4px;
	color: var(--dark-gray);
	padding: 1.5rem;
	padding-left: 5rem;
	font-family: "Helvetica-Italic";
	margin: 1rem 0;
}

.alert-box::before {
	content: "";
	display: inline-block;
	position: absolute;
	left: 1.5em;
	top: 1.5em;
	width: 2em;
	height: 2em;
	-webkit-mask: url(../img/icons/icon_alert.svg) no-repeat center;
	mask: url(../img/icons/icon_alert.svg) no-repeat center;
	background-color: var(--cp-primary);
}



.info-table {
	width: 100%;
	border-collapse: collapse;
}

.info-table th,
.info-table thead td {
	padding-left: 1em;
	background-color: var(--medium-gray);
	text-align: left;
	line-height: 3em;
	border-bottom: 1px solid var(--gray);
	color: var(--black);
	font-family: "Helvetica-Regular", sans-serif;
	font-size: 0.95em;
	font-weight: bold;
}

.info-table tfoot td {
	padding-left: 1em;
	background-color: var(--medium-gray);
	line-height: 2.5em;
	border-top: 1px solid var(--gray);
	color: var(--black);
	font-family: "Helvetica-Regular", sans-serif;
	font-size: 0.95em;
	font-weight: bold;
}

.info-table tr td {
	padding-left: 1em;
	padding-top: 0.5em;
	padding-bottom: 0.5em;
	font-family: "Helvetica-Regular", sans-serif;
	vertical-align: top;
}

.info-table.valign-middle tr td {
	vertical-align: middle;
}

.info-table tr td:last-child,
.info-table tr th:last-child {
	padding-right: 1em;
}

.info-table.alternating-rows tr:nth-child(even) {
	background-color: var(--ultra-light-gray);
}

.info-table:not(.alternating-rows) td {
	border-bottom: 1px solid var(--light-gray);
}

.info-table ul,
.info-table ol {
	margin-top: 1m;
	margin-bottom: 1em;
}

.info-table li:last-child {
	padding-bottom: 0;
}

.text-highlight,
.text-highlight * {
	color: var(--text-highlight) !important;
}

.fullscreen-image-layer {
	position: fixed;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	width: auto;
	height: auto;
	z-index: 99999;
	cursor: zoom-out;
	background: #00000033;
}

.fullscreen-image-layer img {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	width: 100%;
	height: 100%;
	margin: auto;
	object-fit: scale-down;
}

.fullscreen-image-layer.loading::before {
	content: "";
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	margin: auto;
	display: block;
	width: 5em;
	height: 5em;
	background-color: #FFFFFF;
	-webkit-mask: url(../img/icons/loading.svg) no-repeat center center;
	mask: url(../img/icons/loading.svg) no-repeat center center;
}

.image-inline {
	max-width: 100%;
}

.image-border {
	border: 1px solid var(--medium-gray);
}

.code-inline {
	color: var(--black);
}