/* align content to top in docutils tables */
table.docutils td, table.docutils th {
  vertical-align: baseline;
  text-align: left;
  padding: 0.5rem 0.5rem;
}

/* e.g. code blocks */
.highlight {
    border: 1px solid lightgray;
    background: var(--color-sidebar-background);
}

/* Zyte font -->*/

@font-face {
    font-family: 'Yellix';
    font-weight: 200;
    font-style: normal;
    src: url(../fonts/Yellix-Light.woff);
}

@font-face {
    font-family: 'Yellix';
    font-weight: 400;
    font-style: normal;
    src: url(../fonts/Yellix-Regular.woff);
}

@font-face {
    font-family: 'Yellix';
    font-weight: 700;
    font-style: normal;
    src: url(../fonts/Yellix-SemiBold.woff);
}
body {
    font-family: "Yellix", "sans-serif" !important;
}

/* <-- Zyte font*/

/* Top nav --> */

.docs-top-bar {
	background-color: #B02CCE;
	display: flex;
	align-items: center;
	justify-content: flex-end;
	flex-direction: row;
	padding: 10px;
}

.docs-login-link {
	display: flex;
	flex-direction: row;
	text-decoration: none;
	color: #fff;
}

.docs-login-link:hover {
    color: #fff;
}

.light-button-outline {
	font-family: Yellix;
	padding-top: 13px;
	padding-bottom: 15px;
	padding-left: 25px;
	padding-right: 25px;
	border: 1px solid #ffffff;
	border-radius: 300px;
	margin-right: 20px;
}

.menu-text {
	margin-right: 10px;
}

.header-container {
	margin: 0;
	background-color: #f4f4f4;
}

/* header */

.header-docs {
	vertical-align: middle;
	background-color: #002738;
	box-shadow: 1px 1px 4px 0 rgba(0, 0, 0, .1);
	width: 100%;
	position: relative;
	z-index: 11;
	height: 76px;
	padding-top: 10px;
}

.header-docs ul {
	margin: 0;
	padding: 0;
	list-style: none;
	overflow: hidden;
	background-color: #002738;
}

.header-docs li a {
	display: flex;
	padding: 20px 20px;
	text-decoration: none;
	color: #fff;
}

.header-docs li a:hover,
.header-docs .menu-btn:hover {
	color: #f4f4f4;
}

.header-docs .logo {
	display: block;
	float: left;
	font-size: 2em;
	padding: 13px 20px;
	text-decoration: none;
}


/* menu */

.header-docs .menu {
	clear: both;
	max-height: 0;
	transition: max-height .2s ease-out;
	z-index: 12;
}


/* menu icon */

.header-docs .menu-icon {
	cursor: pointer;
	display: inline-block;
	float: right;
	padding: 28px 20px;
	position: relative;
	user-select: none;
}

.header-docs .menu-icon .navicon {
	background: #ffffff;
	display: block;
	height: 2px;
	position: relative;
	transition: background .2s ease-out;
	width: 18px;
}

.header-docs .menu-icon .navicon:before,
.header-docs .menu-icon .navicon:after {
	background: #ffffff;
	content: '';
	display: block;
	height: 100%;
	position: absolute;
	transition: all .2s ease-out;
	width: 100%;
}

.header-docs .menu-icon .navicon:before {
	top: 5px;
}

.header-docs .menu-icon .navicon:after {
	top: -5px;
}


/* menu btn */

.header-docs .menu-btn {
	display: none;
}

.header-docs .menu-btn:checked~.menu {
	max-height: 300px;
}

.header-docs .menu-btn:checked~.menu-icon .navicon {
	background: transparent;
}

.header-docs .menu-btn:checked~.menu-icon .navicon:before {
	transform: rotate(-45deg);
}

.header-docs .menu-btn:checked~.menu-icon .navicon:after {
	transform: rotate(45deg);
}

.header-docs .menu-btn:checked~.menu-icon:not(.steps) .navicon:before,
.header-docs .menu-btn:checked~.menu-icon:not(.steps) .navicon:after {
	top: 0;
}


/* 48em = 768px */

@media (min-width: 48em) {

	.header-docs li {
		float: left;
	}
	.header-docs li a {
		padding: 20px 20px;
	}
	.header-docs .menu {
		clear: none;
		float: right;
		max-height: none;
	}
	.header-docs .menu-icon {
		display: none;
	}
}

@media screen and (max-width: 768px) {

    .light-button-outline {
        font-family: Yellix;
        padding-top: 13px;
        padding-bottom: 15px;
        padding-left: 25px;
        padding-right: 25px;
        border: 0px solid #ffffff;
        border-radius: 300px;
        }
}

/* <-- Top nav */

/* add padding to content */
.border-bottom-rounded {
    border-radius: 0 0 .25rem .25rem;
}


/* Announcements */

.announcement {
	background-color: #54B5A8;
	height: initial;
	overflow-x: initial;
}

body[data-theme="dark"] .announcement {
	background-color: #54B5A8;
}

.announcement-content {
	white-space: initial;
}


/* Tabs */

/* Reduce side tabbing. */
.sd-tab-set > label {
	padding-left: 0.6em;
	padding-right: 0.6em;
}


/* Reference anchor links show-on-hover */
.reference-anchor-link {
	display: none;
}

td:hover > .reference-anchor-link,
td:hover > .reference-anchor-link {
  display: inline;
}
