body{
  margin: 0;
  background-color: rgb(255,255,255);
  font-family: Roboto, sans-serif;
  overflow-x: hidden !important;
}

iframe{
  width: 100%;
  height: 100%;
  border: 0;
}

h1{
  font-size: 25px;
  line-height: 25px;
  font-weight: bold;
  color: rgb(255,255,255);
  text-shadow: -1px 0 rgb(0,0,0), 0 1px rgb(0,0,0), 1px 0 rgb(0,0,0), 0 -1px rgb(0,0,0);
}

textarea:focus, input:focus, select:focus{
    outline: none;
}

textarea, input, button, select { font-family: inherit; font-size: inherit; }

input[type="color"],
input[type="date"],
input[type="datetime"],
input[type="datetime-local"],
input[type="email"],
input[type="month"],
input[type="number"],
input[type="password"],
input[type="search"],
input[type="tel"],
input[type="text"],
input[type="time"],
input[type="url"],
input[type="week"],
select:focus,
textarea {
  font-size: 16px;
  margin: 0;
  padding: 0;
  border: none;
}

input:disabled {
    color: rgb(34,113,179);
}

@keyframes crescendo {
0%   {transform: scale(1);}
100% {transform: scale(1.2);}
}

@keyframes diminuendo {
0%   {transform: scale(1.2);}
100% {transform: scale(1);}
}

.loader-spinner {
  display: inline-block;
  position: absolute;
  width: 80px;
  height: 80px;
  top: -webkit-calc(50% - 40px);
  top: -moz-calc(50% - 40px);
  top: calc(50% - 40px);
  left: -webkit-calc(50% - 40px);
  left: -moz-calc(50% - 40px);
  left: calc(50% - 40px);
}
.loader-spinner div {
  display: inline-block;
  position: absolute;
  left: 8px;
  width: 16px;
  background: rgb(45,86,124);
  animation: loader-spinner 1.2s cubic-bezier(0, 0.5, 0.5, 1) infinite;
}
.loader-spinner div:nth-child(1) {
  left: 8px;
  animation-delay: -0.24s;
}
.loader-spinner div:nth-child(2) {
  left: 32px;
  animation-delay: -0.12s;
}
.loader-spinner div:nth-child(3) {
  left: 56px;
  animation-delay: 0;
}
@keyframes loader-spinner {
  0% {
    top: 8px;
    height: 64px;
  }
  50%, 100% {
    top: 24px;
    height: 32px;
  }
}

.blur{
  --altezza: -webkit-calc(100% - 80px);
  --altezza: -moz-calc(100% - 80px);
  --altezza: calc(100% - 80px);
  -webkit-filter: blur(5px);
	filter: blur(5px);
	filter:progid:DXImageTransform.Microsoft.Blur(PixelRadius='5');
  clip: rect(5px,100%,var(--altezza),5px);
}

.btnVerde{
  width: 80px;
  height: 25px;
  background-color: rgb(59,196,114);
  color: rgb(255,255,255);
  border-radius: 5px;
  -moz-border-radius: 5px;
  -webkit-border-radius: 5px;
  line-height: 25px;
  text-align: center;
  cursor: pointer;
}

.btnVerde:hover{
  background-color: rgb(47,157,91);
}

.btnBlu{
  width: 80px;
  height: 25px;
  background-color: rgb(51,99,159);
  color: rgb(255,255,255);
  border-radius: 5px;
  -moz-border-radius: 5px;
  -webkit-border-radius: 5px;
  line-height: 25px;
  text-align: center;
  cursor: pointer;
}

.btnBlu:hover{
  background-color: rgb(47,79,127);
}

.btnRosso{
  width: 80px;
  height: 25px;
  background-color: rgb(204,0,0);
  color: rgb(255,255,255);
  border-radius: 5px;
  -moz-border-radius: 5px;
  -webkit-border-radius: 5px;
  line-height: 25px;
  text-align: center;
  cursor: pointer;
}

.btnRosso:hover{
  background-color: rgb(163,0,0);
}

.btnGrigio{
  width: 80px;
  height: 25px;
  background-color: rgb(240,240,240);
  color: rgb(0,0,0);
  border-radius: 5px;
  -moz-border-radius: 5px;
  -webkit-border-radius: 5px;
  line-height: 25px;
  text-align: center;
  cursor: pointer;
}

.btnGrigio:hover{
  background-color: rgb(200,200,200);
}

.btnBianco{
  width: 80px;
  height: 25px;
  background-color: rgb(255,255,255);
  color: rgb(0,0,0);
  border-radius: 5px;
  -moz-border-radius: 5px;
  -webkit-border-radius: 5px;
  line-height: 25px;
  text-align: center;
  cursor: pointer;
}

.btnBianco:hover{
  background-color: rgb(255,255,255);
}

.nessunRisultato{
  position: absolute;
  top: 20px;
  left: 0;
  width: 100%;
  height: 50px;
  text-align: center;
}

.nessunRisultato > span{
  line-height: 50px;
  font-size: 30px;
  color: rgb(140,140,140);
}

.nascosto{
  display: none !important;
}

.avviso{
  display: none;
  position: relative;
  margin-top: 10px;
  margin-left: -webkit-calc(100% - 260px);
  margin-left: -moz-calc(100% - 260px);
  margin-left: calc(100% - 260px);
  width: 250px;
  height: 50px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
  line-height: 50px;
  text-align: center;
  z-index: 100;
  font-weight: bold;
}

.avvisoVerde{
  background-color: rgb(186,223,200);
  border: 0.5px solid rgb(53,114,76);
  color: rgb(53,114,76);
}

.avvisoRosso{
  background-color: rgb(248,224,222);
  border: 0.5px solid rgb(159,43,33);
  color: rgb(159,43,33);
}
