/* NPS gadget */
.nps-gadget {
	text-align: center;
	padding-top: 48px;
}

.nps-gadget__main-score {
	float: left;
	width: 40%;
	padding: 0 10px;
}

.nps-gadget__score {
	display: inline-block;
	width: 20%;
	padding: 40px 10px;
}

.nps-gadget__label {
	display: block;
	font-weight: bold;
}

/* NPS circle element */
.nps {
	display: inline-block;
	height: 200px;
	margin-right: 30px;
	width: 200px;
	position: relative;
}

.nps__bg-circle {
	width: 200px;
	height: 200px;
	border: 15px solid #d6dadc;
	border-radius: 50%;
	position: absolute;
}

.nps__circle-wrapper {
	width: 200px; /* Set the size of the progress bar */
	height: 200px;
	position: absolute; /* Enable clipping */

}

.nps__circle-wrapper--left {
	clip: rect(0px, 200px, 200px, 100px);
	transform: rotate(180deg);
}

.nps__circle-wrapper--right {
	clip: rect(0px, 200px, 200px, 100px);
}

/* Set the sizes of the elements that make up the progress bar */
.nps__circle {
	width: 200px;
	height: 200px;
	border: 15px solid #016EA6;
	border-radius: 50%;
	position: absolute;
	transition: -webkit-transform .5s;
	transition: -ms-transform .5s;
	transition: transform .5s;
}

.nps__circle--left {
	clip: rect(0px, 100px, 200px, 0px);
	transform: rotate(0deg);
}

.nps__circle--right {
	clip: rect(0px, 100px, 200px, 0px);
	transform: rotate(0deg);
	-webkit-transition-delay: .5s;
	transition-delay: .5s;
}

.nps__score {
	display: block;
	width: 100%;
	text-align: center;
	font-family: "Lato", "Helvetica Neue", Helvetica, Arial, sans-serif;
	color: #2a3139;
	font-weight: 800;
	font-size: 48px;
	position: absolute;
	top: 50%;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
}

.nps__cut {
	background: #fff;
	height: 50px;
	position: absolute;
	bottom: -20px;
	left: 50%;
	width: 50px;
	transform: translateX(-50%) rotate(45deg);
}

.light-grey .nps__cut { background: #eff1f6; }
.medium-grey .nps__cut { background: #3e4956; }
.dark-grey .nps__cut { background-color: #2a3139; }

.nps__base{
	font-size: 10px;
	position: absolute;
}

.nps__base--start {
	top: 100%;
	left: 50px;
}

.nps__base--middle {
	top: -30px;
	left: 50%;
	transform: translateX(-50%);
}

.nps__base--end {
	top: 100%;
	right: 50px;
}

@media only screen and (min-width: 0) and (max-width: 767px) {
	.nps {
		display: block;
		margin: 0 auto 64px;
	}
	.nps-gadget__score {
		display: block;
		width: 100%;
	}

}

