

.caja_Inicial{
	width: 100%;
	padding: 0;
}

.caja1_Botones{
	width: 100%;
	
	padding: 20px 10px 0px 10px;
	margin: 10px 0 20px 0;

	text-align: center;

	background-color: rgb(33, 33, 33);

}
	.caja1_Botones .txtTitulo{
		
		margin-bottom: 15px;

		color: aliceblue;
		font-weight: bold;
		font-size: 1.2em;
	}

	.btn_irEmpresa {
		width: 300px;
		height: 40px;
		
		padding: 0 20px;
		margin-bottom: 20px;
		line-height: 40px;

		background: #e1b000;
		border: none;
		border-radius: 3px;

		font-size: 18px;
		color: rgb(0, 0, 0);
		font-family: 'Montserrat', sans-serif;
		
		transition: .3s ease all;
		cursor: pointer;
	}

	.btn_irEmpresa:hover {
		background: #ffd22ea1;
		font-weight: bold;
	}


.caja2_Botones{
	width: 100%;
	padding: 0;

	text-align: right;
}








#cajaFinal_msg{
	color: white;
	text-align: center;
}




/*----CARACTERISTICAS CUANDO PANTALLA CELULAR--------------------------------------*/
@media all and (max-width: 500px) {

	.contenedor {
		width: 100%;
	}

	.caja_Inicial{
		padding-left: 10px;
		padding-right: 10px;
	}



	.caja2_Botones{
		padding: 20px;
	}	

	.btn_irEmpresa {
		width: 98%;
	}


}