@charset "UTF-8";
@font-face {
  font-family: "Graphik-Bold";
  src: url("../fonts/Graphik-Bold.otf") format("opentype");
}
@font-face {
  font-family: "Graphik-Regular";
  src: url("../fonts/Graphik-Regular.otf") format("opentype");
}
@property --rotate {
  syntax: "<angle>";
  initial-value: 132deg;
  inherits: false;
}
html, body {
  font-size: 16px;
  background-color: #181A20;
  font-family: "Graphik-Regular";
  height: 100%;
  box-sizing: border-box;
  overflow: hidden;
  padding: 0;
}

body {
  display: flex;
  flex-direction: column;
  /*
  * HELPERS
  */
}
body.noselect {
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
body main {
  padding: 0 15px;
}
body main:nth-child(2) {
  padding-top: 90px;
  flex: 1;
  overflow-y: auto;
}
body main:nth-child(3) {
  padding-top: 140px !important;
  flex: 1;
  overflow-y: auto;
  padding-inline: 0;
  position: relative;
  padding-left: 13px;
}
body .text_preview {
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  max-width: 300px;
}
body .preview_link {
  font-size: 0.875rem;
  text-decoration: none;
  text-align: center;
  color: #009694 !important;
  display: block;
}
body .remove-file, body .remove-note {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  color: #DC4B38 !important;
  font-weight: bold;
  font-size: 1.25rem;
}
body .pending {
  color: #BCA112;
}
body .enabled {
  color: #009694;
}
body .disabled {
  color: #DC4B38;
}
body .flex-1 {
  flex: 1 !important;
}
body .pr-30 {
  padding-right: 30px !important;
}
body .mw-160 {
  max-width: 160px !important;
}
body .mw-400 {
  max-width: 400px !important;
}
body .white-text {
  color: #FFFFFF !important;
}
body .gray-text {
  color: #757575 !important;
}
body .gray-text-2 {
  color: #9E9E9E !important;
}
body .text-small {
  font-size: 0.625rem;
}
body .text-medium {
  font-size: 0.75rem;
}
body .text-normal {
  font-size: 0.875rem;
}
body .weight-100 {
  font-weight: 100;
}
body .weight-200 {
  font-weight: 200;
}
body .weight-300 {
  font-weight: 300;
}
body .weight-400 {
  font-weight: 400;
}
body .weight-500 {
  font-weight: 500;
}
body .weight-600 {
  font-weight: 600;
}
body .weight-700 {
  font-weight: 700;
}
body .weight-800 {
  font-weight: 800;
}
body .weight-900 {
  font-weight: 900;
}
body .op-1 {
  opacity: 0.1 !important;
}
body .op-2 {
  opacity: 0.2 !important;
}
body .op-3 {
  opacity: 0.3 !important;
}
body .op-4 {
  opacity: 0.4 !important;
}
body .op-5 {
  opacity: 0.5 !important;
}
body .op-6 {
  opacity: 0.6 !important;
}
body .op-7 {
  opacity: 0.7 !important;
}
body .op-8 {
  opacity: 0.8 !important;
}
body .op-9 {
  opacity: 0.9 !important;
}
body .op-10 {
  opacity: 1 !important;
}
body .green_button {
  color: #FFFFFF;
  background-color: #009694;
  border-radius: 100px;
  font-size: 1rem;
}
body .green_button:hover {
  border-color: #009694;
  color: #FFFFFF;
}
body input[type=text]:focus {
  box-shadow: 0 0 0 0.25rem rgba(0, 150, 148, 0.25);
}
body input[type=date] {
  color-scheme: dark;
}
body .cta_btn {
  padding: 5px 10px;
}
body #toast-container > div {
  opacity: 1;
  border-radius: 10px;
}
body .toast-success {
  background-color: #1F222A;
  border: 2px solid #009694;
}
body .toast-error {
  background-color: #1F222A;
  border: 2px solid #DC4B38;
}
body .error {
  display: block;
  font-size: 0.75rem;
  color: #DC4B38;
  margin-top: 5px;
}
body .no-results {
  font-size: 1.25rem;
  text-align: center;
  width: 100%;
}
body #load-more-trigger {
  width: 100%;
  height: 30px !important;
  background-color: transparent;
  visibility: hidden;
}
body .no-border {
  border: none !important;
  pointer-events: none;
  cursor: default !important;
}
body .no-border:hover {
  box-shadow: none !important;
}
body .w-fit {
  width: -moz-fit-content !important;
  width: fit-content !important;
}
body .form-check-input:checked {
  background-color: #009694;
  border-color: #009694;
}
body .spinner {
  border: 4px solid rgba(0, 0, 0, 0.1);
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border-left-color: #FFFFFF;
  animation: spin 1s ease infinite;
}
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
body .modal-content {
  background-color: #393E4C;
  color: #FFFFFF;
}
body .modal-content .modal-header {
  border-bottom: none;
}
body .modal-content .close_modal {
  color: #FFFFFF;
  border: none;
  background: transparent;
  height: auto;
}
body .modal-content .btn-primary {
  background-color: #009694;
  border-color: #009694;
}
body .modal-content .btn-primary:hover {
  background-color: transparent;
}
body .modal-content .btn-danger {
  background-color: #DC4B38;
  border-color: #DC4B38;
}
body .modal-content .btn-danger:hover {
  background-color: transparent;
}
body .modal-content .modal-footer {
  border-top: none;
}
body .warning_red {
  color: #DC4B38;
  font-size: 0.875rem;
}
body footer a {
  color: #009694;
  text-decoration: none;
}

/* Afegir el punt de ruptura per a pantalles de 1920px o més grans */
@media (min-width: 1920px) {
  /* Afegeix les classes per controlar la mida de les columnes */
  .col-xxxl-1 {
    flex: 0 0 8.33%; /* 1 columna sobre 12 */
    max-width: 8.33%;
  }
  .col-xxxl-2 {
    flex: 0 0 16.66%; /* 2 columnes sobre 12 */
    max-width: 16.66%;
  }
  .col-xxxl-3 {
    flex: 0 0 25%; /* 3 columnes sobre 12 */
    max-width: 25%;
  }
  .col-xxxl-4 {
    flex: 0 0 33.33%; /* 4 columnes sobre 12 */
    max-width: 33.33%;
  }
  .col-xxxl-5 {
    flex: 0 0 41.66%; /* 5 columnes sobre 12 */
    max-width: 41.66%;
  }
  .col-xxxl-6 {
    flex: 0 0 50%; /* 6 columnes sobre 12 */
    max-width: 50%;
  }
  .col-xxxl-7 {
    flex: 0 0 58.33%; /* 7 columnes sobre 12 */
    max-width: 58.33%;
  }
  .col-xxxl-8 {
    flex: 0 0 66.66%; /* 8 columnes sobre 12 */
    max-width: 66.66%;
  }
  .col-xxxl-9 {
    flex: 0 0 75%; /* 9 columnes sobre 12 */
    max-width: 75%;
  }
  .col-xxxl-10 {
    flex: 0 0 83.33%; /* 10 columnes sobre 12 */
    max-width: 83.33%;
  }
  .col-xxxl-11 {
    flex: 0 0 91.66%; /* 11 columnes sobre 12 */
    max-width: 91.66%;
  }
  .col-xxxl-12 {
    flex: 0 0 100%; /* 12 columnes sobre 12 */
    max-width: 100%;
  }
}/*# sourceMappingURL=global.css.map */