.ds-table { border-collapse: collapse; width: 100%;
            margin-top: 20px; background-color: #fff;}
.ds-table * { border-collapse: collapse; }
.ds-table th {
    font-size: 12px;
    text-align: right;
    /* font-weight: normal; */
    text-transform: uppercase;
    padding: 12px 15px;
    border-left: 1px solid #eaeaea;
    border-right: 1px solid #eaeaea;
    border-bottom: 1px solid #eaeaea;
    color: #000000;
    background: #f7f7f7;
    font-weight: bold;
}
.ds-table tr {
    border-top: 1px solid #eaeaea;
}
.ds-table td{
    text-align: right;
    padding: 8px 15px;
    border-left: 1px solid #eaeaea;
    border-bottom: 1px solid #eaeaea;
    border-right: 1px solid #eaeaea;
    font-size: 13px;
    color: #8E8E8E;
}

.ds-table a {
    color: #8e8e8e;
}

@media screen and (max-width: 640px) {
	.ds-table {
		overflow-x: auto;
		display: block;
	}
}

@media screen and (max-width: 1024px) {
    .calender_div { display: none;}
}

@media 
only screen and (max-width: 760px),
(min-device-width: 768px) and (max-device-width: 1024px)  {

    .calender_div{ display: none;}
	/* Force table to not be like tables anymore */
	.ds-table, .ds-table thead, .ds-table tbody, .ds-table th, .ds-table td, .ds-table tr { 
		display: block; 
	}
	
        .ds-table {
            background-color: transparent;
        }
        
	/* Hide table headers (but not display: none;, for accessibility) */
	.ds-table thead tr { 
		position: absolute;
		top: -9999px;
		right: -9999px;
	}
	
	.ds-table tr { border: 1px solid #ccc; margin-bottom: 5px; background-color: #fff; }
	
	.ds-table td { 
		/* Behave  like a "row" */
		border: none;
		border-bottom: 1px solid #eee; 
		position: relative;
		padding-right: 50%; 
	}
	
	.ds-table td:before { 
		/* Now like a table header */
		position: absolute;
		/* Top/right values mimic padding */
		top: 6px;
		right: 6px;
		width: 45%; 
		padding-left: 10px; 
		white-space: nowrap;
	}
	
	/*
	Label the data
	*/
	.ds-table td:nth-of-type(1):before { content: "الاسم"; }
	.ds-table td:nth-of-type(2):before { content: "المسمى الوظيفي"; }
	.ds-table td:nth-of-type(3):before { content: "الايميل"; }
}