*,*:after, *:before{
	margin: 0;
	padding: 0;
	-webkit-box-sizing:border-box;
	-moz-box-sizing:border-box;
	box-sizing:border-box;
}

#contenedor_carga{
	background-color: rgba(219,219,219,0.9);
	height: 100%;
	width :100%;
	position:fixed;
	-webkit-transition: all 1s ease;
	-o-transition: all 1s ease;
	transition: all 1s ease;
	z-index: 10000;
}

#carga{
	border: 10px solid #DBDBDB;
	border-top-color: #C8F068;
	border-top-style: groove;
	height : 100px;
	width: 100px;
	border-radius:100%;

	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	margin: auto;
	-webkit-animation: girar 1.5s linear infinite;
	-o-animation: girar 1.5s linear infinite;
	animation: girar 1.5s linear infinite;
}

#contenedor_progreso{
	background-color: rgba(219,219,219,0.9);
	height: 100%;
	width :100%;
	position:fixed;
	-webkit-transition: all 1s ease;
	-o-transition: all 1s ease;
	transition: all 1s ease;
	z-index: 10000;
}

#progreso{
	background-color: rgba(255,255,255,0.9);
	height : 20%;
	width: 50%;
	border-radius:5px;

	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	margin: auto;
}

#contenedor_anulacion{
	background-color: rgba(219,219,219,0.9);
	height: 100%;
	width :100%;
	position:fixed;
	-webkit-transition: all 1s ease;
	-o-transition: all 1s ease;
	transition: all 1s ease;
	z-index: 10000;
}

#anulacion{
	background-color: rgba(255,255,255,0.9);
	height : 20%;
	width: 30%;
	border-radius:5px;

	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	margin: auto;
}

.container {
  background: #fff;
  border: 1px solid #ccc;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
  margin: 10px auto;
  padding: 10px 0;
  text-align: center;
  /*width: 600px*/
}
.status {
  background: #284F4F;
  color: #fff;
  display: none;
  margin: 8px 0;
  padding: 5px;
}
.status2 {
  background: #FDB0B0;
  color: #000000;
  display: none;
  margin: 8px 0;
  padding: 5px;
}
.progress {
  margin: 10px auto;
  position: relative;
  width: 90%;
}
.bar {
  background: #8CBD6F;
  height: 20px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
  transition: width 0.3s ease 0s;
  width: 0;
}
.percent {
  color: #333;
  /*left: 48%;*/
  margin: auto;
  /*position: absolute;
  top: 0;*/
}

@keyframes girar{
	from {transform: rotate(0deg);}
	to { transform: rotate(360deg); }
}

@media(min-width:1081px){
  	#ingreso{
		width: 40%;
	}
}

@media(max-width:1080px){
  	#ingreso{
		width: 40%;
	}
}

@media(max-width:800px){
  	#ingreso{
		width: 40%;
	}

}

@media(max-width:600px){
  	#ingreso{
		width: 80%;
		height: 100%;
	}
	#act_cal{
		width: 100%;
		transform: translateY(20%);
	}
	
}