* {
    font-family: Arial, Helvetica, sans-serif;
    transition: all .5s linear;
    color: #000;
    font-size: 13px;
    -webkit-user-select: none; /* Chrome all / Safari all */
    -moz-user-select: none; /* Firefox all */
    -ms-user-select: none; /* IE 10+ */
    user-select: none; /* Likely future */
}
/*********Colors************/
.light-gray-bg {
    background: #E5E5E5;
}
.dark-gray-bg {
    background: #BDBDBD;
}
.red-bg {
    background: #F87E7D;
}
.yellow-bg {
    background: #FFCD7A;
}
.light-green-bg {
    background: #C6E7C8;
}
.dark-green-bg {
    background: #40B14B;
}
.white-bg {
    background: #fff;
}
.black-bg {
    background: #000;
}
.black-bg > td {
    color: #fff;
}
/****************************/
.table td, .table th {
    padding: 1rem;
}
.table-responsive {
    padding: 20px;
}
.btn {
    background: #000;
    color: #fff;
    border: none;
    outline: none;
    margin: 20px 0;
}
.btn:hover {
    background: #fff;
    color: #000;
    outline: none;
    border: 1px solid #000;
}
input[type="checkbox"]{
    width: 15px;
    height: 15px;
    cursor: pointer;
  }