

.fa-beat {
	animation: fa-beat 5s ease infinite;
	color: #ed6b00;
}

#h2g2wizard {
	margin: 0 10px 10px 0;
	position: fixed;
	bottom: 0;
	right: 0;
	z-index: 1500;
	display: flex;
	align-items: center;
	flex-direction: column;
	cursor: pointer;
}

#h2g2wizard .bubble {
	transform: translatey(0px);
	-webkit-animation: float 3s ease-in-out infinite;
	animation: float 3s ease-in-out infinite;
	mix-blend-mode: multiply;
	text-align: center;
	/*text-transform: uppercase;*/
	font-weight: bold;
	letter-spacing: 3px;
	font-size: 15px;
	color: #fc8635;
	background-color: #FFF;
	opacity: 0.9;
	padding: 30px;
	border-radius: 11px;
	position: relative;
	box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
	font-family: "Baloo 2", cursive;
	max-width: 300px;
}

#h2g2wizard lottie-player {
	width: 200px;
	height: 200px;
}

.h2g2wizard__close {
	width: 100%;
	display: flex;
	justify-content: flex-end;
	padding: 10px;
	-webkit-animation: float 3s ease-in-out infinite;
	animation: float 3s ease-in-out infinite;
}

.h2g2wizard__close-circle {
	background-color: #FFF;
	opacity: 0.9;
	width: 30px;
	height: 30px;
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

.h2g2wizard__close-circle:hover {
	background-color: #eaebee;
}

.h2g2wizard__close-icon {

}

@-webkit-keyframes float {
	0% {
		transform: translatey(0px);
	}
	50% {
		transform: translatey(-20px);
	}
	100% {
		transform: translatey(0px);
	}
}

@keyframes float {
	0% {
		transform: translatey(0px);
	}
	50% {
		transform: translatey(-20px);
	}
	100% {
		transform: translatey(0px);
	}
}
@-webkit-keyframes float2 {
	0% {
		line-height: 30px;
		transform: translatey(0px);
	}
	55% {
		transform: translatey(-20px);
	}
	60% {
		line-height: 10px;
	}
	100% {
		line-height: 30px;
		transform: translatey(0px);
	}
}
@keyframes float2 {
	0% {
		line-height: 30px;
		transform: translatey(0px);
	}
	55% {
		transform: translatey(-20px);
	}
	60% {
		line-height: 10px;
	}
	100% {
		line-height: 30px;
		transform: translatey(0px);
	}
}

/*
 * Multiselect button
 */
.h2g2multiselect {
	position: relative;
	display: flex;
}

.h2g2multiselect .h2g2multiselect_create {
	background: #8DB600;
}

.h2g2multiselect .h2g2multiselect_delete {
	background: #8c4446;
}

.h2g2multiselect .butAction.h2g2multiselect__button,
.h2g2multiselect .butActionRefused.h2g2multiselect__button {
	margin-right: 1px !important;
	border-top-right-radius: 0;
	border-bottom-right-radius: 0;
	display: flex;
	align-items: center;
}

.h2g2multiselect .butAction.h2g2multiselect__button.without-action,
.h2g2multiselect .butActionRefused.h2g2multiselect__button.without-action {
	border-radius: 3px;
}

.h2g2multiselect .h2g2multiselect__button span,
.h2g2multiselect .h2g2multiselect__button i {
	margin-right: .2rem;
}

.h2g2multiselect .h2g2multiselect__chevron {
	margin-left: 0;
	border-top-left-radius: 0;
	border-bottom-left-radius: 0;
}

.h2g2multiselect .without-action .h2g2multiselect__chevron {
	margin-left: 1rem;
}

.h2g2multiselect .h2g2multiselect__chevron i:first-child {
	transform: rotate(0deg);
	transition: transform .2s linear;
}

.h2g2multiselect .h2g2multiselect__chevron.up i:first-child {
	transform: rotate(180deg);
	transition: transform .2s linear;
}

.h2g2multiselect .h2g2multiselect__chevron.down i:first-child {
	transform: rotate(180deg);
	transition: transform .2s linear;
}
.h2g2multiselect .h2g2multiselect__options {
	z-index: 2;
	position: absolute;
	right: 0;
	margin-right: 1rem;

	width: max-content;
	max-width: 300px;

	display: flex;
	flex-direction: column;
	box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
	border-radius: 3px;
	background: white;
	visibility: visible;
	padding: 1rem;
	opacity: 1;
}

.h2g2multiselect .h2g2multiselect__options.optionsup {
	bottom: 45px;
	transition: bottom .5s, opacity .2s linear;
}

.h2g2multiselect .h2g2multiselect__options.optionsup.hidden {
	visibility: hidden;
	height: 0;
	opacity: 0;
	bottom: 0;
}

.h2g2multiselect .h2g2multiselect__options.optionsdown {
	top: 45px;
	transition: top .5s, opacity .2s linear;
}

.h2g2multiselect .h2g2multiselect__options.optionsdown.hidden {
	visibility: hidden;
	height: 0;
	opacity: 0;
	top: 0;
}

.h2g2multiselect .h2g2multiselect__options-entry {
	display: flex;
	margin: .5rem 0;
	align-items: center;
}

.h2g2multiselect .h2g2multiselect__options-entry_icon {
	margin: 0 .5rem 0 0;
	width: 20px;
	height: 20px;
	display: flex;
	justify-content: center;
	align-items: center;
}

.h2g2multiselect .h2g2multiselect__options-entry_label {
	flex: 1;
	font-size: 1rem;
	display: flex;
	justify-content: flex-start;
	align-items: center;
}

.h2g2multiselect .h2g2multiselect__options-entry_label a {
	text-decoration: none;
	color: black;
}

/* Disable state */
.h2g2multiselect .h2g2multiselect__options-entry.disabled {
	opacity: .5;
}

.h2g2multiselect .disabled .h2g2multiselect__options-entry_label a:hover {
	cursor: not-allowed;
}





.h2g2tooltip {
	position: relative;
}
.h2g2tooltip__item {
	position: absolute;
	min-width: 200px;
	padding: 5px;
	visibility: hidden;
	opacity: 0;
	background: white;
	transition: all 0.25s cubic-bezier(0, 0, 0.2, 1);
	color: #484848;
	border: 1px solid #cecece;
	border-radius: 3px;
	font-weight: 500;
	/*box-shadow: 0 2px 1px #bcbcbc;*/
	z-index: 4;
}
.h2g2tooltip__item:after {
	content: "";
	display: block;
	position: absolute;
	width: 0;
	height: 0;
	border-style: solid;
}
.h2g2tooltip__initiator {
	cursor: pointer;
	z-index: 5;
}
.h2g2tooltip[data-direction=left] .h2g2tooltip__initiator:hover ~ .h2g2tooltip__item {
	transform: translate3d(0, -50%, 0);
	visibility: visible;
	opacity: 1;
	transition-delay: 1s;
}
.h2g2tooltip[data-direction=left] .h2g2tooltip__item {
	top: 50%;
	right: calc(100% + 1em);
	transform: translate3d(15px, -50%, 0);
}
.h2g2tooltip[data-direction=left] .h2g2tooltip__item:after {
	top: 50%;
	right: -0.5em;
	transform: translate3d(0, -50%, 0);
	border-width: 0.5em 0 0.5em 0.5em;
	border-color: transparent transparent transparent white;
	-webkit-filter: drop-shadow(1px 2px 1px #bcbcbc);
	filter: drop-shadow(1px 2px 1px #bcbcbc);
}

.h2g2tooltip[data-direction=bottom] .h2g2tooltip__initiator:hover ~ .h2g2tooltip__item {
	transform: translate3d(-50%, 0, 0);
	visibility: visible;
	opacity: 1;
}
.h2g2tooltip[data-direction=bottom] .h2g2tooltip__item {
	top: calc(100% + 1em);
	left: 50%;
	transform: translate3d(-50%, -15px, 0);
}
.h2g2tooltip[data-direction=bottom] .h2g2tooltip__item:after {
	top: -0.5em;
	left: 50%;
	transform: translate3d(-50%, 0, 0);
	border-width: 0 0.5em 0.5em 0.5em;
	border-color: transparent transparent white transparent;
	-webkit-filter: drop-shadow(1px 2px 1px #bcbcbc);
	filter: drop-shadow(1px -1px 1px #bcbcbc);
}
