.login-register-footer{
    float: left;
    clear: both;
    position:relative;
    width:100%;
    top: 12%;
    margin-left:0px !important;
}
.dataTables_empty{
    text-align:center;
}
.wrapper{
    width: 100%;
}
.dataTables_filter, .dataTables_paginate{
    float:right;
}
.circle-img{
    border-radius: 50%;
    height: auto;
    width: 30%;
}
.card-primary:not(.card-outline)>.card-header {
    background-color: #a45374 !important;
}
.sidebar-dark-primary .nav-sidebar>.nav-item>.nav-link.active, .sidebar-light-primary .nav-sidebar>.nav-item>.nav-link.active {
    background-color: #a45374 !important;
}

/*** Snakebar Css ***/

#snakbar {
    z-index: 9999999; visibility: hidden;
    position: fixed;
    z-index: 10;
    background-color: rgba(0,0,0,.6);
    min-width: 200px;
    padding: 10px;
    bottom: 100px;
    margin: auto;
    display: flex;
    left: 40%;
    height: 50px;
    border-radius: 30px;
    text-align: center;
}
#snakbar-msg {
    color: #ffff;
    margin: auto;
    font-size:18px;
}

/* Show the snackbar when clicking on a button (class added with JavaScript) */
#snakbar.show {
  visibility: visible; /* Show the snackbar */
  /* Add animation: Take 0.5 seconds to fade in and out the snackbar. 
  However, delay the fade out process for 2.5 seconds */
  -webkit-animation: fadein 0.5s, fadeout 0.5s 2.5s;
  animation: fadein 0.5s, fadeout 0.5s 2.5s;
}

/* Animations to fade the snackbar in and out */
@-webkit-keyframes fadein {
  from {bottom: 0; opacity: 0;} 
  to {bottom: 30px; opacity: 1;}
}

@keyframes fadein {
  from {bottom: 0; opacity: 0;}
  to {bottom: 30px; opacity: 1;}
}

@-webkit-keyframes fadeout {
  from {bottom: 30px; opacity: 1;} 
  to {bottom: 0; opacity: 0;}
}

@keyframes fadeout {
  from {bottom: 30px; opacity: 1;}
  to {bottom: 0; opacity: 0;}
}
/*** END ***/
.bg-warning {
    background-color: #a45374 !important;
}

.bg-warning .info-box-text{
    color:#fff !important;
}

.bg-warning .fas, .bg-warning .fa, .bg-warning .far{
    color: #fff;
}