/* CLOUDY */

.overcloud
{
	/*animation: clouder 15s ease-in-out infinite;*/
	position:absolute;
}

.overcloud.smoker
{
	animation: clouder 15s ease-in-out infinite;
}

.sunny { 
	animation: sunny 20s linear infinite;
	background: linear-gradient(top, rgba(255,255,255,0) 0%, rgba(255,255,255,0.8) 50%, rgba(255,255,255,0) 100%); 
	height: 70px;
	width: 10px; 
	margin-left: -15px;
	position: absolute;
	left: 60px;  
	top: 20px;
}
.sunny:before {
	background: linear-gradient(top, rgba(255,255,255,0) 0%, rgba(255,255,255,0.8) 50%, rgba(255,255,255,0) 100%);
	content: ''; 
	height: 70px; 
	width: 10px;
	opacity: 1; 
	position: absolute;
	bottom: 0px;
	left: 0px; 
	transform: rotate(90deg);
}
.sunny:after {
	background: #FFEE44; 
	border-radius: 50%; 
	box-shadow: rgba(255,255,0,0.2) 0 0 0 15px;
	content: '';  
	height: 40px;
	width: 40px;  
	position: absolute; 
	left: -30px; 
	top: 30px;
}
@keyframes sunny { 
	0% { transform: rotate(0deg); }
	100% { transform: rotate(360deg); }
}


.cloudy {
	animation: cloudy 5s ease-in-out infinite;
	background: #FFFFFF;
	border-radius: 50%;
	box-shadow: 
		#FFFFFF 65px -15px 0 -5px, 
		#FFFFFF 25px -25px, 
		#FFFFFF 30px 10px, 
		#FFFFFF 60px 15px 0 -10px, 
		#FFFFFF 85px 5px 0 -5px;
	height: 50px;
	width: 50px; 
	position:absolute;
	transform: scale(0.5);
}



@keyframes cloudy {
	50% { transform: translateY(-5px) scale(0.5); }
}

@keyframes clouder {
	50% { transform: translateX(100px); }
}

/* STARRY */
.starry {
  	animation: starry_star 5s ease-in-out infinite;
	background: #fff;
	border-radius: 50%;  
	box-shadow:  
      	#FFFFFF 26px 7px 0 -1px, 
      	rgba(255,255,255,0.1) -36px -19px 0 -1px, 
      	rgba(255,255,255,0.1) -51px -34px 0 -1px,
      	#FFFFFF -52px -62px 0 -1px, 
      	#FFFFFF 14px -37px, 
      	rgba(255,255,255,0.1) 41px -19px,  
      	#FFFFFF 34px -50px,
      	rgba(255,255,255,0.1) 14px -71px 0 -1px,
      	#FFFFFF 64px -21px 0 -1px, 
      	rgba(255,255,255,0.1) 32px -85px 0 -1px,
      	#FFFFFF 64px -90px,
      	rgba(255,255,255,0.1) 60px -67px 0 -1px,  
      	#FFFFFF 34px -127px,
      	rgba(255,255,255,0.1) -26px -103px 0 -1px;
	height: 4px;
	width: 4px; 
	opacity: 1;
	margin-top:50px;
	position:relative;
	left:50px;
}

.starry.moreright
{
	left:130px;
	margin-top:30px;
}

.starry:after { 
	animation: starry 5s ease-in-out infinite;
	border-radius: 50%;
	box-shadow: #FFFFFF -25px 0;
	content: '';
	height: 50px;
	width: 50px;
	position: absolute;
	transform: rotate(-5deg);
	transform-origin: 0 50%;
}

@keyframes starry {
	50% { transform: rotate(10deg); }
}
@keyframes starry_star {
  50% { 
	box-shadow:  
		rgba(255,255,255,0.1) 26px 7px 0 -1px, 
      	#FFFFFF -36px -19px 0 -1px, 
      	#FFFFFF -51px -34px 0 -1px,
      	rgba(255,255,255,0.1) -52px -62px 0 -1px, 
      	rgba(255,255,255,0.1) 14px -37px,
      	#FFFFFF 41px -19px,   
      	rgba(255,255,255,0.1) 34px -50px,
      	#FFFFFF 14px -71px 0 -1px,
      	rgba(255,255,255,0.1) 64px -21px 0 -1px, 
      	#FFFFFF 32px -85px 0 -1px,
      	rgba(255,255,255,0.1) 64px -90px,
      	#FFFFFF 60px -67px 0 -1px,  
      	rgba(255,255,255,0.1) 34px -127px,
      	#FFFFFF -26px -103px 0 -1px;
	}
}

.rainy {
	
	background: #CCCCCC; 
	border-radius: 50%;
	box-shadow: 
		#CCCCCC 65px -15px 0 -5px, 
		#CCCCCC 25px -25px, 
		#CCCCCC 30px 10px, 
		#CCCCCC 60px 15px 0 -10px, 
		#CCCCCC 85px 5px 0 -5px;
	display: block;
	height: 50px;
	width: 50px;
	position: relative;
	top: 5px;
	left: 95px;
	transform: scale(.5);
}

.rainy:before {
	animation: rainy_rain .7s infinite linear;
	content: '';
	background: #CCCCCC;
	border-radius: 50%;
	display: block;
	height: 6px;
	width: 3px;
	opacity: 0.3;
	transform: scale(.9);
}

@keyframes rainy_rain {
	0% {  
		box-shadow: 
			rgba(0,0,0,0) 30px 30px, 
			rgba(0,0,0,0) 40px 40px,  
			#000 50px 75px, 
			#000 55px 50px, 
			#000 70px 100px, 
			#000 80px 95px, 
			#000 110px 45px, 
			#000 90px 35px; 
	}
	25% {  
	  	box-shadow: 
			#000 30px 45px,
			#000 40px 60px,
			#000 50px 90px,
			#000 55px 65px,
			rgba(0,0,0,0) 70px 120px,
			rgba(0,0,0,0) 80px 120px,
			#000 110px 70px,
			#000 90px 60px;
	}
	26% {  
		box-shadow:
			#000 30px 45px,
			#000 40px 60px,
			#000 50px 90px,
			#000 55px 65px,
			rgba(0,0,0,0) 70px 40px,
			rgba(0,0,0,0) 80px 20px,
			#000 110px 70px,
			#000 90px 60px; 
	}
	50% { 
		box-shadow:
			#000 30px 70px,
			#000 40px 80px,
			rgba(0,0,0,0) 50px 100px,
			#000 55px 80px,
			#000 70px 60px,
			#000 80px 45px,
			#000 110px 95px,
			#000 90px 85px;
	}
	51% {
		box-shadow:
			#000 30px 70px,
			#000 40px 80px,
			rgba(0,0,0,0) 50px 45px,
			#000 55px 80px,
			#000 70px 60px,
			#000 80px 45px,
			#000 110px 95px,
			#000 90px 85px;
	}
	75% {
		box-shadow:
			#000 30px 95px,
			#000 40px 100px,
			#000 50px 60px,
			rgba(0,0,0,0) 55px 95px,
			#000 70px 80px,
			#000 80px 70px,
			rgba(0,0,0,0) 110px 120px,
			rgba(0,0,0,0) 90px 110px;
	}
	76% {
		box-shadow:
			#000 30px 95px,
			#000 40px 100px,
			#000 50px 60px,
			rgba(0,0,0,0) 55px 35px,
			#000 70px 80px,
			#000 80px 70px,
			rgba(0,0,0,0) 110px 25px,
			rgba(0,0,0,0) 90px 15px;
	}
	100% {
		box-shadow:
			rgba(0,0,0,0) 30px 120px,
			rgba(0,0,0,0) 40px 120px,
			#000 50px 75px,
			#000 55px 50px,
			#000 70px 100px,
			#000 80px 95px,
			#000 110px 45px,
			#000 90px 35px;
	}
}

.rainbow {
	border-radius: 170px 0 0 0;
	box-shadow: 
		#FB323C -2px -2px 0 1px,
		#F99716 -4px -4px 0 3px,
		#FEE124 -6px -6px 0 5px,
		#AFDF2E -8px -8px 0 7px,
		#6AD7F8 -10px -10px 0 9px,
		#60B1F5 -12px -12px 0 11px,
		#A3459B -14px -14px 0 13px;
	height: 70px;
	width: 70px;
	left:54px;
	top:5px;
	position: relative;
  	transform: rotate(45deg) scale(.8);
}


.stormy {
	animation: stormy 5s ease-in-out infinite;
	background: #222222;
	border-radius: 50%;
	box-shadow: 
		#222222 65px -15px 0 -5px, 
		#222222 25px -25px, 
		#222222 30px 10px, 
		#222222 60px 15px 0 -10px, 
		#222222 85px 5px 0 -5px;
	height: 50px;  
	width: 50px; 
	position: relative;
	top: 20px;
	transform: scale(.5);
}

.stormy:before {
	animation: stormy_thunder 2s steps(1, end) infinite; 
	border-left: 0px solid transparent;
	border-right: 7px solid transparent;
	border-top: 43px solid yellow; 
	box-shadow: yellow -7px -32px;
	content: '';
	display: block;
	height: 0;
	width: 0;
	position: absolute;
	left: 57px;
	top: 70px;
	transform: rotate(14deg);
	transform-origin: 50% -60px;
}
@keyframes stormy {
	50% { transform: translateY(-20px) scale(.5); } 
}  

@keyframes stormy_thunder {
	0%  { transform: rotate(20deg); opacity:1; }
	5%  { transform: rotate(-34deg); opacity:1; }
	10% { transform: rotate(0deg); opacity:1; }
	15% { transform: rotate(-34deg); opacity:0; }
}


.snowy {
	animation: snowy 5s ease-in-out infinite 1s;
	background: #FFFFFF; 
	border-radius: 50%;
	box-shadow: 
		#FFFFFF 65px -15px 0 -5px, 
		#FFFFFF 25px -25px, 
		#FFFFFF 30px 10px, 
		#FFFFFF 60px 15px 0 -10px, 
		#FFFFFF 85px 5px 0 -5px;
	display: block;
	height: 50px;
	width: 50px;
	position: relative;
	left:90px;
	top: 10px;
	transform: scale(.5);
}

.snowy:before {
	animation: snowy_snow 2s infinite linear;
	content: '';
	border-radius: 50%;
	display: block;
	height: 7px;
	width: 7px;
	opacity: 0.8;
	transform: scale(.9);
}

@keyframes snowy {
	50% { transform: translateY(-20px) scale(.5); }
}
@keyframes snowy_shadow {
	50% { transform: translateY(20px) scale(.7); opacity: 0.05; }
}
@keyframes snowy_snow {
	0% {  
		box-shadow: 
			rgba(238,238,238,0) 30px 30px, 
			rgba(238,238,238,0) 40px 40px,  
			#EEEEEE 50px 75px, 
			#EEEEEE 55px 50px, 
			#EEEEEE 70px 100px, 
			#EEEEEE 80px 95px, 
			#EEEEEE 110px 45px, 
			#EEEEEE 90px 35px; 
	}
	25% {  
	  	box-shadow: 
			#EEEEEE 30px 45px,
			#EEEEEE 40px 60px,
			#EEEEEE 50px 90px,
			#EEEEEE 55px 65px,
			rgba(238,238,238,0) 70px 120px,
			rgba(238,238,238,0) 80px 120px,
			#EEEEEE 110px 70px,
			#EEEEEE 90px 60px;
	}
	26% {  
		box-shadow:
			#EEEEEE 30px 45px,
			#EEEEEE 40px 60px,
			#EEEEEE 50px 90px,
			#EEEEEE 55px 65px,
			rgba(238,238,238,0) 70px 40px,
			rgba(238,238,238,0) 80px 20px,
			#EEEEEE 110px 70px,
			#EEEEEE 90px 60px; 
	}
	50% { 
		box-shadow:
			#EEEEEE 30px 70px,
			#EEEEEE 40px 80px,
			rgba(238,238,238,0) 50px 100px,
			#EEEEEE 55px 80px,
			#EEEEEE 70px 60px,
			#EEEEEE 80px 45px,
			#EEEEEE 110px 95px,
			#EEEEEE 90px 85px;
	}
	51% {
		box-shadow:
			#EEEEEE 30px 70px,
			#EEEEEE 40px 80px,
			rgba(238,238,238,0) 50px 45px,
			#EEEEEE 55px 80px,
			#EEEEEE 70px 60px,
			#EEEEEE 80px 45px,
			#EEEEEE 110px 95px,
			#EEEEEE 90px 85px;
	}
	75% {
		box-shadow:
			#EEEEEE 30px 95px,
			#EEEEEE 40px 100px,
			#EEEEEE 50px 60px,
			rgba(238,238,238,0) 55px 95px,
			#EEEEEE 70px 80px,
			#EEEEEE 80px 70px,
			rgba(238,238,238,0) 110px 120px,
			rgba(238,238,238,0) 90px 110px;
	}
	76% {
		box-shadow:
			#EEEEEE 30px 95px,
			#EEEEEE 40px 100px,
			#EEEEEE 50px 60px,
			rgba(238,238,238,0) 55px 35px,
			#EEEEEE 70px 80px,
			#EEEEEE 80px 70px,
			rgba(238,238,238,0) 110px 25px,
			rgba(238,238,238,0) 90px 15px;
	}
	100% {
		box-shadow:
			rgba(238,238,238,0) 30px 120px,
			rgba(238,238,238,0) 40px 120px,
			#EEEEEE 50px 75px,
			#EEEEEE 55px 50px,
			#EEEEEE 70px 100px,
			#EEEEEE 80px 95px,
			#EEEEEE 110px 45px,
			#EEEEEE 90px 35px;
	}
}



.avatar_iconcina
{
	position: relative;
	z-index:100;
}


.orolo {
    display: inline-block;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    background-image: url(../img/logo/third.svg);
    height: 32px;
    width: 27px;
    position: relative;
    top: 5px;
}

.communiti {
    display: inline-block;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    background-image: url(../img/logo/whitecolortext.svg);
    height: 17px;
    width: 140px;
    margin-left: 9px;
    position: relative;
    top: -6px;
}

.ticino
{
	display: inline-block;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    background-image: url(../img/ticino/ticino.svg);
    position: relative;
    height:600px;
    width:675px;
}

.leventina
{
    position: relative;
    width: auto;
	left: -88px;
    top: 39px;

}

.leventina path
{
	fill: #218ccd;
	stroke: #808080;
	stroke-width:1;
	cursor: pointer;
}

.leventina path:hover
{
	fill: #FFF;
}


.vallemaggia
{
    position: relative;

	    top: -111px;
    left: -70px;

}

.vallemaggia path
{
	fill: #218ccd;
	stroke: #808080;
	stroke-width:1;
	cursor: pointer;
}

.vallemaggia path:hover
{
	fill: #FFF;
}

.locarno
{
    position: relative;
	top: -273px;
    left: 19px;

}

.locarno polygon
{
	fill: #218ccd;
	stroke: #808080;
	stroke-width:1;
	cursor: pointer;
}

.locarno polygon:hover
{
	fill: #FFF;
}


.greenhigh
{
	color: #008640;
}


.greenhigh:hover
{
	color: #082F27;
}

/* PER TIMESTAMPER */
a.block
{
	cursor: pointer;
}

.popover{
    max-width: 100%; /* Max Width of the popover (depending on the container!) */
}

a .whiter
{
	color: #FFF;
}

a:hover .whiter
{
	color: #E7E7E7;
}


li.correzione_menu
{
	margin-left: -1.25rem;
}

#timer
{
text-align:center;
padding-bottom:30px;
}

#chronotime
{
	font-weight: bold;
	font-size: 24px;
}

.base-timer {
	display:inline-block;
  transform: scale(50%);
  width: 300px;
  height: 300px;

}

.base-timer__svg {
  transform: scaleX(-1);
}

.base-timer__circle {
  fill: none;
  stroke: none;
}

.base-timer__path-elapsed {
  stroke-width: 7px;
  stroke: grey;
}

.base-timer__path-remaining {
  stroke-width: 7px;
  stroke-linecap: round;
  transform: rotate(90deg);
  transform-origin: center;
  transition: 1s linear all;
  fill-rule: nonzero;
  stroke: currentColor;
}

.base-timer__path-remaining.green {
  color: rgb(65, 184, 131);
}

.base-timer__path-remaining.orange {
  color: orange;
}

.base-timer__path-remaining.red {
  color: #9E5CD1;
}

.base-timer__label {
  position: absolute;
  width: 300px;
  height: 300px;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
}

#stopButton
{
	display:inline-block;
	margin-left: 10%;
}


.inputfile {
    width: 0.1px;
    height: 0.1px;
    opacity: 0;
    overflow: hidden;
    position: absolute;
    z-index: -1;
}

.inputfile + label {
    max-width: 80%;
    font-size: 1.25rem;
    /* 20px */
    font-weight: 700;
    text-overflow: ellipsis;
    white-space: nowrap;
    cursor: pointer;
    display: inline-block;
    overflow: hidden;
    padding: 0.625rem 1.25rem;
    /* 10px 20px */
}

.no-js .inputfile + label {
    display: none;
}

.inputfile:focus + label,
.inputfile.has-focus + label {
    outline: 1px dotted #000;
    outline: -webkit-focus-ring-color auto 5px;
}

.inputfile + label * {
    /* pointer-events: none; */
    /* in case of FastClick lib use */
}

.inputfile + label svg {
    width: 1em;
    height: 1em;
    vertical-align: middle;
    fill: currentColor;
    margin-top: -0.25em;
    /* 4px */
    margin-right: 0.25em;
    /* 4px */
}


/* style 1 */

.inputfile-1 + label {
    color: #FFF;
    background-color: #d3394c;
}

.inputfile-1:focus + label,
.inputfile-1.has-focus + label,
.inputfile-1 + label:hover {
    background-color: #722040;
}


.imgblocky
{
margin-top:20px;
margin-right: 10px;
max-width:100px;
max-height: 180px;
cursor: pointer;
padding: 4px;
background-color: #fff;
border: 1px solid #ccc;
-webkit-box-shadow: 0 1px 3px rgb(0 0 0 / 10%);
-moz-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
box-shadow: 0 1px 3px rgb(0 0 0 / 10%);
}

.imgblocky:hover,.borderGray:hover
{
	border: 1px solid #9ecaed;outline: none;box-shadow: 0 0 10px #9ecaed;
}

.imageeditor{
display: none;
position: absolute;
width: 100%;
left: 0px;
top:-30px;
}

.zlightbulber
{
	color: #F7DB00;
}

.zlightbulber:hover
{
	color: #E9B302;
}



.immaginePiccola
{
	width:80%;
	max-width:140px;
}

.higherLight
{
	border: 1px solid #9ecaed;outline: none;box-shadow: 0 0 10px #9ecaed;
}

.borderGray
{
	border: 1px solid #ccc;
	padding: 1px;
}

.eraseCol
{
	margin-top:30px;
}
.eraseCol a
{
	color: #D62D2D;
}
.eraseCol a:hover
{
	color: #A15656;
}


.nicehead
{
	margin-bottom: .875rem;
    padding-top: 1rem;
    padding-bottom: .5rem;
    font-size: 1.25rem;
    font-weight: 400;
    line-height: 1.75;
    border-bottom: 1px solid #e4e9f3;
}

.linebreak
{
	margin-bottom: .875rem;
    font-size: 1.25rem;
    font-weight: 400;
    line-height: 1.75;
    border-bottom: 1px solid #e4e9f3;
}


.invisibile
{
	display: none;
}

.invisibile2
{
	display: none !important;
}

.ribbon-box a
{
	color: #FFF;
}

.ribbon-box a:hover
{
	color: #EEE;
}

.cleanborder
{
	border: 1px solid #e4e9f3;
}


.dyellow
{
	color: #FFFF33;
}

.dyellow:hover
{
	color: #FFFACD;
}

.custom-control-input:checked ~ .custom-control-label::before {
    color: #fff;
    border-color: #626e79;
    background-color: #343a40;
}

.dblack
{
	color: #343a40;
}

.dblack:hover
{
	color: #626e79;
}


.product_abito:hover
{
	opacity: 0.9;
}


/* PIPPOS */

#page-container.page-header-dark #page-header {
    color: #d6d6d6;
    background-color: #FFF;
    border-bottom: 1px solid #187DC2;
}

.piplogo
{

	height:56px;
}


.btn-beca {
    color: #fff;
    background-color: #187DC2;
    border-color: #187DC2;
}

.bg-beca
{
	background-color: #187DC2;
}

.btn-beca:hover {
color: #F6F5F5;
}

.content-header .dyellow
{
	color: #187DC2;
}

.content-header .dyellow:hover
{
	color: #4ea9e6;
}

.dyellow
{
	color: #FFF;
}

.dyellow:hover
{
	color: #f2f2f2;
}

.md-stepper-horizontal {
	display:table;
	width:100%;
	margin:0 auto;
	background-color:#FFFFFF;
	box-shadow: 0 3px 8px -6px rgba(0,0,0,.50);
}
.md-stepper-horizontal .md-step {
	display:table-cell;
	position:relative;
	padding:24px;
}

.md-stepper-horizontal .md-step.activer {
	background-color:rgba(0,0,0,0.03);
}

.md-stepper-horizontal .md-step:first-child:active {
	border-top-left-radius: 0;
	border-bottom-left-radius: 0;
}
.md-stepper-horizontal .md-step:last-child:active {
	border-top-right-radius: 0;
	border-bottom-right-radius: 0;
}
.md-stepper-horizontal .md-step:hover .md-step-circle {
	background-color:#757575;
}
.md-stepper-horizontal .md-step:first-child .md-step-bar-left,
.md-stepper-horizontal .md-step:last-child .md-step-bar-right {
	display:none;
}
.md-stepper-horizontal .md-step .md-step-circle {
	width:30px;
	height:30px;
	margin:0 auto;
	background-color:#999999;
	border-radius: 50%;
	text-align: center;
	line-height:30px;
	font-size: 16px;
	font-weight: 600;
	color:#FFFFFF;
}
.md-stepper-horizontal.green .md-step.active .md-step-circle {
	background-color:#00AE4D;
}
.md-stepper-horizontal.orange .md-step.active .md-step-circle {
	background-color:#F96302;
}
.md-stepper-horizontal .md-step.active .md-step-circle {
	background-color: rgb(33,150,243);
}

.md-stepper-horizontal .md-step.done .md-step-circle *,
.md-stepper-horizontal .md-step.editable .md-step-circle * {
	display:none;
}
.md-stepper-horizontal .md-step.editable .md-step-circle {
	-moz-transform: scaleX(-1);
	-o-transform: scaleX(-1);
	-webkit-transform: scaleX(-1);
	transform: scaleX(-1);
}

.md-stepper-horizontal .md-step .md-step-title {
	margin-top:16px;
	font-size:16px;
	font-weight:600;
}
.md-stepper-horizontal .md-step .md-step-title,
.md-stepper-horizontal .md-step .md-step-optional {
	text-align: center;
	color:rgba(0,0,0,.26);
}
.md-stepper-horizontal .md-step.active .md-step-title {
	font-weight: 600;
	color:rgba(0,0,0,.87);
}
.md-stepper-horizontal .md-step.active.done .md-step-title,
.md-stepper-horizontal .md-step.active.editable .md-step-title {
	font-weight:600;
}
.md-stepper-horizontal .md-step .md-step-optional {
	font-size:12px;
}
.md-stepper-horizontal .md-step.active .md-step-optional {
	color:rgba(0,0,0,.54);
}
.md-stepper-horizontal .md-step .md-step-bar-left,
.md-stepper-horizontal .md-step .md-step-bar-right {
	position:absolute;
	top:36px;
	height:1px;
	border-top:1px solid #DDDDDD;
}
.md-stepper-horizontal .md-step .md-step-bar-right {
	right:0;
	left:50%;
	margin-left:20px;
}
.md-stepper-horizontal .md-step .md-step-bar-left {
	left:0;
	right:50%;
	margin-right:20px;
}

#page-container.main-content-boxed > #main-container .content, #page-container.main-content-boxed > #page-footer .content, #page-container.main-content-boxed > #page-header .content, #page-container.main-content-boxed > #page-header .content-header
{
	max-width: 100%;
}


.endbutton
{
	position:absolute;
	bottom:55;
}

.hdue
{
	min-height: 287px;
}


.blocchino
{
	width: 20px;
	height: 20px;
	display: inline-block;
	top: 4px;
	position: relative;
}


/* INPUT NUMBER */

input[type="number"] {
  -webkit-appearance: textfield;
  -moz-appearance: textfield;
  appearance: textfield;
}

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
}

.number-input {
  border: 2px solid #ddd;
  display: inline-flex;
}

.number-input,
.number-input * {
  box-sizing: border-box;
}

.number-input button {
  outline:none;
  -webkit-appearance: none;
  background-color: transparent;
  border: none;
  align-items: center;
  justify-content: center;
  width: 1.5rem;
  height: 2rem;
  cursor: pointer;
  margin: 0;
  position: relative;
}

.number-input button:after {
  display: inline-block;
  position: absolute;
  font-family: "Font Awesome 5 Free"; 
  font-weight: 900;
  content: '\f077';
  transform: translate(-50%, -50%) rotate(180deg);;
}
.number-input button.plus:after {
  transform: translate(-50%, -50%) rotate(0deg);
}

.number-input input[type=number] {
  font-family: sans-serif;
  max-width: 5rem;
  padding: .5rem;
  border: solid #ddd;
  border-width: 0 2px;
  font-size: 1.5rem;
  height: 2rem;
  font-weight: bold;
  text-align: center;
}


.cartImgs
{
	max-height:100px;
}

.whitey
{
	color: #FFF;
}

.whitey:hover
{
	color: #EEE;
}

.orderArrow
{
	position:relative;
	top:2px;
}
.img-fluid-100 .img-fluid, .img-fluid.img-fluid-100 {
width: auto;
}

.multiselectproduct
{
	transform: scale(0.8);
transform-origin: top left;
}



@media (max-width: 950px) { 

 .table_misure
 {
 	transform: scale(0.7);
transform-origin: left;
margin-top: -16px;
margin-bottom: 0rem;
 }

 .piplogo
 {
 	height: 39px;
 }

 .overflow-auto
 {
 	max-width: 950px;
 	overflow-x: scroll !important;
 	-webkit-overflow-scrolling: auto;
 }

 .simplebar-scrollbar{
     visibility: inherit !important;
}

.multiselectproduct
{
	width: 130%;
	transform: scale(0.7);
	transform-origin: top left;
	padding-right: 0px !important;
	padding-left: 0px !important;
}

 .product_colum
 {
 	transform-origin: top;
 	left: -42px;
 	transform: scale(0.6);

 	margin-bottom: -283px;
margin-top: -44px;
 }

  .cappellino
 {
 	transform-origin: top;
 	left: -42px;
 	transform: scale(0.6);

 	margin-bottom: -150px;
margin-top: -44px;
 }
}

@media (max-width: 400px) { 
.md-stepper-horizontal
{
	transform-origin: left;
	transform: scale(0.79);
	margin:0px;
}


}




::-webkit-scrollbar {
  -webkit-appearance: none;
  width: 7px;
}

::-webkit-scrollbar-thumb {
  border-radius: 4px;
  background-color: rgba(0, 0, 0, .5);
  box-shadow: 0 0 1px rgba(255, 255, 255, .5);
}

.number-input
{
	min-height: 36px;
}

.quantity
{
	min-height: 36px;
}


.gradienta
{
	background: rgb(255,255,255);
	background: linear-gradient(180deg, rgba(255,255,255,1) 0%, rgba(222,222,222,1) 100%);
}


.spaziopersonalizza
{
	margin-top: -50px;
}

.bannerbanner
{
	margin-top:160px;
}

@media (max-width: 500px) { 
.bannerbanner
{
	margin-top:60px;
}
}

@media (max-width: 700px) { 
.bannerbanner
{
	margin-top:160px;
}
}

@media (min-width: 1300px) { 
.bannerbanner
{
	margin-top:460px;
}
}