/*!***********************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js!./node_modules/sass-loader/dist/cjs.js!./webroot_src/styles/main.scss ***!
  \***********************************************************************************************************************/
body {
  background-color: rgb(0, 0, 0);
}

h1,
h2,
h3 {
  color: #333;
  hyphens: auto;
}

.side-nav-item,
.heading {
  color: #fff !important;
}

.side-nav-danger {
  color: red !important;
}

.side-nav-warning {
  color: orange !important;
}

.top-nav-links a {
  color: white !important;
  transition: all 0.6s ease;
}
.top-nav-links a:hover {
  color: rgb(103, 239, 187) !important;
}
.top-nav-links a.active {
  color: rgb(103, 239, 187) !important;
}
.top-nav-links .logout-btn {
  color: red !important;
  background-color: rgba(139, 0, 0, 0.523) !important;
  padding: 4px;
  margin-left: 30px;
  border-radius: 8px;
}
.top-nav-links .logout-btn:hover {
  background-color: rgb(139, 0, 0) !important;
  color: red !important;
}
.top-nav-links span {
  color: white;
  font-size: 1rem;
}

.top-nav-title {
  background-color: rgb(0, 0, 0);
  border-radius: 4px;
}
.top-nav-title span {
  color: #fff;
}

.tiles-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
}
.tiles-wrapper .tiles {
  display: flex;
  width: 120px !important;
  height: 120px !important;
  background: linear-gradient(to bottom, rgb(103, 239, 187), rgba(13, 179, 116, 0.803));
  margin: 10px !important;
  justify-content: center;
  align-items: center;
  text-align: center;
  border-radius: 8px;
  color: rgb(0, 0, 0);
  font-weight: bold;
  transition: all 0.6s ease;
  letter-spacing: 1.5px;
}
.tiles-wrapper .tiles:hover {
  color: white;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.672);
}

.flex-container {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 0 20px;
}

.button {
  background-color: rgb(103, 239, 187) !important;
  transition: all 0.6s ease;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  width: fit-content;
  padding: 5px 10px !important;
}
.button:hover {
  background-color: rgb(0, 0, 0) !important;
  color: rgb(103, 239, 187) !important;
}
.button.user-actions {
  padding: 10px 20px !important;
}
.button.delete {
  background-color: darkred !important;
  color: white !important;
  transition: all 0.6s ease;
  margin-top: 30px;
  border: 1px solid darkred !important;
}
.button.delete:hover {
  background-color: rgb(0, 0, 0) !important;
  color: red !important;
}

button,
.button {
  background-color: rgb(103, 239, 187) !important;
  transition: all 0.6s ease;
}
button:hover,
.button:hover {
  background-color: rgb(0, 0, 0) !important;
  color: rgb(103, 239, 187) !important;
}

.secondary-button {
  background-color: rgb(0, 0, 0) !important;
  color: white;
  padding: 3px 5px !important;
  border: none !important;
}

.cancel-btn {
  background-color: rgb(0, 0, 0) !important;
  border-color: rgb(0, 0, 0) !important;
  color: white;
  transition: all 0.6s ease;
}
.cancel-btn:hover {
  color: red !important;
}

.action {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 0 50px;
}

.print-button {
  color: white;
  margin-top: 50px;
  cursor: pointer;
}
.print-button:hover {
  color: rgb(103, 239, 187);
}

@media print {
  a {
    color: red !important;
  }
  a[href]:after {
    content: none !important;
  }
}
form select:focus,
form input:focus {
  border: 1px solid rgb(0, 0, 0) !important;
}
form select:hover,
form input:hover {
  border: 1px solid rgb(0, 0, 0) !important;
}
form select:disabled,
form input:disabled {
  border: 1px solid rgb(0, 0, 0) !important;
}
form select:active,
form input:active {
  border: 1px solid rgb(0, 0, 0) !important;
}
form select:checked,
form input:checked {
  border: 1px solid rgb(0, 0, 0) !important;
}
form select:valid,
form input:valid {
  border: 1px solid rgb(0, 0, 0) !important;
}
form select:invalid,
form input:invalid {
  border: 1px solid rgb(0, 0, 0) !important;
}
form select:required,
form input:required {
  border: 1px solid rgb(0, 0, 0) !important;
}
form select:optional,
form input:optional {
  border: 1px solid rgb(0, 0, 0) !important;
}
form select:in-range,
form input:in-range {
  border: 1px solid rgb(0, 0, 0) !important;
}
form select:out-of-range,
form input:out-of-range {
  border: 1px solid rgb(0, 0, 0) !important;
}
form select:read-only,
form input:read-only {
  border: 1px solid rgb(0, 0, 0) !important;
}
form select:read-write,
form input:read-write {
  border: 1px solid rgb(0, 0, 0) !important;
}

.search-headline {
  font-weight: 700;
  margin-bottom: 5px;
}

.search-row form,
.search-form form {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 20px;
}
.search-row form .input,
.search-form form .input {
  width: 90%;
}

.container,
.top-nav {
  max-width: 160rem !important;
}

.login-form {
  max-width: 500px;
  margin: 0 auto;
}

.select2-dropdown,
.select2-results__option {
  background-color: rgb(86, 86, 86) !important;
  color: white !important;
}

.select2-selection {
  min-height: 38px !important;
  margin-bottom: 15px !important;
  padding-top: 5px;
}

.select2-selection,
.select2-selection__rendered {
  background-color: white !important;
  color: black !important;
}

.select2-search__field {
  color: white !important;
}

.search-form {
  position: relative;
}

.btn-search-reset {
  position: absolute;
  top: 25%;
  right: 5%;
  transform: translateY(-25%);
  padding: 0 20px;
  display: none;
  background-color: darkred;
  color: white;
  transition: all 0.3s ease-in-out;
}
.btn-search-reset:hover {
  transition: all 0.6s ease-in-out;
  background-color: red;
  color: white;
}
