img{
    height:50px;
    width:50px;
    
}
.tc{
    margin-top:2em;
}
.tcImages{
    border-radius: 5px;
box-shadow: 0px 0px 14px -1px #ccc;
position : relative;
}
.tcImages img {
    height: 12em;
object-fit: contain;
width: 100%;
}
.editButton{
    position: absolute;
    top: 0px;
    right: 0px;
}
.delete-button{
    width: 2em;
    padding: 6px !important; 
}
.error{
  color:red !important;
}
label{
  font-weight:bold;
}

.dataTables_wrapper {
  margin-top: 2em !important;
  width: 100%;
  overflow: hidden;
  overflow-x:scroll;
}
.actionbtn{
  width: 5em;
}



/* Snake Bar Start Here  */
#snackbar {
    visibility: hidden;
    min-width: 250px;
    margin-left: -125px;
    color: #02030a;
    text-align: center;
    border-radius: 2px;
    padding: 16px;
    position: fixed;
    z-index: 1;
    left: 83%;
    top: 80px;
    font-size: 17px;
  }
  
  #snackbar.show {
    visibility: visible;
    -webkit-animation: fadein 0.5s, fadeout 0.5s 2.5s;
    animation: fadein 0.5s, fadeout 0.5s 2.5s;
  }
  
  @-webkit-keyframes fadein {
    from {top: 0; opacity: 0;} 
    to {top: 80px; opacity: 1;}
  }
  
  @keyframes fadein {
    from {top: 0; opacity: 0;}
    to {top: 80px; opacity: 1;}
  }
  
  @-webkit-keyframes fadeout {
    from {top: 80px; opacity: 1;} 
    to {top: 0; opacity: 0;}
  }
  
  @keyframes fadeout {
    from {top: 80px; opacity: 1;}
    to {top: 0; opacity: 0;}
  }
  /* Snake Bar Start End  */