.help_bubble {
	background: white;
	position: absolute;
	/* transform: translate(-200%,-200%);*/
	left: 0%;
	top: 0%;
	border: 4px solid #01537c;
	padding: 20px;
	font-size: 20px;
	background: rgb(6, 0, 111);
	background: linear-gradient(137deg, rgba(0, 41, 62, 1) 0%, rgba(0, 41, 62, 1) 20%, rgba(0, 41, 62, 0.6) 100%);
	color: white;
	display: none;
	z-index: 9999;
	/*transition: transform 1s;*/
}

.help_bubble.show {
	/*transform: none;*/
	display: block;
}

.help_bubble:before,
.help_bubble:after {
	content: "";
	width: 0;
	height: 0;
	border-style: solid;
	position: absolute;
	top: 22px;
}

.help_bubble:before {
	left: 2px;
	transform: translate(-100%, -100%) rotate(315deg);
	border-width: 0 20px 80px 20px;
	border-color: transparent transparent #01537c transparent;
}

.help_bubble:after {
	left: 4px;
	transform: translate(-100%, -100%) rotate(315deg);
	border-width: 0 16px 68px 16px;
	border-color: transparent transparent #00293e transparent;
}

/*
.help_bubble.top_left {
	transform: none;
}

.help_bubble.top_left>div {
	transform: none;
}

.help_bubble.top_right {
	transform: rotateY(-180deg);
}

.help_bubble.top_right>div {
	transform: rotateY(-180deg);
}

.help_bubble.bottom_left {
	transform: rotateX(-180deg);
}

.help_bubble.bottom_left>div {
	transform: rotateX(-180deg);
}

.help_bubble.bottom_right {
	transform: rotate(-180deg);
}

.help_bubble.bottom_right>div {
	transform: rotate(-180deg);
}

*/



.help_bubble .close a {
    font-weight: bold;
    color: white;
    font-size: 18px;
    display: table;
    margin: 20px auto 0 auto;
    background: #01537ce0;
    border: 2px solid #01537c;
    text-decoration: none;
    border-radius: 5px;
    padding: 5px 10px;
}
