/* CSS Document */

.check_list_pather{
	
	position:relative;
	top: 0px;
	left: 15%;
	min-height: calc((85% - 60px) - 100px);
	width: calc((100% - 15%) - 50px);
	height: calc((85% - 60px) - 100px);
	display: block;
    overflow-x: scroll;
	background-color: rgba(255,255,255,0.95);
	border: none;
	border-radius: 5px 5px 5px 5px;
	text-align: left;
	padding: 15px;
	
}

.sec_check_list{
	
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	
}

.sec_option_check{
	
	display: flex;
  	justify-content: space-between;
	align-items:baseline!important;
	min-width: 100%;
	margin-bottom: 10px;
	border-bottom: 1px solid rgba(229,82,38,0.1);
	
}

.sec_option_check label{
	
	text-align: left !important;

}

.sec_option_check select{
	
	max-width: 70px !important;
	min-width: 70px !important;
	text-align: center!important;
	
}

.sec_option_check input{
	
	max-width: 170px !important;
	min-width: 170px !important;
	text-align: center!important;
	
}

.checkbox-JASoft {
	
	display: inline-block;
	position: relative;
    width: 78px;
	height: 32px;
	background-color: #EA3A11;
	border: none;
	border-radius: 15px;
	
}

.checkbox-JASoft label {

    /* aspecto */
    display: block;
    width: 41px;
	height: 20px;
	border-radius: 17px;
	box-shadow: 0px 2px 5px 0px rgba(0,0,0,0.35);
	background: #fcfff4;
	background: linear-gradient(to top, #fcfff4 0%, #dfe5d7 40%, #b3bead 100%);
    cursor: pointer;
    background-color: red;
    /* Posicionamiento */
    position: absolute;
    top: 5px;
	left: 5px;
    z-index: 1;
    
	/* Comportamiento */
    transition: all .4s ease;
    
    /* ocultar el posible texto que tenga */
    overflow: hidden;
    text-indent: 35px;  
    transition: text-indent 0s;
}

.checkbox-JASoft input[type=checkbox]:checked + label {
	left: auto;
    right: 5px;
}

.checkbox-JASoft:after {
	
	content: 'No';
	font: 12px/30px;
	color: white;
	position: absolute;
	right: 10px;
    z-index: 0;
	font-weight: bold;
	top: 5px;
}

.checkbox-JASoft:before {
	content: 'Si';
	font: 12px/30px;
	color: white;
	position: absolute;
	left: 10px;
	z-index: 0;
	font-weight: bold;
	top: 5px;
}

@media only screen and (min-height:0px) and (max-height: 1200px) and (max-width: 870px)  {
	
	.check_list_pather{
		
		min-height: calc((88% - 140px) - 70px);
		height: calc((88% - 140px) - 70px);
		
	}
	
}


@media only screen and (min-width:0px) and (max-width: 869px)  {
	
	.check_list_pather{

		left: 3%;
		min-width: 95%;
		
	}
	
}

@media only screen and (min-width:870px) and (max-width: 1200px)  {
	
	.check_list_pather{

		left: 30%;
		min-width: 67%;
		max-width: 67%;
		
	}
	
}
