/**
 * Text Right to Left
 */
.rtl {
	text-align: right!important;
}

/**
 * Logo
 */
.pkp_site_name .is_img {
	background-color: white!important;
	border: solid 2px #ddd!important;
	border-radius: 10px!important;
	overflow:hidden!important;
}

/**
 * Table
 */
.table {
	width: 100%;
	max-width: 100%;
	margin-bottom: 20px;
}
.table-striped {
	border: solid 2px #ddd;
}

.table-border-rounded {
	border-radius: 10px;
}
.table-striped thead {
	background-color: #eee;
}
.table-striped thead th {
	text-align: left;
	padding: 8px;
	border-bottom: solid 2px #ddd;
}
.table-striped.rtl thead th {
	text-align: right;
}
.table-striped tbody tr {
	height: 60px;
	min-height: 60px;
}
.table-striped tbody tr:nth-child(odd){
	background-color: #f9f9f9;
}
.table-striped tbody tr {
	border-bottom: solid 1px #ddd;
}
.table-striped.rtl tbody tr td{
	text-align: right;
}
