.btn {
  color: #fff;
  border: none;
  border-radius: 0.25rem;
  padding: 0.5rem 1rem;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
  height: 35px;
  font-size: 1rem !important;
  font-family: sans-serif !important;
}
.btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.btn--delete {
  background-color: #000;
}
.btn--delete:hover {
  background-color: black;
}
.btn--delete:focus {
  outline: none;
  box-shadow: 0 0 0 0.2rem rgba(0, 0, 0, 0.5);
}
.btn--add {
  background-color: rgba(0, 106, 5, 0.9019607843);
}
.btn--add:hover {
  background-color: rgba(0, 55, 3, 0.9019607843);
}
.btn--plus {
  background-color: rgba(34, 0, 255, 0.9019607843);
}
.btn--plus:hover {
  background-color: rgba(27, 0, 204, 0.9019607843);
}
.btn--minus {
  background-color: #fc030b;
}
.btn--minus:hover {
  background-color: #ca0209;
}
.btn--edit {
  background-color: #00ffcc;
}
.btn--edit:hover {
  background-color: #00cca3;
}

a {
  text-decoration: none;
  font-family: none;
}
a:hover {
  text-decoration: none;
}

.divider {
  height: 3px;
  background-color: rgba(34, 0, 255, 0.9019607843);
  margin: 1rem auto;
  width: 125px;
}

.form {
  width: 50%;
  margin: 0 auto;
  border: solid 1px #000;
  background-color: #f5f5f5;
  border-radius: 15px;
  padding: 20px 40px;
}
.form__row {
  height: 45px;
  gap: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.form__row label::after {
  content: " :";
}
.form__errors {
  color: #fc030b;
  margin: 0 auto;
  width: 20%;
}
.form__errors ul {
  width: 200px;
  margin: 0 auto;
}
.form input, .form select {
  box-sizing: border-box;
  width: 375px;
  height: 25px;
  border: solid 1px #000;
  border-radius: 5px;
  font-size: 0.7em;
  padding: 0;
}
.form input:focus, .form select:focus {
  outline: none;
}
@media screen and (max-width: 768px) {
  .form input, .form select {
    width: 150px;
  }
}
@media screen and (max-width: 768px) {
  .form {
    width: 85%;
    padding: 10px 20px;
  }
}

/** STIMULUS CONTROLLER **/
.ts-wrapper {
  width: 375px;
}

table {
  width: 100%;
  background-color: #f5f5f5;
  border: solid 2px #000;
  border-radius: 25px;
  overflow: hidden;
}
table tr td {
  padding: 10px;
  text-align: center;
}

nav {
  height: 60px;
  border-bottom: 3px solid #000;
}
nav ul {
  list-style: none;
  display: flex;
  gap: 20px;
  height: 100%;
  align-items: center;
  justify-content: center;
  padding: 0;
  background-color: #fff;
}
@media screen and (max-width: 768px) {
  nav ul {
    display: none;
  }
}
nav ul a {
  color: #000;
  font-size: 2em;
}
nav ul a:visited {
  color: #000;
}
@media screen and (max-width: 768px) {
  nav ul a {
    font-size: 1.5em;
  }
}
nav ul.show {
  display: block;
  position: absolute;
  top: 60px;
  left: 0;
  width: 100%;
  height: 50%;
  background-color: #fff;
  border-bottom: 3px solid #000;
  padding: 0;
  z-index: 5;
  text-align: center;
}
nav ul.show li {
  margin-block: 15px;
}
nav .hamburger {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 30px;
  width: 30px;
  position: absolute;
  top: 15px;
  right: 15px;
}
@media screen and (min-width: 768px) {
  nav .hamburger {
    display: none;
  }
}
nav .hamburger span {
  display: block;
  height: 3px;
  width: 30px;
  background-color: #000;
  border-radius: 3px;
}

.main {
  text-align: center;
}
.main h2, .main h3 {
  margin-block: 20px;
}
.main h2 {
  font-size: 2.2em;
}
.main h3 {
  font-size: 1.5em;
}
.main .motd {
  font-size: 1.75em;
}
.main__list {
  width: 50%;
  min-height: 100px;
  margin: 0 auto;
}
.main__list--empty {
  display: flex;
  justify-content: center;
  align-items: center;
}
.main__list--action {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
}
@media screen and (max-width: 768px) {
  .main__list--action {
    gap: 5px;
  }
}
.main__list table thead tr th {
  display: none;
}
.main__list table tbody tr.provider__name {
  width: 100%;
  text-decoration: underline;
  background-color: #fff;
  height: 110%;
  position: relative;
  bottom: 5px;
}
.main__list table tbody tr.category__name {
  font-size: 1.5rem;
}
.main__list table tbody tr td {
  padding: 10px;
}
.main__list table tbody tr td .btn {
  width: 27px;
  height: 27px;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}
.main__list table tbody tr td input {
  width: 27px;
  height: 27px;
}
@media screen and (max-width: 768px) {
  .main__list {
    width: 90%;
  }
}
.main__action {
  margin-top: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
}
.main__action > * {
  height: 35px;
  padding: 2px 15px;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .main__action > * {
    width: 70%;
  }
}
@media screen and (max-width: 768px) {
  .main__action {
    flex-direction: column;
  }
}

.products table {
  width: 90%;
  border-collapse: collapse;
  border-spacing: 0;
  margin: 0 auto;
  margin-top: 20px;
  margin-bottom: 20px;
}
.products table th, .products table td {
  border: 1px solid #ddd;
  padding: 7px;
  padding-left: 15px;
  text-align: left;
}
.products table th {
  background-color: #c6c6c6;
}
.products table tr {
  height: 45px;
}
.products table tr:nth-child(even) {
  background-color: #d0d0d0;
}
.products table tr:hover {
  background-color: #ddd;
}
@media screen and (max-width: 600px) {
  .products table tr td.actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
}
@media screen and (max-width: 600px) {
  .products table tr td a {
    height: 20px;
    width: 60%;
    display: flex;
    justify-content: center;
    align-items: center;
  }
}
.products .delete-form {
  height: 100%;
  width: 100%;
  background-color: rgba(245, 245, 245, 0.5);
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}
.products .delete-form.show {
  display: block;
}
.products .delete-form .form-dialog {
  border: 1px solid #ddd;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 325px;
  height: 100px;
  transform: translate(-50%, -50%);
  background-color: #fff;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 20px;
}

* {
  margin: 0;
}

body {
  background: #fff;
}

/*# sourceMappingURL=app.output.css.map */
