/*** Responsive CSS for mobile ***/

/* Checker and cleaning provider Dashboard */
@media screen and (max-width: 600px) {    
    /* Force table to not be like tables anymore */
	#no-more-tables table, 
	#no-more-tables thead, 
	#no-more-tables tbody, 
	#no-more-tables th, 
	#no-more-tables td, 
	#no-more-tables tr { 
		display: block; 
	}
 
	/* Hide table headers (but not display: none;, for accessibility) */
	#no-more-tables thead tr { 
		position: absolute;
		top: -9999px;
		left: -9999px;
	}
 
	#no-more-tables tr { border: 1px solid #ccc; margin-bottom:20px; }
 
	#no-more-tables td { 
		/* Behave  like a "row" */
		border: none;
		border-bottom: 1px solid #CCC; 
        position: relative;
		padding-left: 40%; 
		white-space: normal;
		text-align:left;
    }
 
	#no-more-tables td:before { 
		/* Now like a table header */
		position: absolute;
		/* Top/left values mimic padding */
		top: 6px;
		left: 6px;
		width: 35%; 
		white-space: nowrap;
		text-align:left;
		font-weight: bold;
        content: attr(data-title);
    }

    .currentPeriod input[type="date"] {
        font-size:14px;
        padding:0;
    }
    
    .elem input {
        display:block;
        margin-bottom: 20px;
    }

    h1 {
        font-size: 1.2em;
    }

    h2 {
        font-size: 1.1em;
    }

    h3 {
        font-size: 1em;
    }

    h4 {
        font-size: 0.9em;
    }

    h5 {
        font-size: 0.8em;
    }

    .fc-toolbar-title {
        font-size: 1.3em !important;
    }
}
