#evoTube_parent {
	position: absolute;
    width: 500px;
    right: -199px;
    bottom: 82px;
    overflow: visible;
	pointer-events: none;

	display: none;
}

#evoTube_glow {
	position: absolute;
    bottom: 73px;
    right: 33px;
    width: 32px;
    height: 256px;
    border-radius: 53px;
    filter: blur(11px);
    pointer-events: none;
    /* border: 12px solid #ff0000; */
    display: none;
    background: white;
	transition: 1s;
	opacity: 1;
}

#evoTube_label {
	position: absolute;
    bottom: 13px;
    right: 22px;
    display: flex;
    align-items: center;
    flex-direction: column;
    padding: 10px 8px;
    width: 35px;
    height: 25px;
    background: #1d1e22;
    color: white;
    font-size: 18px;
    font-family: "din-condensed-web", sans-serif;
    text-anchor: middle;
    letter-spacing: 1.2px;
    border-radius: 11px;
    display: none;
    text-align: center;
	display: none;
}

.evoTube_glow {
	animation: evoTube_glow 2s ease-in-out infinite alternate;
}

@keyframes evoTube_glow {
	0% {
		opacity: 1;
	}

	100% {
		opacity: 0.5;
	}
}