/*!* Box colors *!*/
/*.bg-1 {*/
	/*background: #ECEFF1;*/
	/*color: #37474f;*/
/*}*/
/*.bg-2 {*/
	/*background: #7986cb;*/
	/*color: #ECEFF1;*/
/*}*/
/*.bg-3 {*/
	/*background: #37474f;*/
	/*color: #fff;*/
/*}*/

/* Common button styles */
.buttonManagement {
	/*float: left;*/
	min-width: 150px;
	max-width: 250px;
	display: block;
	/*margin: 1em;*/
	padding: 1em 2em;
	border: none;
	background: none;
	color: inherit;
	vertical-align: middle;
	position: relative;
	z-index: 1;
	-webkit-backface-visibility: hidden;
	-moz-osx-font-smoothing: grayscale;
}
@media screen and (max-width: 768px){
	.buttonManagement {
		margin-left: 250px !important;
	}
}
.buttonManagement:focus {
	outline: none;
}
/*.button > span {*/
	/*vertical-align: middle;*/
/*}*/

/* Text color adjustments (we could stick to the "inherit" but that does not work well in Safari) */
/*.bg-1 .button {*/
	/*color: #37474f;*/
	/*border-color: #37474f;*/
/*}*/
/*.bg-2 .button {*/
	/*color: #ECEFF1;*/
	/*border-color: #ECEFF1;*/
/*}*/
/*.bg-3 .button {*/
	/*color: #fff;*/
	/*border-color: #fff;*/
/*}*/

/* Sizes */
.button--size-sManagement {
	font-size: 14px;
}
.button--size-mManagement {
	font-size: 16px;
}
.button--size-lManagement {
	font-size: 18px;
}

/*!* Typography and Roundedness *!*/
/*.button--text-upper {*/
	/*letter-spacing: 2px;*/
	/*text-transform: uppercase;*/
/*}*/
/*.button--text-thin {*/
	/*font-weight: 300;*/
/*}*/
/*.button--text-medium {*/
	/*font-weight: 500;*/
/*}*/
/*.button--text-thick {*/
	/*font-weight: 600;*/
/*}*/
.button--round-sManagement {
	border-radius: 5px;
}
.button--round-mManagement {
	border-radius: 15px;
}
.button--round-lManagement {
	border-radius: 40px;
}

/* Borders */
.button--border-thinManagement {
	border: 1px solid;
}
.button--border-mediumManagement {
	border: 2px solid;
}
.button--border-thickManagement {
	border: 3px solid;
}

/* Individual button styles */

/* Sacnite */
.button--sacniteManagement{
	background-image: url("/tools/img/visore_go_to_transparent.svg");
	background-repeat: no-repeat;
	background-size: 50px;
}

.buttonManagement.button--sacniteManagement {
	/*width: 70px;*/
	/*height: 70px;*/
	min-width: 0;
	padding: 0;
	color: white;
	-webkit-transition: color 0.3s;
	transition: color 0.3s;
}
.button--scaniteManagement.button--round-lManagement {
	border-radius: 50%;
}
.button--sacniteManagement.button--invertedManagement {
	color: #37474f;
}
.button--sacniteManagement::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	border-radius: inherit;
	z-index: -1;
	/*sfondo iniziale*/
	box-shadow: inset 0 0 0 35px #ffffff;

	/*background-image: url("/tools/img/visore_go_to_bianco.svg");*/
	/*background-repeat: no-repeat;*/
	/*background-size: 70px;*/

	-webkit-transform: scale3d(0.9, 0.9, 0);
	transform: scale3d(0.9, 0.9, 0);
	-webkit-transition: box-shadow 0.3s, -webkit-transform 0.3s;
	transition: box-shadow 0.3s, transform 0.3s;
}
.button--sacniteManagement.button--invertedManagement::before {
	box-shadow: inset 0 0 0 35px #fff;
}
.button--sacniteManagement .button__iconManagement {
	font-size: 22px;
	width: 22px;
}
/*.button--sacnite > span {*/
	/*position: absolute;*/
	/*opacity: 0;*/
	/*pointer-events: none;*/
/*}*/

.button--sacniteManagement:hover {
	/*icone dopo hover*/
	/*color: red;*/
	background-image: url("/tools/img/visore_black.svg");
	background-repeat: no-repeat;
	background-size: 50px;

}

@media screen and (max-width: 768px){
	.button--sacniteManagement:hover {
		margin-left: 250px !important;
	}
}
/*.button--sacnite.button--inverted:hover {*/
	/*color: yellow;*/
/*}*/
.button--sacniteManagement:hover::before {
	box-shadow: inset 0 0 0 2px transparent;
	-webkit-transform: scale3d(1, 1, 1);
	transform: scale3d(1, 1, 1);
}
.button--sacniteManagement.button--invertedManagement:hover::before {
	box-shadow: inset 0 0 0 2px #fff;
}