/* CSS Document */

.panel{
    font-family: 'Roboto', sans-serif;
    padding: 0;
    border: none;
    /*box-shadow: 0 .3rem .8rem rgba(0, 0, 0, .12);*/
}

.panel .panel-heading{
	background-color: #5EB5F4;
	padding: 10px 25px 8px;
	border-top-left-radius: 10px;
	border-top-right-radius: 10px;
}
.panel .panel-heading .title{
    color: #32393f;
    font-size: 28px;
    font-weight: 400;
    line-height: 30px;
    text-transform: capitalize;
    margin: 0;
}
.panel .panel-heading .btn{
    font-size: 15px;
    padding: 6px 15px;
    border-radius: 50px;
    border: none;
    transition: all 0.3s ease 0s;
}
.panel .panel-heading .btn:hover{ box-shadow: 0 0 10px rgba(0,0,0,0.2); }
.panel .panel-body{ border-radius: 0; }
.panel .panel-body .table thead tr th{
    color: #333;
    font-size: 15px;
    font-weight: 800;
    padding: 4px;
}
.panel .panel-body .table thead tr th:last-child{ width: 120px; }

.panel .panel-body .table tbody tr{
	cursor: pointer;
}
.panel .panel-body .table tbody tr td{
    color: #555;

    font-size: 13px;
    font-weight: 500;
    padding: 3px;
    vertical-align: middle;
    border-color: #e7e7e7;
}
.panel .panel-body .table .user_icon{
    width: 50px;
    height: 50px;
    margin: 0 5px 0 0;
    border-radius: 100px;
    display: inline-block;
}
.panel .panel-body .table .user_icon img{
    width: 100%;
    height: auto;
    border-radius: 50%;
}
.panel .panel-body .table tbody td span.label{ font-size: 13px; }
.panel .panel-body .table tbody .action-list{
    padding: 0;
    margin: 0;
    list-style: none;
}
.panel .panel-body .table tbody .action-list li{
    margin: 0 2px;
    display: inline-block;
}
.panel .panel-body .table tbody .action-list li a{
    color: #f41127;
    background-color: rgb(244 17 39 / 0.11);
    font-size: 18px;
    border: none;
    transition: all 0.3s ease;
}
.panel .panel-body .table tbody .action-list li:last-child a{
    color: #0d6efd;
    background-color: rgb(13 110 253 / 0.11);
}
.panel .panel-body .table tbody .action-list li a:hover{ box-shadow: 0 0 5px rgba(0,0,0,0.3); }
.panel .panel-footer{
    background-color: #fff;
    padding: 10px 25px 25px;
    border: none;
}
.pagination{ margin: 0; }
.pagination li a{
    color: #999;
    font-size: 14px;
    font-weight: 500;
    text-align: center;
    line-height: 32px;
    width: 30px;
    height: 30px;
    padding: 0;
    margin: 0 2px;
    border-radius: 30px;
    border: none;
    transition: all 0.3s ease 0s;
}
.pagination li a:hover,
.pagination li a:focus,
.pagination li.active a{
    color: #fff;
    background-color: #286090;
}
.pagination li:first-child a,
.pagination li:last-child a{
    border-radius: 50%;
}
.col-md-offset-1.col-md-10 .panel .panel-heading {
	background-color: #59AEF4;
	border-top-left-radius: 5px;
	border-top-right-radius: 5px;
}

@media only screen and (max-width:767px){
    .panel .panel-heading{ text-align: center; }
    .panel .panel-heading .title{ margin: 0 0 15px; }
    .panel .panel-heading .text-right{ text-align: center; }
}
