/* This is in a separate file so WP Rocket excludes it from "Remove Unused CSS" */

/* Anchors */

.anchoring {
  position: relative;
}
.anchoring > .anchor {
  position: absolute;
  display: block;
  width: 1em;
  left: -1em;
  text-decoration: none;
  color: inherit;
  opacity: 0.1;
  -webkit-transition: opacity 0.2s;
  -moz-transition: opacity 0.2s;
  -ms-transition: opacity 0.2s;
  -o-transition: opacity 0.2s;
  transition: opacity 0.2s;
}
.anchoring:hover > .anchor {
  opacity: 1;
}

/* Carets in menu. Will be removed sooner or later */

.elementor-nav-menu .sub-arrow {
    font-size: 16px;
    line-height: 1;
    padding: 10px 0 10px 10px;
    margin-top: -10px;
    margin-bottom: -10px;
}

.elementor-nav-menu--indicator-classic .elementor-nav-menu .sub-arrow i::before {
    content: "";
}

/* Code blocks */
pre[class*="language-"] {
	padding: 1em;
	margin: 20px 0 30px;
	overflow: auto;
}

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

/* Inline code */
:not(pre) > code[class*="language-"] {
	padding: .1em;
	border-radius: .3em;
}

.token.comment,
.token.prolog,
.token.doctype,
.token.cdata {
	color: slategray;
}

.token.punctuation {
	color: #999;
}

.namespace {
	opacity: .7;
}

.token.property,
.token.tag,
.token.boolean,
.token.number,
.token.constant,
.token.symbol {
	color: #905;
}

.token.selector,
.token.attr-name,
.token.string,
.token.builtin {
	color: #690;
}

.token.operator,
.token.entity,
.token.url,
.language-css .token.string,
.style .token.string,
.token.variable {
	color: #a67f59;
	background: hsla(0,0%,100%,.5);
}

.token.atrule,
.token.attr-value,
.token.keyword {
	color: #07a;
}

.token.function {
	color: #DD4A68;
}

.token.regex,
.token.important {
	color: #e90;
}

.token.important {
	font-weight: bold;
}

.token.entity {
	cursor: help;
}