table {
  width: 100%;
  border-collapse: collapse;
}
table th {
  font-weight: 600;
  text-transform: uppercase;
}
table td, table th {
  color: #8c94a7;
  text-align: center;
  font-size: 1.4rem;
  padding: 2rem;
}
table thead tr {
  border-bottom: 1px solid #ccc;
}
table .desc {
  white-space: nowrap;
  max-width: 15rem;
  overflow: hidden;
  text-overflow: ellipsis;
}
table .status {
  display: inline-block;
  padding: 1rem 3rem;
  text-align: center;
  font-size: 1.2rem;
  font-weight: bold;
  border-radius: 2rem;
}
table .status--active {
  color: green;
  background-color: rgba(0, 128, 0, 0.2);
}
table .action-icon {
  cursor: pointer;
}

.checkbox__input {
  display: none;
}
.checkbox__input:checked + .checkbox__label {
  background-color: #7f6cfa;
}
.checkbox__input:checked + .checkbox__label .checkbox__spin {
  transform: translateX(50px);
  background-color: #ececec;
}
.checkbox__label {
  display: inline-block;
  width: 100px;
  height: 50px;
  background-color: #ececec;
  border-radius: 50px;
  cursor: pointer;
  transition: 0.25s linear;
}
.checkbox__spin {
  width: 40px;
  height: 40px;
  background-color: white;
  border-radius: 50%;
  margin: 5px;
  transition: 0.25s linear;
}

@media screen and (max-width: 1279px) {
  .table {
    width: 100%;
    overflow-x: auto;
  }
  .table::-webkit-scrollbar {
    display: none;
  }
}

/*# sourceMappingURL=style.css.map */
