.bodyReport{

	position: relative;
	top: 80px;
	left: 18%;
	width: calc((100% - 16%) - 50px);
	min-height: calc((100% - 40px) - 100px);
	max-height: calc((100% - 40px) - 100px);
	display: flex;
	flex-direction: row;
	
}

.secReportOrder{
	
	min-width: calc(100% - 175px);
	min-height: 100%;
	max-height: 100%;
	margin: 0px 25px 0px 25px ;
	border-radius: 10px;
	display: flex;
	flex-direction: column;
	
}

.secDataPrincipal{

	padding-top: 10px;
	background-color: rgba(255,255,255,0.50);
	border-radius: 10px;
	display: flex;
	justify-content: center;
	align-content: center;
	align-items: center;
	
}

.secDataPrincipal > label{
	
	font-size: 16px;
	margin-right: 15px;
	
}

.secDataPrincipal > label > span{
	
	font-size: 16px;
	margin-right: 15px;	
	color: #EA3A11;
}

.secUnidades{

	min-height: 100%;
	min-width: 150px;
	max-width: 150px;
	background-color: #FFFFFF;
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items:center;
	align-content:center;
	padding: 10px;
	border: none;
	border-radius: 10px;
	
}

.selectTipo{
	
	min-width: 100%;
	max-width: 100%;
	height: 95px;
	max-height: 95px;
	border-bottom: 2px solid #424242;
	
}

.listaUnidades{
	
	margin-top: 25px;
	display: flex;
	flex-direction: column;
	align-content: center;
	align-items: center;
	justify-content: center;
}

.rowUnidad{
	
	margin-top: 5px;
	min-width: 150px;
	max-width: 150px;
	height: 30px;
	
	display: flex;
	flex-direction: column;
	align-content: center;
	align-items: center;
	justify-content: center;
	font-size: 18px;
}

.rowUnidad:hover{
	
	background-color: #424242;
	color: #FFFFFF;
	cursor: pointer
}

.inputBusUnidad{
	
	max-width: 130px;
	border: 1px solid #E5E5E5;
	border-radius: 5px;
	outline: none;
	padding-left: 10px;
	
}
.container {
	
  display: block;
  position: relative;
  padding-left: 35px;
  margin-bottom: 12px;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

/* Hide the browser's default radio button */
.container input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}

/* Create a custom radio button */
.checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 15px !important;
  width: 15px !important;
  background-color: #eee;
  border-radius: 50% !important;
}

/* On mouse-over, add a grey background color */
.container:hover input ~ .checkmark {
  background-color: #ccc;
}

/* When the radio button is checked, add a blue background */
.container input:checked ~ .checkmark {
  background-color: #2196F3 !important;
}

/* Create the indicator (the dot/circle - hidden when not checked) */
.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

/* Show the indicator (dot/circle) when checked */
.container input:checked ~ .checkmark:after {
  display: block;
}

/* Style the indicator (dot/circle) */
.container .checkmark:after {
 	top: 5.5px !important;
	left: 5.5px !important;
	width: 5px !important;
	height: 5px !important;
	border-radius: 50% !important;
	background: white;
}

