.phrn-GlowHover:hover, .phrn-GlowFocus:focus
	{
	outline:none;
    border-color:#9ecaed;
    box-shadow:0 0 10px #9ecaed;
	}
	
.phrn-CheckOk
	{
	background-repeat: no-repeat;
	background-position: right center;
	background-image:url('//cdn.turbolab.it/images/check_ok.svg');
	}
			
.phrn-CheckErr
	{
	background-repeat: no-repeat;
	background-position: right center;
	background-image:url('//cdn.turbolab.it/images/check_err.svg');
	}
	
.phrn-RoundCorner
	{
	border-radius: 7px;
	}
	
.phrn-Help
	{
	width: 32px;
	height: 32px;
	vertical-align: middle;
	}
	
.phrn-Equispaced
	{
	display: flex;
	justify-content: space-between;
	align-items: center;

	/* iPhone (up to 5s) compatibility */
	display: -webkit-flex;
	-webkit-justify-content: space-between;
	-webkit-align-items: center;
	/* end iPhone */
	}
	
.phrn-EquispacedAround
	{
	/*@extend .phrn-Equispaced;*/
		display: flex;
		align-items: center;
	
		display: -webkit-flex;
		-webkit-align-items: center;
	/*end @extend */
	
	justify-content: space-around;
	
	/* iPhone (up to 5s) compatibility */
	-webkit-justify-content: space-around;
	/* end iPhone */
	}
	
.phrn-InputField
	{
	background: #CCE0FB url("/images/none.gif") no-repeat right center;
	background-size: contain;
	
	border-style: none;
	padding: 0.5em;
	
	width: 100%;
	
	color: white;
	font-weight: bold;
	text-transform: uppercase;
	}
	
.phrn-InputField::-webkit-input-placeholder
	{
	color: silver;
	}
	
.phrn-InputField:focus
	{
	background-image: none !important;
	}
	
.phrn-FlatButton
	{
	background: #CCE0FB url("/images/none.gif") no-repeat center center;
	background-size: contain;
	
	border-style: none;
	padding: 0.9em;
	
	width: 100%;
	
	color: white;
	font-weight: bold;
	text-transform: uppercase;
	}
	
.phrn-EnablePlaceholder:empty:before
	{
	color: silver;
  	content: attr(placeholder);
	}
	
.phrn-LightAnimation
	{
	-webkit-transition: all 0.5s ease-in-out;
  	-moz-transition: all 0.5s ease-in-out;
  	-o-transition: all 0.5s ease-in-out;
  	transition: all 0.5s ease-in-out;
	}

.phrn-Rotate180
	{
	-ms-transform: rotate(180deg); /* IE 9 */
    -webkit-transform: rotate(180deg); /* Chrome, Safari, Opera */
    transform: rotate(180deg);
	}
	
	
a.phrn-external_link:hover
	{
	padding-right: 14px;
	background: url("//cdn.turbolab.it/images/external_link.png") no-repeat scroll right center;
	}
	
	
/*
phrn-mobileonly-show: l'elemento è nascosto su desktop, visibile su mobile
phrn-mobileonly-hide: l'elemento è nascosto su mobile , visibile su desktop

Considero "mobile" un viewport pari o inferiore a 800px (tablet Android in portrait - iPad: 768px)
Da 801 in poi, sono "desktop"
*/
@media screen and (max-width: 800px) {
    .phrn-mobileonly-show { }
    
    .phrn-mobileonly-hide {
        display: none;
	}
}

@media screen and (min-width: 801px) {
    .phrn-mobileonly-show {
    	display: none;
	}
    
    .phrn-mobileonly-hide { }
}
	