/* Pulsante al'interno delle viste (soprattutto integrate nelle pagine) */
.views-block-vai-al-configuratore {
	text-align: center;

	.views-row {
		display: inline-block;
	}
}

/* Blocchi */
.block-vai-al-configuratore {
	.content {
		display: inline-block;
	}
}

/* Pulsante */
a.go-to-wizard {
	--background-color: #f0b000 !important;
  --color: #000 !important;

  --color-hover: #000 !important;
  --background-color-hover: #f9d04b !important;

	display: inline-flex;
	align-items: center;
	justify-content: center;

	width: auto;
	padding: 1rem 2rem;
	padding-top: 1.1rem;

	font-size: 1rem;
	font-weight: normal;
	text-align: center;
	text-decoration: none !important;

	-moz-border-radius: 0.5rem;
	-webkit-border-radius: 0.5rem;
	border-radius: 0.5rem;

	cursor: pointer;

	/* Pulsante Versione Nera */
	&.go-to-wizard-black {
		--color: #fff !important;
		--background-color: #000 !important;

    --color-hover: #000 !important;
    --background-color-hover: #fff !important;

		border: 1px solid #fff;
		padding: 10px 16px;
	}
}

/* Solo Desktop */
.is-desktop {
	a.go-to-wizard:hover {
		text-decoration: none !important;
    opacity: 1;

		&.go-to-wizard-black {
			border: 1px solid #fff;
		}
	}
}
