*, body, html
{
  outline: none !important;
  margin: 0;
  padding: 0;
}
a {
    color: #444;
    cursor: pointer;
}

    a:hover {
        text-decoration: none !important;
    }

ul {
    list-style-type: none;
}
button
{
  cursor: pointer;
}
.ico
{
	position: absolute;
	top: 60%;
	left: 20px;
}
.form-group
{
  position: relative;
}
.ico-input
{
  position: absolute;
}
/* The snackbar - position it at the bottom and in the middle of the screen */
#snackbar {
  visibility: hidden; /* Hidden by default. Visible on click */
  /*width: 75%;*/
  white-space: nowrap;
  background-color: #333; /* Black background color */
  color: #fff; /* White text color */
  text-align: center; /* Centered text */
  border-radius: 2px; /* Rounded borders */
  padding: 16px; /* Padding */
  position: fixed; /* Sit on top of the screen */
  z-index: 1; /* Add a z-index if needed */
  left: 50%; /* Center the snackbar */
  bottom: 30px; /* 30px from the bottom */
  transform: translate(-50%, 0);
  letter-spacing: 1px;
}

.img-h25
{
  height: 25px;
}
.table-data
{
  width: 100% !important;
}
.table-data thead tr td
{
  border: none;
  font-weight: bold;
  color: #444;
  }
.table-data tbody tr
{
  font-size: 14px;
  padding: 5px;
}
    /*tr:hover {
        background: rgba(50, 115, 211, 1) !important;
    }*/
        .table-data tbody tr td
{
  padding-top: 5px;
  padding-bottom: 5px;
  border: none;
}

@media screen and (max-width:450px)
{
	#snackbar {
		font-size: 13px;
	}
}
/* Show the snackbar when clicking on a button (class added with JavaScript) */
#snackbar.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;}
}

/*SCROLLBAR STYLING*/
/* width */
::-webkit-scrollbar {
  width: 5px;
  height: 5px;
}

/* Track */
::-webkit-scrollbar-track {
  box-shadow: inset 0 0 5px grey; 
  border-radius: 10px;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: #008000; 
  border-radius: 10px;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: #008000; 
}
@media screen and (max-width: 450px)
{
  /* width */
::-webkit-scrollbar {
  width: 2px;
  height: 2px;
}

}
/*END SCROLLBAR STYLING*/

/*CUSTOM CLASSES*/
.ml-160px
{
  margin-left: 160px;
}
/*END CUSTOM CLASSES*/