@import url('https://cdn.jsdelivr.net/npm/bootstrap@5.3.2/dist/css/bootstrap.min.css');

body {background-color:#2C3034;}
.badges {
    border: 1px solid #717171;
    font-size: 14px;
    min-width: 26px;
    height: 26px;
    display: inline-flex;
    position: absolute;
    margin-left: 8px;
    justify-content: center;
    align-items: center;
    border-radius: 3px;
    margin-top: 2px;
}
.alert {
    border: none;
}
.alert-success {
    background-color: #a0ffc1;
    color: #0a9949;
}
.alert-danger {
    background-color: #ffa9a9;
    color: #ff0e0e;
}
.fileDropper {
	border: 3px dashed #e4e6ff;
	display: flex;
	height: 130px;
	justify-content: center;
	align-items: center;
	position: relative;
	z-index: 1;
	-webkit-user-select: none;  
	-moz-user-select: none;  
	user-select: none;    
    cursor: pointer;
}
.fileDropper::after {
	position: absolute;
	content: attr(data-title);
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 1;
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 20px;
	color: #212666;
    padding: 20px;
}
.fileDropper input[type="file"]{
    opacity: 0; 
    position: absolute;
    content: "";
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 2;   
    cursor: pointer;
}

.tbl-responsive > thead > tr > th {
    background-color: #0D6EFD;
    border-bottom: 2px solid #0756CA;
}

.cp {
	font-size: 12px;
	color: #525F6C;
	font-weight: 600;
    margin-top: 30px;
    margin-bottom: 30px;
}
hr {
    border-color: #535659;
}
a {
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}
.cp a {
    color: #525F6C;
    text-decoration: none;
}
.cp a:hover {
    color: #0D6EFD;
}
.btn {
    border-radius: 3px;
}
.modal-content {
    border-radius: 0;
}
.relative {
    position: relative;
}
.loader {
	position: absolute;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	background-color: #fff;
    z-index: 100;
}

@media (max-width: 992px){
    .tbl-responsive > thead {
        display: none;
    }
    .tbl-responsive > tbody > tr {
        display: flex;
        flex-wrap: wrap;
        flex-direction: column;
    }    
    .tbl-responsive > tbody > tr > td {
        position: relative;
        text-align: left !important;
    }
    .tbl-responsive > tbody > tr > td::before {
        content: attr(data-th);
        font-weight: 600;
        width: 100px;
        display: inline-block;
    }
    .tbl-responsive > tbody > tr > td::after {
        position: absolute;
        content: " : ";
        font-weight: 600;
        left: 100px;
        top: 4px;
    }
    .tbl-responsive > tbody > tr > td:first-child:after {
        top: 9px;
    }
    .table.tbl-responsive > tbody > tr {
        padding-bottom: 30px;
    }
    .table.tbl-responsive > tbody > tr > td {
        padding: 5px 15px;
    }
    .table.tbl-responsive > tbody > tr > td {
        background-color: #2C3034;
    }
    .table.tbl-responsive > tbody > tr > td:first-child {
        --bs-table-bg-type: #0D6EFD;
        padding: 10px 15px;
        background-color: var(--bs-table-bg-type);
        border-bottom: 3px solid #0756CA !important;
        color: #FFF;
        margin-bottom: 10px;  
        border: none;              
    }  

}