﻿#footer {
    bottom: 0;
    position: fixed;
    z-index:999;
    width:100%;
    height:120px;
    background-color:#000000;
    display: block;
    animation: slideUp 1s;
    -webkit-animation: slideUp 1s;
}

#DivOrcamento
{
	position: absolute;
	width:900px;
	left: 50%;
	margin-left: -450px;
	color: white;
     /*style="background-color:black; height:380px; width: 250px; border-radius: 6px; ;*/
}

/* Hack Checkbox */
.toogle-hide {
   position: absolute;
   top: -9999px;
   left: -9999px;
   visibility: hidden;
}

/* Animate Footer and Button */
@-webkit-keyframes slideUpBtn {
  from {bottom:0px;}
  to {bottom:150px;}
}

@-webkit-keyframes slideUp {
  from {bottom:-150px;}
  to {bottom:0;}
}