@charset "UTF-8";

.footer {
	/*
	position: absolute;
	bottom: 0;
	*/
}
.table-pane {
	width: 100%;
	overflow-x: auto;
}

/* Chrome, Safari, Edge, Opera */
.form-commande input::-webkit-outer-spin-button,
.form-commande input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
/* Firefox */
.form-commande input[type=number] {
  -moz-appearance: textfield;
}
.form-commande .select2-container, 
.form-commande .form-control,
  .form-commande .btn {
  border-radius: 0 !important;
}

table.table .form-control {
  background-color: transparent;
  height: auto !important;
}

.select2-container {
  display: block;
  width: 100%;
  height: calc(1.5em + .75rem + 2px);
  padding: .375rem 0;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #495057;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid #ced4da;
  transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
}
.select2-selection {
	border: none !important;
}
.select2-selection__arrow {
	top: 5px !important;
}


#stats-week, #stats-year {
  height: 33.33vh;
  width: 100%;
}

.cursor-pointer {
  cursor: pointer;
}

input[disabled], button[disabled] {
  cursor: not-allowed;
}


.liste-notes-box {
  position: fixed;
  right: 0;
  bottom: 0;
  width: 220px;
  height: auto;
  z-index: 9000;
}
.liste-notes-box button {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}
.liste-notes-box button .fa-arrow-up {
  display: none;
}
.liste-notes-box button.collapsed .fa-arrow-up {
  display: inline-block;
}
.liste-notes-box button.collapsed .fa-arrow-down {
  display: none;
}

.list-group-item:first-child {
  border-top-right-radius: 0;
}


/* Bouton de validation avec animation */
.loading-only {
  display: none;
}
.loading .not-loading-only {
  display: none;
}
.loading .loading-only {
  display: unset;
}
.animation-rotate {
  animation-name: animation-rotate;
  animation-iteration-count: infinite;
  animation-duration: 800ms;
}

@keyframes animation-rotate {
  from {
    transform: rotate(0turn);
  }
  to {
    transform: rotate(1turn);
  }
}