input[type="file"] 			{display: none;}
.custom-file-upload			{border: 1px solid #ccc;display: inline-block;padding: 6px 12px; cursor: pointer;}
.custom-file-upload:hover	{background-color:#eee;}
#formWarning				{width:100%;height:100%;position:fixed;top:0px;left:0px;z-index:12000;display:none;background:url(images/popup2.png);}
#WFormMessage				{background-color:#fff;width:400px;margin:50px auto;padding:50px;border:solid 5px #000;border-radius:10px;box-sizing:border-box;overflow:scroll-y;max-height:80%;}
img.rotate {
  animation: rotation 1s infinite linear;
}
img.rotate2 {
  animation: rotation 0.5s infinite linear;
}

@keyframes rotation {
  from {
	transform: rotate(0deg);
  }
  to {
	transform: rotate(359deg);
	}
}
				