/*
Module Name: EMR Checklist Home (Tablet CSS)
Author: Prosoft Phils
Author URL: http://prosoft-phils.com/
Description: Main CSS for Global Partials
*/

@media (max-width: 991px){
	.offset-r-2 {
		margin-right: 0;
	}

	.checklist-search .input-group {
		width: 50%;
	}

	.checklist-nav-menu li {
		width: 30%;
	}

	.patient-checklist {
		border-left: none;
	}

	.patient-form-info span {
		margin-left: 33.333333%
	}

	.patient-form-info,
	.patient-info {
		margin-bottom: 2rem;
		padding-bottom: 1rem;
		border-bottom: 1px solid var(--color-lgray);
	}

	.text-md-left {
		text-align: left;
	}
}

@media (min-width: 767px) and (max-width: 991px) {


} /*END of @media 767px -991px*/


/*--------------------------------------------------------------
CUSTOM IPAD BREAKPOINTS
--------------------------------------------------------------*/
/*IPAD Portrait & Landscape*/
@media only screen 
and (min-device-width : 768px) 
and (max-device-width : 1024px)  { 
	footer .row .col-sm-6 ul li div.form-control div.right span i {
		display: none;
	}
} /*END of IPAD Portrait & Landscape*/

/*IPAD in Landscape*/
@media only screen 
and (min-device-width : 768px) 
and (max-device-width : 1024px) 
and (orientation : landscape) {
	footer .row .col-sm-6 ul li div.form-control div.right span i {
		display: none;
	}
} /*END of IPAD in Landscape*/


/*IPAD in Portrait*/
@media only screen 
and (min-device-width : 768px) 
and (max-device-width : 1024px) 
and (orientation : portrait) {
	footer .row .col-sm-6 ul li div.form-control div.right span i {
		display: none;
	}
} /*END of IPAD in Portrait*/