  .table-dragable > tbody .grabable { user-select: none; }
  .table-dragable > tbody > tr.grabbed {
    box-shadow: 0 0 10px 0 rgba(0,0,0,0.5);
  }
  
  .del_thing {
    color: #ff0000 !important;
    cursor: pointer;
  }
  
  .del_thing:hover { 
    color: #ff5757 !important;
  }
  
  .del_thing:hover .fa-trash-o {
    transform: rotate(-20deg);
  }
  
  input, .add_file{
    height: 30px !important;
    border-radius: 0 !important;
  }
  
  .add_file:focus {
    outline: none;
  }
  .add_file:hover {
    background-color: #555 !important;
  }
  
  .input-clear {
    height: 28px;
    width: 28px;
    position: absolute;
    z-index: 3;
    background-color: #444;
    margin-left: 349px;
    margin-top: -39px;
    cursor: pointer;
  }
  .input-clear:hover {
    background-color: #555;
  }
  .input-clear:hover .input-clear-icon {
    color: #c43333;
  }
  .input-clear-icon {
    margin-top: 7px;
    color: #ff6363;
  }  
  
  .tooltip .tooltiptext {
    visibility: hidden;
    position: absolute;
    width: 120px;
    background-color: #555;
    color: #fff;
    text-align: center;
    padding: 5px 0;
    border-radius: 6px;
    z-index: 1;
    opacity: 0;
    transition: opacity .6s;
  }
  /*IGNORE THIS*/
  #my-btn-contain {
    position: fixed;
    bottom: 0;
    left: 0;
    margin: 0 0 20px 20px;
  }
  
  #more-btn {
    border: 1px solid #6ddba8;
    background-color: #6ddba8;
    padding: 5px 10px 5px 10px;
    font-weight: bold;
    color: #319b6a;
    display: inline;
    outline: none;
    /* box-shadow: 5px 5px #111; */
    margin-right: 5px;
  }
  #more-btn:hover {
    cursor: pointer;
    background-color: #57aa84;
    border: 1px solid #57aa84;
    color: #257a53;
  }
  .profile {
    color: #444;
    display: inline;
    font-weight: bold;
    font-size: 19px;
  }
  .profile:hover {
    cursor: pointer;
    color: #333;
  }
  
  /*NO SELECTION BACKGROUND HIGHLIGHT*/
  ::selection {
      background-color: rgba(0, 0, 0, 0.5);
  }
  ::-moz-selection {
      background-color: rgba(0, 0, 0, 0.5);
  }