/* TOOLTIP CODE */
.tooltipmark, .tooltipbox, .tooltip-text {
	cursor: pointer;
}
.tooltipmark {
	position: relative;
	vertical-align: super;
	border-radius: 1em;
	padding-left: 4px;
	padding-right: 4px;
	font-size: 10px;
	font-weight: bold;
	margin-left: -1px;
	margin-right: 2px;
}
.tooltipmark:hover {
	box-shadow: 0px 0px 3px 1px #e2e6e9;
}
.tooltip-text {
	position: absolute;
	left: -500px;
	right: -500px;
	max-width: 130px!important;
	min-width: 75px;
	justify-self: center;
	transition: 0.2s ease-in;
	-webkit-transition: .2s ease-in;
	z-index: 1000!important;
	will-change: transform;
	opacity: 0;
	visibility: hidden;
	white-space: normal;
	padding: 0.5rem;
	text-align: center;
	font-size: 12px;
	border-radius: 10px;
	border: 1px solid;
	text-shadow: none;
	font-weight: normal;
}
.tooltipmark:hover > .tooltip-text, .tooltipbox:hover > .tooltip-text {
	visibility: visible;
	opacity: 1;
}
/* SAME AS TOOLTIPMARK BUT MEANT FOR OTHER ELEMENTS THAN QUESTIONMARK TOOLTIP */
.tooltipbox {
	position: relative;
	width: 100%;
	align-content: center;
	align-items: center;
}
.tooltipbox:hover {
}
.tooltip-text::after {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	margin: 0 auto;
	width: 12px;
	height: 12px;
	border: 1px solid;
	border-top: 0;
	border-left: 0;
}
.top {
	bottom: 2.5em;
	margin: 0 auto;
}
.top::after {
	bottom: -7px;
	transform: rotateZ(45deg);
}
.bottom {
	bottom: -3.5em;
	margin: 0 auto;
}
.bottom::after {
	top: -7px;
	transform: rotateZ(225deg);
}
.bottom-left {
	bottom: -3.5em;
	margin: 0 auto;
	left: -2.375rem;
	right: auto;
}
.bottom-left::after {
	top: -7px;
	transform: rotateZ(225deg);
	right: 1.375rem;
	left: auto;
}
.right {
	left: calc(100% + 0.375rem);
	right: auto;
	top: -200%;
	bottom: -200%;
	margin: 0 auto;
	align-self: center;
	width: 265px;
	max-width: 265px!important;
}
.right::after {
	top: 0;
	bottom: 0;
	left: -7px;
	right: auto;
	align-self: anchor-center;
	transform: rotateZ(135deg);
}
.tooltipbox.responsive-to-parent-el {
	position: unset;
}
.tooltipbox.responsive-to-parent-el .right {
	max-width: 100%!important;
}
@media (max-width: 1590px) {
	.right {
		left: 4.25rem;
		right: auto;
		top: 5rem;
		bottom: auto;
	}
}
@media (max-width: 1270px) {
	.right {
		top: -100%;
		bottom: -100%;
	}
}