/* common css */
.section-title h3{
    font-size:14px;
    margin-bottom: 0;
}
.btn-primary {
	color: #fff;
	background-color: #1761fd;
	border-color: #1761fd;
}
.btn-soft-primary {
	background-color: rgba(23,97,253,0.1);
	color: #1761fd!important;
}
.btn-primary:hover {
	background-color: #024dec;
	border-color: #0249df;
}
.btn.focus, .btn:focus {
	box-shadow: none!important;
}

#viewPassword, #viewPassword2 {
    cursor: pointer;
    color:#999;
}
.hide{
    display: none;
}

.chipsBtn .feather {
	width: 18px;
	height: 18px;
	border-radius: 4px;
	padding: 3px;
	background-color: #1761fd;
	color: #fff;
	display: block;
	cursor: pointer;
}

/* status */
.status{
    padding:0 5px;
    border-radius: 33px;
    color:#fff;
    font-size:11px;
}
.statusVerified, .statusPublished, .statusApproved{
    background-color:#28a745;
}
.statusUnverified, .statusSuspended, .statusCanceled{
    background-color:#dc3545;
}
.statusPending, .statusUnpublished, .statusProcessing{
    color:#000;
    background-color:#ffc107;
}

/* modal design */
.modal-title{
    font-size:14px;
}
.modal-header {
    padding: 0.6rem 1rem;
}
.modal-header .close {
	line-height: 16px;
    padding:0;
    margin:0;
}
.modal-body {
	padding: 1rem 1.5rem;
}
.modal-body .list-group-item {
	padding: .75rem 0;
}
.modal-body .list-group-item:first-child{
    padding-top:0;
}
.modal-body .list-group-item:last-child{
    padding-bottom: 0;
}

/*file upload input */
.profile-upload input {
    position: absolute;
    top: 0;
    right: 0;
    margin: 0;
    border: solid transparent;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
}

/* User profile */
.profile{
    position: relative;
}
.profile .title-links {
	position: absolute;
	top: 0;
	right: 0;
	z-index: 2;
}
.profile-body .section-title h3 {
	margin-right: 5px;
	margin-bottom: 10px;
}
.info-list li {
	padding: 5px 0;
	display: block;
}
.info-list li .feather{
    margin-right: 4px;
}

.photo{
    position: relative;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    margin:auto;
}
.photo img{
    border:1px solid #ddd;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.1);
    width: 150px;
    height: 150px;
    object-fit: cover;
    border-radius: 50%;
    padding:5px;
}
.profile-upload {
    position: absolute;
    height: 30px;
    width: 30px;
    right: 5px;
    background-color: rgba(255, 255, 255, 0.8);
    color: #1761fd;
    border-radius: 50%;
    bottom: 5px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.personal-tab ul li {
	padding: 8px 15px;
	margin: 10px 0;
	border: 1px solid #e3ebf6;
	border-radius: .25rem;
}
.personal-tab ul li strong{
    color:#333;
    font-weight: 500;
}


#social-links li{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 3px 0;
    color: #1761fd;
}
#social-links li a{
    color:#555;
}

#social-links li:not(:last-child){
    margin-bottom: 8px;
}

/* table and datatable */
.table td .img{
    height: 34px;
    width: 34px;
    display: inline-block;
    margin-right: 5px;
    line-height: 34px;
    text-align: center;
}
.table td .img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 4px;
}
.table thead th {
	border-bottom: 1px solid #eaf0f7;
}
.table th {
	color: #303e67;
	font-weight: 500;
}
.table.table-bordered thead {
	background-color: #f1f5fa;
}
.table-bordered th, .table-bordered td {
	border: 1px solid #eaf0f7;
    font-size:13px;
}
.dataTables_paginate ul.pagination .page-link {
	padding: .20rem .5rem;
	font-size: 13px;
	line-height: 1.8;
}
.table td, .table th {
    padding:.5rem;
    vertical-align: middle;
}
td .dropleft{
    display: flex;
    justify-content: center;
}
.action_btn {
	height: 24px;
	width: 24px;
	border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: 0.5s;
}
.action_btn:focus{
	background-color: rgba(23,97,253,0.1);
}
.media-icon span {
	height: 100%;
	display: block;
	line-height: 50px;
	text-align: center;
}

/* datatable */
.dt-buttons{
    display: none;
}
.dataTable tr{
    transition: 0.5s;
}
.dataTable tr:hover{
    background-color: #f6f6f6;
}

@media (max-width: 991px){
    .personal-tab{
        margin-top:10px!important;
    }
    .personal-tab ul li{
        margin:0 0 10px;
    }
}