a.disabled {
	background-color: #ddd;
}

.intensity-diagram-circle {
	width: 100px;
	height: 100px;
	border-radius: 50%;
	border: 1px solid #ddd;
}

.aroma {
	margin: 50px 10px;
	padding: 10px;
}

.aroma .thumb {
	cursor: pointer;
	margin-bottom: 30px;
	transition: all 300ms ease;
}

.aroma.inactive .thumb {
	opacity: 0.3;
	pointer-events: none;
}

.aroma a::after {
	content: '';
	display: block;
	margin-top: 12px;
	border-bottom: 3px solid var(--b-green);
	transform: scaleX(0);
	transition: transform 250ms ease-in-out;
}

.aroma.selected .thumb {
	box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
	border-radius: 20px;
}

.aroma.selected a::after {
	transform: scaleX(1);
}

@property --p{
	syntax: '<number>';
	inherits: true;
	initial-value: 0;
}

.color-pie-bambu-fresh {
	--c: rgba(200, 230, 120, 1);
}

.color-pie-cherry-blossom {
	--c: rgba(255, 224, 1, 1);
}

.color-pie-lavanda {
	--c: rgba(70, 101, 41, 1);
}

.color-pie-lemongrass {
	--c: rgba(195, 229, 119, 1);
}

.color-pie-maderas-mediterraneo {
	--c: rgba(178, 139, 98, 1);
}

.color-pie-manzana-verde {
	--c: rgba(255, 224, 1, 1);
}

.color-pie-menta {
	--c: rgba(70, 101, 41, 1);
}

.color-pie-naranja {
	--c: rgba(195, 229, 119, 1);
}

.color-pie-rosas {
	--c: rgba(250, 130, 206, 1);
}

.color-pie-te-blanco {
	--c: rgba(250, 130, 206, 1);
}


.bg-bambu-fresh {
	background-color: rgba(200, 230, 120, 1);
}

.bg-cherry-blossom {
	background-color: rgba(255, 224, 1, 1);
}

.bg-lavanda {
	background-color: rgba(70, 101, 41, 1);
}

.bg-lemongrass {
	background-color: rgba(195, 229, 119, 1);
}

.bg-maderas-mediterraneo {
	background-color: rgba(178, 139, 98, 1);
}

.bg-manzana-verde {
	background-color: rgba(255, 224, 1, 1);
}

.bg-menta {
	background-color: rgba(70, 101, 41, 1);
}

.bg-naranja {
	background-color: rgba(195, 229, 119, 1);
}

.bg-rosas {
	background-color: rgba(250, 130, 206, 1);
}

.bg-te-blanco {
	background-color: rgba(250, 130, 206, 1);
}

.pie {
	/*--p: 20;*/
	--b:10px;
	/*--b: 22px;*/
	/*--c: darkred;*/
	--w: 150px;
	width: var(--w);
	aspect-ratio: 1;
	position: relative;
	display: inline-grid;
	margin: 5px;
	place-content: center;
	font-size: 25px;
	font-weight: bold;
	font-family: sans-serif;
}

.pie:before,
.pie:after {
	content: "";
	position: absolute;
	border-radius: 50%;
}
.pie:before {
	inset:0;
	background: radial-gradient(farthest-side, var(--c) 98%, #0000) top/var(--b) var(--b) no-repeat, conic-gradient(var(--c) calc(var(--p)*1%), #0000 0);
	-webkit-mask: radial-gradient(farthest-side, #0000 calc(99% - var(--b)), #000 calc(100% - var(--b)));
	mask: radial-gradient(farthest-side, #0000 calc(99% - var(--b)), #000 calc(100% - var(--b)));
	border: 1px solid #ddd;
	transition: --p 500ms;
}

.pie:after {
	inset: calc(50% - var(--b) / 2);
	background: var(--c);
	transform: rotate(calc(var(--p) * 3.6deg)) translateY(calc(50% - var(--w) / 2));
}

.animate {
	animation: p 1s .5s both;
}

.no-round:before {
	background-size: 0 0, auto;
}

.no-round:after {
	content: none;
}

@keyframes p {
	from { --p: 0 }
}

.blend-graph .graph-box li {
    height: 70px;
    padding: 8px;
    font-size: 12px;
    font-size: 1.2rem;
    font-family: 'Roboto', sans-serif;
    font-weight: 500;
    color: #FFF;
    text-align: center;
    vertical-align: middle;
    letter-spacing: 0.05em;
    border-left: 2px solid #FFF;
    border-right: 2px solid #FFF;
    display: table-cell;
    overflow: hidden;
    transition: all 600ms cubic-bezier(0.74, 0, 0.32, 1);
    -webkit-transition: all 600ms cubic-bezier(0.74, 0, 0.32, 1);
}

.blend-graph .graph-box li p {
	height: 1.8em;
	overflow: hidden;
	margin-bottom: 0px;
}

.blend-graph .scale {
	display: flex;
	width: 100%;
	justify-content: space-between;
}

.blend-graph .scale li {
	font-weight: bold;
}

.blend-graph .graph-box {
	display: table;
	width: 100%;
	table-layout: fixed;
}

@media screen and (max-width: 767px) {
	.pie {
		--w: 110px;
	}
}