a.headerlink {
  padding-left: 5px;
}

section#parameters p {
  margin-left: 40px;
}

.docs_content_column h2 {
  margin-top: 55px;
}

.docs_content_column h3 {
  margin-bottom: 0px;
}

img.img-center {
	display: block;
	margin-left: auto;
	margin-right: auto;
}

table.docTable, table.doxtable {
  border: 2px solid /*#000000*/;
  background-color: #F3F3F3;
  width: 100%;
  text-align: left;
  border-collapse: collapse;
}

table.docTable p, table.doxtable p {
  margin: 0px;
}

table.docTable td, table.docTable th, table.doxtable td, table.doxtable th {
  border: 1px solid #AAAAAA;
  padding-top: 8px;
  padding-left: 7px;
  padding-right: 2px;
  padding-bottom: 8px;
}
table.docTable tr:nth-child(even), table.doxtable tr:nth-child(even) {
  background: #EBDADA;
}
table.docTable thead, table.doxtable thead, table.doxtable tbody th {
  background: #ED1C24;
}
table.docTable thead th, table.doxtable thead th, table.doxtable tbody th {
  font-size: 16px;
  font-weight: bold !important;
  color: #FFFFFF;
  text-align: left;
  border-left: 1px solid #000000;
  height: 30px;
}
table.docTable thead th:first-child, table.doxtable thead th:first-child {
  border-left: none;
}

table.docTable thead em {
  font-style: normal;
}

table.docTable tfoot td, table.doxtable tfoot td {
  font-size: 13px;
}
table.docTable tfoot .links, table.doxtable tfoot .links {
  text-align: right;
}
table.docTable td.text-center, table.docTable th.text-center {
  text-align: center;
}

table.doxtable td, table.doxtable th {
  padding-left: 5px;
  padding-top: 19px;
  padding-bottom: 19px;
}

table.scrollable-table {
  overflow-x: scroll;
  position: relative;
  display: block;
}
table.scrollable-table::before {
	content: "Scroll >>>>";
	font-weight: bold;
	animation-name: highlight-bounce;
	animation-duration: 1.5s;
	animation-iteration-count: infinite;
	position: absolute;
	top: 50%;
	left: 10px;
	z-index: 10;
	color: black;
	background-color: #dcdcdcbf;
	padding-left:5px;
	padding-right:5px;
}

table.scrollable-table:hover::before {
  display: none;
}

@keyframes highlight-bounce {
	0% {
		margin-left:0px
	}
	20% {
		margin-left:5px
	}
	40% {
		margin-left:0px
	}
	80% {
		margin-left:0px
	}
}

.highlight {
	position: relative;
}

.code-header{
	background-color: #FFF0;
	width: fit-content;
	padding-bottom: 3px;
	padding-top: 3px;
	position: absolute;
	z-index:10;
	opacity:0%;
	transition: opacity 0.3s ease-out;
	right: 15px;
}

.code-header p {
  margin: 0px;
  padding: 0px;
  padding-left: 0px;
  color: white;
  padding-left: 10px;
  font-size: 0.9em;
  
}

.code-header + pre[class*="language-"] {
  margin-top: 0em;
  border-radius: 0em;
}

.code-header .copy-button-wrapper a.copy-button-link{
	padding: 1px 12px;
	text-align: center;
	transition: all .3s;
	display: inline-block;
	background-color: #FFF0;
	border-radius: 3px;
	border-color: white;
	border-style: solid;
	border-width: 1.5px;
	color: white;
	cursor: pointer;
	
}

div[class*="highlight-"]:hover div.code-header {
  opacity: 100%;
  transition: opacity 0.3s ease;
}

.code-header .copy-button-wrapper a.copy-button-link:hover{
	background-color: #64646478;
	color: white;
}

.code-header .copy-button-wrapper{
	margin-top:5px;
}


.code-header .copy-button-content-wrapper {
  display: flex;
  justify-content: center;
  -webkit-align-content: center;
  display: ms-flexbox;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
}

.code-header .copy-button-icon {
  -webkit-box-flex: 0;
  -ms-flex-positive: 0;
  flex-grow: 0;
  -webkit-box-ordinal-group: 6;
  -ms-flex-order: 5;
  order: 5;
}

.code-header .copy-button-text {
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  -webkit-box-ordinal-group: 11;
  -ms-flex-order: 10;
  order: 10;
  display: inline-block;
  font-size: 0.9em;
}

.code-header~pre[class*="language-"]{
	margin-top: 0;
	border-radius: 0px;
}

/*.code-header ~ pre code {
  display: flex;
}*/

.code-copied{
	padding-right: 2px;
	margin-top: 5px;
	opacity: 0;
	color: white;
	font-size: 1.2em;
}

.code-copied p {
	margin-top: 2px;
	margin-bottom: 2px;
}

.code-copied.animated{
	opacity: 1;
	-webkit-animation: fadeinout 2s linear forwards;
    animation: fadeinout 2s linear forwards;
}

@-webkit-keyframes fadeinout {
  0%,100% { opacity: 0; }
  50% { opacity: 1; }
}

@keyframes fadeinout {
  0%,100% { opacity: 0; }
  50% { opacity: 1; }
}


#doc-toc {min-width:200px;}

/* Hiding stray BR at top of LHS */
#lhsmenu > div > div > div.header.doctitle > li > br
{display:none;}

#lhsmenu > div > div > div.header.doctitle > li > span.toc_h.first-title > svg
{
	padding-left: 5px;
    margin-top: 1px;
    padding-right: 3px
}

#lhsmenu > div > div > div.header.doctitle > li > span.toc_h.first-title
{/*margin-bottom:-2px;*/}

.doc-toc .header span{
    display: flex;
    white-space: pre-wrap;
    white-space: -moz-pre-wrap;
    white-space: -pre-wrap;
    white-space: -o-pre-wrap;
    word-wrap: break-word;
}

.doc-toc li {
  display: flex;
  white-space: pre-wrap;
  white-space: -moz-pre-wrap;
  white-space: -pre-wrap;
  white-space: -o-pre-wrap;
  word-wrap: break-word;
}

.doc-toc a.reference.internal
{
  flex: 1;
}

.doc-toc .t_b
{
	padding-left:20px;
}

.doc-toc .toc_hover:hover, .doc-toc .toc_h:hover
{
 /* background-color: #fff;
  border-radius:2px;*/
}


.doc-toc li.current>.toc_hover:hover, .doc-toc li.current>.toc_h:hover
{
    background-color: #ed1c24 !important;
	
}

.doctitle > li > span.toc_h.first-title > a
{
	padding-left:5px;
	margin-top: -3px;
    font-size: 16px;
}

/* "all manuals"*/
.header.doctitle > li > span:nth-child(1) > a
{
	display:none;
	
}

header.doctitle > li > br
{display:none;}

div.header.doctitle > li > br
{display:none;}

.doc-toc .doctitle a b {
    font-size: 1.2em;
	padding-left:3px;
}


.doc-toc .toc_hover, .doc-toc .toc_h
{
    overflow: hidden;
	/*padding-right:15px;*/
	/* fix italic bug */
	padding-right:1px;
	margin-right:-1px;
    white-space: nowrap;
    text-overflow: ellipsis;
	/*padding-top:2px;*/
}

.doc-toc .header li {
  flex-direction: column;
}


.container {
    width:104%;
    border:0px solid #d3d3d3;
}

.container div {
	padding-right:1px;
     
}


.doc-toc .container .header .current {
     background-color:#ed1c24 ; border-radius:2px;
     color: #ffffff !important;
     padding: 2px;
	 /*margin-bottom:-2px;*/
}

.doc-toc .fas {
    color: #000000;
	padding-left:5px;
	flex-shrink:0;
	margin-top:2px;
	
}

.doc-toc .reference:hover {

background-color: #fff;
    border-radius: 2px;
    padding-left: 2px;
    padding-right: 2px;
	transition: all .3s;
}

.doc-toc .reference {
   
    margin-left:5px;
	padding-left: 2px;
    padding-right: 2px;
	/*margin-right: -5px;*/
	/*margin-top:-2px;*/
    
}

.doc-toc li {
    margin-left:5px;
}

.doc-toc .t_b:last-child {margin-bottom:2px;}

.doc-toc li:last-child {
	margin-bottom:2px;
}

.container .header {
 
    padding: 0px;
    cursor: pointer;
    /*margin-top:5px;*/
    margin-bottom:5px;
	/*margin-right:-15px;*/

}
.container .content {
    display: none;
    padding-left : 5px;
    padding-top :0px;
    padding-bottom :0px;
    padding-right: 0px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: clip;
    overflow:visible;
}

.doc-toc li {
     list-style-type: none;
    
}



.container .opened {
    margin-bottom: 0px !important;
    
}

.doc-toc li {
   /* width:100% !important;*/
    padding-right: 0px !important;
	color:black !important;
    font-weight:400;
}



.doc-toc a {color:black !important;}

.doc-toc li a {color:black !important;
            font-size: 14px ;
            letter-spacing: -0.02em !important;
}

/* Main Level */
.doc-toc ul{
  width: 95%;
  padding-left:2px;
  
 /* margin-bottom:5px;*/
    margin-top:-5px;
	
	list-style-type: none;

}

.search-form {
	padding-left:10px;
}

.doc-toc ul.current {
/*  padding-bottom: 5px;*/
/*  padding-top:3px;*/
}

/* Second Level */
.doc-toc > ul > ul{
  padding-left:5px;
    margin-bottom:5px;
    margin-top:-5px;
}

/* Third Level */
.doc-toc > ul > ul > ul{
  padding-left:5px;
    margin-bottom:5px;
    margin-top:-5px;
}

/* Fourth Level */
.doc-toc > ul > ul > ul > ul {
  padding-left:5px;
    margin-bottom:5px;
    margin-top:-5px;
}

/* container backgrounds */


.toct-1 {
	background-color:#dcdcdc;
}

.toct-2 {
	background-color:#cbcbcb;
}

.toct-3 {
	background-color:#bababa;
}

.toct-4 {
	background-color:#a9a9a9;
}

.toct-5 {
	background-color:#989898;
}


.toct-6 {
	background-color:#989898;
}


.toct-7 {
	background-color:#989898;
}


.toct-8 {
	background-color:#989898;
}

.oxy-search-form input:nth-of-type(1){
	width:80%;
}
.oxy-search-form input:nth-of-type(2){
	display:none;
}
.searchwp-live-search-result, .search-result-tags{
	display:flex;
}
.search-thumbnail{
	margin-right: 1rem;
	width: 100px;
	max-width: 100px;
	min-width: 100px;
}
.searchwp-live-search-results-showing{
	padding: min(max(0.84rem, calc(0.84rem + ((1vw - 0.32rem) * 0.45))), 1.2rem);
}
.searchwp-live-search-result a.search-result-title{
	white-space: break-spaces;
}
.search-thumbnail img{
	height: auto;
	max-height: 600px;
	max-width: 100%;
}

// Relevanssi AJAX search overrides

/* visual styles */

.relevanssi-live-search-results {
	box-sizing: border-box;
	-moz-box-sizing: border-box;
	background: #fff;
	-webkit-box-shadow: 0 0 2px 0 rgba(30, 30, 30, 0.4);
	box-shadow: 0 0 2px 0 rgba(30, 30, 30, 0.4);
	border-radius: 2px;
	width: 315px;
	height: auto !important;
	min-height: 0px !important;
	max-height: 600px !important;
}

.relevanssi-live-search-no-min-chars .spinner {
	opacity: 0.3;
}

.relevanssi-live-search-result p,
.relevanssi-live-search-result-status p {
	font-size: 0.9em;
	letter-spacing: -0.02em !important;
	padding: 0.5em !important;
	margin: 0;
	border-bottom: 1px solid rgba(30, 30, 30, 0.1);
}

.relevanssi-live-search-result-status p {
	font-size: 0.8em;
	padding: 0 1em;
}

.relevanssi-live-search-result a:hover {
	color: #ed1c24 !important;
}

.relevanssi-live-search-result--focused {
	background: #ddd;
}

.relevanssi-live-search-result--focused a {
	color: #000;
}

.relevanssi-live-search-result:last-of-type p {
	border-bottom: 0;
}

.relevanssi-live-search-result a {
	display: block;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

/* Bullet proof Screen Reader Only text */
.relevanssi-live-search-instructions {
	border: 0 !important;
	clip: rect(1px, 1px, 1px, 1px) !important;
	-webkit-clip-path: inset(50%) !important;
	clip-path: inset(50%) !important;
	height: 1px !important;
	overflow: hidden !important;
	padding: 0 !important;
	position: absolute !important;
	width: 1px !important;
	white-space: nowrap !important;
}

@keyframes relevanssi-spinner-line-fade-more {
	0%,
	100% {
		opacity: 0; /* minimum opacity */
	}
	1% {
		opacity: 1;
	}
}

@keyframes relevanssi-spinner-line-fade-quick {
	0%,
	39%,
	100% {
		opacity: 0.25; /* minimum opacity */
	}
	40% {
		opacity: 1;
	}
}

@keyframes relevanssi-spinner-line-fade-default {
	0%,
	100% {
		opacity: 0.22; /* minimum opacity */
	}
	1% {
		opacity: 1;
	}
}


@media (prefers-color-scheme: dark) {
	
	table.docTable, table.doxtable {
	  background-color: #0E0F10;
	}
	
	table.docTable tr:nth-child(2n), table.doxtable tr:nth-child(2n) {
	  background: #27282b;
	}
	
	.doc-toc a {
		color: #ffffff !important;
	}
	
	.doc-toc .fas::before {
		color: #ffffff !important;
	}
	
	.doc-toc .fas	{
		fill: #ffffff !important;
	}
	
	.doc-toc li a {
		color: #ffffff !important;
	}
	
	.doc-toc li a:hover {
		color: #000000 !important;
		fill: #000000 !important;
	}
	
	.doc-toc > div {
	  background-color: #0E0F10 !important;
	}
	
	.toc_hover i.fas, .toc_h i.fas, .toc_h svg.fas, .toc_hover svg.fas {
	  color: #000000 !important;
	}
	
	.toc_hover:hover, .toc_h:hover, .toc_hover.svg:hover, .toc_h.svg:hover, doc-toc .fas:hover, .doc-toc li a:hover 
	{
		background-color: #999999 !important;
	}

	

	
	/* container backgrounds (dark) */

	.toct-1 {
		background-color:#121212 !important;
	}

	.toct-2 {
		background-color:#232323 !important;
	}
	
	.toct-3 {
		background-color:#343434 !important;
	}

	.toct-4 {
		background-color:#454545 !important;
	}

	.toct-5 {
		background-color:#565656 !important;
	}

	
	.doc-breadcrumbs div {
	  color: white;
	}
	
	.doc-search input {
	  color: #ffffff;
	  background-color: #0e0f10;
	  border-color: #0e0f10;
	}
	
	.doc-search .relevanssi-live-search-results {
	  background-color: #0e0f10;
	  border-color: #67686d;
	  border-width: 1px;
	  border-style: solid;
	}
	
	blockquote {
  		background: #000000 !important;
	}
}

/* Codeblocks */
.token.comment,
.token.prolog,
.token.doctype,
.token.cdata {
	/*color: slategray;*/
	color: #66a22e;
}

.token.property,
.token.tag,
.token.constant,
.token.symbol,
.token.deleted {
	/*color: #f92672;*/
	color: #c586c0;
}

.footnote p {
  font-size: 0.83em;
}

a.footnote-reference {
  vertical-align: baseline;
  position: relative;
  top: -0.4em;
  font-size: 0.83em;
}

p.katex-p {
  overflow-x: auto;
}

.imported-authors p {
  line-height: 1.7em;
}

@media (max-width: 767px) {
	table.docTable thead th, table.doxtable thead th, table.doxtable tbody th {
 	 word-break: break-word;
	}	
}
/* Pygments (native css) */
code[class*="language-"],
pre[class*="language-"] {
	color: #f8f8f2 ;
	text-shadow: 0 1px rgba(0, 0, 0, 0.3);
	font-family: Consolas, Monaco, 'Andale Mono', 'Ubuntu Mono', monospace;
	direction: ltr;
	text-align: left;
	white-space: pre;
	word-spacing: normal;
	word-break: normal;
	word-wrap: normal;
	line-height: 1.5;
	overflow:auto;
	-moz-tab-size: 4;
	-o-tab-size: 4;
	tab-size: 4;

	-webkit-hyphens: none;
	-moz-hyphens: none;
	-ms-hyphens: none;
	hyphens: none;
}

/* Fixing color of links surrounding codesnippets */
a code.codesnippet {
  /*color: var( --e-global-color-primary );*/
	text-decoration: underline;
}

a code.codesnippet:hover {
  /*color: var( --e-global-color-dc3bdd9 );*/
	color: var( --e-global-color-primary );
}

/* Styling for page TOCs */
.doc-toc a.current {
  color: white !important;
}

.doc-toc .__mPS2id {
  font-style: italic;
}

span.activeyy > a {
  font-weight:800;
  
}

/* Code blocks */
pre[class*="language-"] {
	padding: 1em;
	margin: .5em 0;
	overflow: auto;
	border-radius: 0.3em;
	font-size: 14px;
}

pre[class*="language-"] a {
	color: white !important;
}

:not(pre) > code[class*="language-"],
pre[class*="language-"] {
	background: #272822;
}

#code > div > div > pre > code > a:nth-child(100) > spanpre { line-height: 125%; }
/*
td.linenos .normal { color: #6e7681; background-color: #0d1117; padding-left: 5px; padding-right: 5px; }
span.linenos { color: #6e7681 !important; background-color: #0d1117; padding-left: 5px; padding-right: 5px; }
td.linenos .special { color: #e6edf3; background-color: #6e7681; padding-left: 5px; padding-right: 5px; }
span.linenos.special { color: #e6edf3; background-color: #6e7681; padding-left: 5px; padding-right: 5px; }
.highlight .hll { background-color: #6e7681 }*/
.highlight { background: #0d1117; color: #e6edf3 }
td.linenos .normal { color: #6e7681; background-color: #0d1117; padding-left: 5px; padding-right: 5px; }
span.linenos { color: #6e7681; background-color: #0d1117; padding-left: 5px; padding-right: 5px; }
td.linenos .special { color: #e6edf3; background-color: #6e7681; padding-left: 5px; padding-right: 5px; }
span.linenos.special { color: #e6edf3; background-color: #6e7681; padding-left: 5px; padding-right: 5px; }
.highlight .hll { background-color: #505153 }
.highlight .c { color: #8b949e; font-style: italic } /* Comment */
.highlight .err { color: #f85149 } /* Error */
.highlight .esc { color: #e6edf3 } /* Escape */
.highlight .g { color: #e6edf3 } /* Generic */
.highlight .k { color: #ff7b72 } /* Keyword */
.highlight .l { color: #a5d6ff } /* Literal */
.highlight .n { color: #e6edf3 } /* Name */
.highlight .o { color: #ff7b72; font-weight: bold } /* Operator */
.highlight .x { color: #e6edf3 } /* Other */
.highlight .p { color: #e6edf3 } /* Punctuation */
.highlight .ch { color: #8b949e; font-style: italic } /* Comment.Hashbang */
.highlight .cm { color: #8b949e; font-style: italic } /* Comment.Multiline */
.highlight .cp { color: #8b949e; font-weight: bold; font-style: italic } /* Comment.Preproc */
.highlight .cpf { color: #8b949e; font-style: italic } /* Comment.PreprocFile */
.highlight .c1 { color: #8b949e; font-style: italic } /* Comment.Single */
.highlight .cs { color: #8b949e; font-weight: bold; font-style: italic } /* Comment.Special */
.highlight .gd { color: #ffa198; background-color: #490202 } /* Generic.Deleted */
.highlight .ge { color: #e6edf3; font-style: italic } /* Generic.Emph */
.highlight .gr { color: #ffa198 } /* Generic.Error */
.highlight .gh { color: #79c0ff; font-weight: bold } /* Generic.Heading */
.highlight .gi { color: #56d364; background-color: #0f5323 } /* Generic.Inserted */
.highlight .go { color: #8b949e } /* Generic.Output */
.highlight .gp { color: #8b949e } /* Generic.Prompt */
.highlight .gs { color: #e6edf3; font-weight: bold } /* Generic.Strong */
.highlight .gu { color: #79c0ff } /* Generic.Subheading */
.highlight .gt { color: #ff7b72 } /* Generic.Traceback */
.highlight .g-Underline { color: #e6edf3; text-decoration: underline } /* Generic.Underline */
.highlight .kc { color: #79c0ff } /* Keyword.Constant */
.highlight .kd { color: #ff7b72 } /* Keyword.Declaration */
.highlight .kn { color: #ff7b72 } /* Keyword.Namespace */
.highlight .kp { color: #79c0ff } /* Keyword.Pseudo */
.highlight .kr { color: #ff7b72 } /* Keyword.Reserved */
.highlight .kt { color: #ff7b72 } /* Keyword.Type */
.highlight .ld { color: #79c0ff } /* Literal.Date */
.highlight .m { color: #a5d6ff } /* Literal.Number */
.highlight .s { color: #a5d6ff } /* Literal.String */
.highlight .na { color: #e6edf3 } /* Name.Attribute */
.highlight .nb { color: #e6edf3 } /* Name.Builtin */
.highlight .nc { color: #f0883e; font-weight: bold } /* Name.Class */
.highlight .no { color: #79c0ff; font-weight: bold } /* Name.Constant */
.highlight .nd { color: #d2a8ff; font-weight: bold } /* Name.Decorator */
.highlight .ni { color: #ffa657 } /* Name.Entity */
.highlight .ne { color: #f0883e; font-weight: bold } /* Name.Exception */
.highlight .nf { color: #d2a8ff; font-weight: bold } /* Name.Function */
.highlight .nl { color: #79c0ff; font-weight: bold } /* Name.Label */
.highlight .nn { color: #ff7b72 } /* Name.Namespace */
.highlight .nx { color: #e6edf3 } /* Name.Other */
.highlight .py { color: #79c0ff } /* Name.Property */
.highlight .nt { color: #7ee787 } /* Name.Tag */
.highlight .nv { color: #79c0ff } /* Name.Variable */
.highlight .ow { color: #ff7b72; font-weight: bold } /* Operator.Word */
.highlight .pm { color: #e6edf3 } /* Punctuation.Marker */
.highlight .w { color: #6e7681 } /* Text.Whitespace */
.highlight .mb { color: #a5d6ff } /* Literal.Number.Bin */
.highlight .mf { color: #a5d6ff } /* Literal.Number.Float */
.highlight .mh { color: #a5d6ff } /* Literal.Number.Hex */
.highlight .mi { color: #a5d6ff } /* Literal.Number.Integer */
.highlight .mo { color: #a5d6ff } /* Literal.Number.Oct */
.highlight .sa { color: #79c0ff } /* Literal.String.Affix */
.highlight .sb { color: #a5d6ff } /* Literal.String.Backtick */
.highlight .sc { color: #a5d6ff } /* Literal.String.Char */
.highlight .dl { color: #79c0ff } /* Literal.String.Delimiter */
.highlight .sd { color: #a5d6ff } /* Literal.String.Doc */
.highlight .s2 { color: #a5d6ff } /* Literal.String.Double */
.highlight .se { color: #79c0ff } /* Literal.String.Escape */
.highlight .sh { color: #79c0ff } /* Literal.String.Heredoc */
.highlight .si { color: #a5d6ff } /* Literal.String.Interpol */
.highlight .sx { color: #a5d6ff } /* Literal.String.Other */
.highlight .sr { color: #79c0ff } /* Literal.String.Regex */
.highlight .s1 { color: #a5d6ff } /* Literal.String.Single */
.highlight .ss { color: #a5d6ff } /* Literal.String.Symbol */
.highlight .bp { color: #e6edf3 } /* Name.Builtin.Pseudo */
.highlight .fm { color: #d2a8ff; font-weight: bold } /* Name.Function.Magic */
.highlight .vc { color: #79c0ff } /* Name.Variable.Class */
.highlight .vg { color: #79c0ff } /* Name.Variable.Global */
.highlight .vi { color: #79c0ff } /* Name.Variable.Instance */
.highlight .vm { color: #79c0ff } /* Name.Variable.Magic */
.highlight .il { color: #a5d6ff } /* Literal.Number.Integer.Long */

blockquote {
  background: #f9f9f9;
  border-left: 5px solid #ccc;
  margin: 1.5em 10px;
  padding: 0.5em 10px;
}

@media (prefers-color-scheme: dark) {
    .single-manuals .page_white {
        background-color: black !important;
    }

    .single-manuals .page_white .e-con-boxed {
        background-color: black !important;
    }

    .single-manuals .page_white .elementor-widget-theme-post-content .elementor-widget-container {
        background-color: black !important;
    }

    .single-manuals img[alt~="invert"] {
        filter: invert(100%);
    }
}

.lang-loader {
	border: 4px solid #f3f3f3;   
	border-top: 4px solid #3498db;   
	border-radius: 50%;   
	width: 20px;   
	height: 20px;   
	animation: lang-loader-spin 2s linear infinite;   
}


@keyframes lang-loader-spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}


