/**
 * cta-badges.css
 */


.gb-button.has-badge {
	border-radius: 10px;
}

.has-badge {
	position: relative;
}

.cta-badge {
	position: absolute;
	border-radius: 50%;
	width:  50px;
	height:  50px;
	left: 0;
	top: 0;
/* 	transform: translate(-50%, -50%) rotate(-35deg); */
	transform: translate(-50%, -50%);
	background-color: #0a9594;
	box-shadow: 0 0 10px #0006;
/* 	border:  2px solid #000; */
	border:  2px solid white;
}

.cta-badge .badge-inner {
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
/* 	border: 1px solid red; */
	line-height: 1;
	font-weight: bold;
}

.cta-badge .badge-inner svg {
	width:  30px;
	height:  30px;
}

.cta-badge .badge-inner svg path {
	fill:  white;
}