.wpdaecv-sidebar {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 999999;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  pointer-events: none;
}
.wpdaecv-sidebar.is-open {
  pointer-events: auto;
}
.wpdaecv-sidebar.is-open .wpdaecv-sidebar__overlay {
  opacity: 1;
}
.wpdaecv-sidebar.is-open .wpdaecv-sidebar__panel {
  -webkit-transform: translateX(0);
          transform: translateX(0);
}
.wpdaecv-sidebar.is-expanded .wpdaecv-sidebar__panel {
  max-width: 100% !important;
  width: 100% !important;
  margin-left: 0;
}
.wpdaecv-sidebar.is-expanded .wpdaecv-sidebar__expand svg {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
.wpdaecv-sidebar.is-expanded .wpdaecv-fiches-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1rem;
  width: 100%;
}
.wpdaecv-sidebar__overlay {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
.wpdaecv-sidebar__panel {
  position: relative;
  width: 400px;
  height: 100%;
  background: white;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  overflow-x: hidden;
}
.wpdaecv-sidebar__header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 1rem;
  border-bottom: 1px solid #e0e0e0;
}
.wpdaecv-sidebar__header-left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1rem;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-width: 0;
}
.wpdaecv-sidebar__header-right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.5rem;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.wpdaecv-sidebar__title-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.5rem;
  min-width: 0;
}
.wpdaecv-sidebar__title {
  margin: 0;
  font-size: 1.25rem;
  font-weight: 600;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.wpdaecv-sidebar__expand {
  padding: 0.5rem;
  border: none;
  background: none;
  cursor: pointer;
  color: #666;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.wpdaecv-sidebar__expand:hover {
  color: #000;
}
.wpdaecv-sidebar__expand svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
.wpdaecv-sidebar__back {
  padding: 0.5rem;
  border: none;
  background: none;
  cursor: pointer;
  color: #666;
  -webkit-transition: color 0.2s ease;
  transition: color 0.2s ease;
  margin-right: 0.5rem;
}
.wpdaecv-sidebar__back:hover {
  color: #000;
}
.wpdaecv-sidebar__back svg {
  display: block;
  width: 24px;
  height: 24px;
  fill: currentColor;
}
.wpdaecv-sidebar__close {
  padding: 0.5rem;
  border: none;
  background: none;
  cursor: pointer;
  color: #666;
  -webkit-transition: color 0.2s ease;
  transition: color 0.2s ease;
}
.wpdaecv-sidebar__close:hover {
  color: #000;
}
.wpdaecv-sidebar__close svg {
  display: block;
  width: 24px;
  height: 24px;
  fill: currentColor;
}
.wpdaecv-sidebar__step--details {
  -webkit-animation: slideIn 0.3s ease;
          animation: slideIn 0.3s ease;
}
@-webkit-keyframes slideIn {
  from {
    opacity: 0;
    -webkit-transform: translateX(20px);
            transform: translateX(20px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
@keyframes slideIn {
  from {
    opacity: 0;
    -webkit-transform: translateX(20px);
            transform: translateX(20px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
.wpdaecv-sidebar__content {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  overflow-y: auto;
  overflow-x: hidden;
  padding: 1rem;
}
.wpdaecv-sidebar__fiches {
  margin-bottom: 2rem;
  width: 100%;
}
.wpdaecv-sidebar__fiches h3 {
  margin: 0 0 1rem;
  font-size: 1.1rem;
  font-weight: 600;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.5rem;
}
.wpdaecv-sidebar__fiches-counter {
  font-size: 0.9em;
  font-weight: normal;
  margin-left: 8px;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}
.wpdaecv-sidebar__fiche {
  display: grid;
  grid-template-columns: 80px minmax(0, 1fr) auto;
  gap: 1rem;
  padding: 1rem;
  border: 1px solid #e0e0e0;
  border-radius: 4px;
  margin-bottom: 0.5rem;
  background: white;
  -webkit-transition: -webkit-transform 0.2s ease, -webkit-box-shadow 0.2s ease;
  transition: -webkit-transform 0.2s ease, -webkit-box-shadow 0.2s ease;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  transition: transform 0.2s ease, box-shadow 0.2s ease, -webkit-transform 0.2s ease, -webkit-box-shadow 0.2s ease;
  width: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.wpdaecv-sidebar__fiche:hover {
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
  -webkit-box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
          box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.wpdaecv-sidebar__fiche-image {
  width: 80px;
  height: 80px;
  border-radius: 4px;
  overflow: hidden;
}
.wpdaecv-sidebar__fiche-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.wpdaecv-sidebar__fiche-content {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-width: 0;
}
.wpdaecv-sidebar__fiche-content h4 {
  margin: 0 0 0.25rem;
  font-size: 1rem;
  font-weight: 500;
}
.wpdaecv-sidebar__fiche-content h4 a {
  color: inherit;
  text-decoration: none;
}
.wpdaecv-sidebar__fiche-content h4 a:hover {
  color: #d32f2f;
}
.wpdaecv-sidebar__fiche-content p {
  margin: 0 0 0.25rem;
  font-size: 0.875rem;
  color: #666;
}
.wpdaecv-sidebar__fiche-type {
  display: inline-block;
  padding: 0.25rem 0.5rem;
  border-radius: 2rem;
  background: #f5f5f5;
  color: #666;
  font-size: 0.75rem;
  line-height: 1;
}
.wpdaecv-sidebar__fiche-remove {
  padding: 0.5rem;
  border: none;
  background: none;
  cursor: pointer;
  color: #666;
  -webkit-transition: color 0.2s ease;
  transition: color 0.2s ease;
  -ms-flex-item-align: start;
      align-self: flex-start;
}
.wpdaecv-sidebar__fiche-remove:hover {
  color: #d32f2f;
}
.wpdaecv-sidebar__fiche-remove svg {
  display: block;
  width: 20px;
  height: 20px;
  fill: currentColor;
}
.wpdaecv-sidebar__empty, .wpdaecv-sidebar__error {
  padding: 1rem;
  text-align: center;
  color: #666;
  font-style: italic;
}
.wpdaecv-sidebar__error {
  color: #d32f2f;
}
.wpdaecv-sidebar__loader {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 2rem;
  text-align: center;
}
.wpdaecv-sidebar__loader p {
  margin: 1rem 0 0;
  color: #666;
}
.wpdaecv-sidebar__loader-spinner {
  display: inline-block;
  position: relative;
  width: 40px;
  height: 40px;
}
.wpdaecv-sidebar__loader-spinner div {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: block;
  position: absolute;
  width: 32px;
  height: 32px;
  margin: 4px;
  border: 4px solid #d32f2f;
  border-radius: 50%;
  -webkit-animation: wpdaecv-loader 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
          animation: wpdaecv-loader 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
  border-color: #d32f2f transparent transparent transparent;
}
.wpdaecv-sidebar__loader-spinner div:nth-child(1) {
  -webkit-animation-delay: -0.45s;
          animation-delay: -0.45s;
}
.wpdaecv-sidebar__loader-spinner div:nth-child(2) {
  -webkit-animation-delay: -0.3s;
          animation-delay: -0.3s;
}
.wpdaecv-sidebar__loader-spinner div:nth-child(3) {
  -webkit-animation-delay: -0.15s;
          animation-delay: -0.15s;
}
@-webkit-keyframes wpdaecv-loader {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
@keyframes wpdaecv-loader {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
.wpdaecv-sidebar__form h3 {
  margin: 0 0 1rem;
  font-size: 1.1rem;
  font-weight: 600;
}
.wpdaecv-sidebar__form-group {
  margin-bottom: 1rem;
  width: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.wpdaecv-sidebar__form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
}
.wpdaecv-sidebar__form-group input,
.wpdaecv-sidebar__form-group select {
  width: 100%;
  padding: 0.5rem;
  border: 1px solid #e0e0e0;
  border-radius: 4px;
  font-size: 1rem;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  min-width: 0;
  max-width: 100%;
}
.wpdaecv-sidebar__form-group input[type=date],
.wpdaecv-sidebar__form-group select[type=date] {
  padding-right: 0.5rem;
}
.wpdaecv-sidebar__form-group input:focus,
.wpdaecv-sidebar__form-group select:focus {
  outline: none;
  border-color: #666;
}
.wpdaecv-sidebar__form-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  width: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.wpdaecv-sidebar__footer {
  padding: 1rem;
  border-top: 1px solid #e0e0e0;
}
.wpdaecv-sidebar__submit {
  width: 100%;
  padding: 0.75rem 1rem;
  border: none;
  border-radius: 4px;
  background: #d32f2f;
  color: white;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.wpdaecv-sidebar__submit--next {
  background: #2196f3;
}
.wpdaecv-sidebar__submit--next:hover:not(:disabled) {
  background: #1976d2;
}
.wpdaecv-sidebar__submit--generate {
  background: #d32f2f;
}
.wpdaecv-sidebar__submit--generate:hover:not(:disabled) {
  background: #b71c1c;
}
.wpdaecv-sidebar__submit:disabled {
  background: #e0e0e0;
  cursor: not-allowed;
}
.wpdaecv-sidebar__fiches-list .wpdaecv-fiches-grid {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1rem;
  width: 100%;
}
.wpdaecv-sidebar__fiches-list .wpdaecv-fiches-grid .wpdaecv-remove-fiche {
  position: absolute;
  top: 10px;
  right: 10px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid #dc3545;
  color: #dc3545;
  border-radius: 4px;
  padding: 5px 10px;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  z-index: 1;
}
.wpdaecv-sidebar__fiches-list .wpdaecv-fiches-grid .wpdaecv-remove-fiche .dashicons {
  font-size: 16px;
  width: 16px;
  height: 16px;
  margin-right: 5px;
}
.wpdaecv-sidebar__fiches-list .wpdaecv-fiches-grid .wpdaecv-remove-fiche:hover {
  background: #dc3545;
  color: white;
}
.wpdaecv-sidebar__fiches-list .wpdaecv-fiches-grid .dae-card {
  position: relative;
  margin-bottom: 0;
}
.wpdaecv-sidebar__fiches-list .wpdaecv-fiches-grid-item {
  width: 100%;
  margin: 0;
  position: relative;
}
.wpdaecv-sidebar__form-group {
  margin-bottom: 1rem;
}
.wpdaecv-sidebar__form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
}
.wpdaecv-sidebar__form-group input[type=text],
.wpdaecv-sidebar__form-group input[type=number],
.wpdaecv-sidebar__form-group input[type=date],
.wpdaecv-sidebar__form-group select {
  width: 100%;
  padding: 0.5rem;
  border: 1px solid #e0e0e0;
  border-radius: 4px;
  font-size: 1rem;
  -webkit-transition: border-color 0.2s ease;
  transition: border-color 0.2s ease;
}
.wpdaecv-sidebar__form-group input[type=text]:focus,
.wpdaecv-sidebar__form-group input[type=number]:focus,
.wpdaecv-sidebar__form-group input[type=date]:focus,
.wpdaecv-sidebar__form-group select:focus {
  outline: none;
  border-color: #666;
}
.wpdaecv-sidebar__form-group .wpdaecv-daterange {
  background: #fff url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24'%3E%3Cpath fill='%23666' d='M9 11H7v2h2v-2zm4 0h-2v2h2v-2zm4 0h-2v2h2v-2zm2-7h-1V2h-2v2H8V2H6v2H5c-1.11 0-1.99.9-1.99 2L3 20c0 1.1.89 2 2 2h14c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm0 16H5V9h14v11z'/%3E%3C/svg%3E") no-repeat right 8px center;
  padding-right: 40px;
  cursor: pointer;
}

.litepicker {
  z-index: 9999999 !important;
}

.wpdaecv-toggle-sidebar {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 999998;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 12px;
  background: #d32f2f;
  color: white;
  border: none;
  border-radius: 50px;
  -webkit-box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
          box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  cursor: pointer;
  -webkit-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  width: 48px;
  height: 48px;
}
.wpdaecv-toggle-sidebar__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  min-width: 24px;
  overflow: hidden;
}
.wpdaecv-toggle-sidebar:hover {
  width: auto;
  padding: 12px 20px;
  background: #b71c1c;
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
  -webkit-box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
          box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}
.wpdaecv-toggle-sidebar:hover .wpdaecv-toggle-sidebar__label {
  max-width: 200px;
  opacity: 1;
  margin-right: 8px;
}
.wpdaecv-toggle-sidebar__icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-right: 8px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.wpdaecv-toggle-sidebar__icon svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}
.wpdaecv-toggle-sidebar__label {
  font-size: 16px;
  font-weight: 500;
  max-width: 0;
  opacity: 0;
  white-space: nowrap;
  overflow: hidden;
  -webkit-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.wpdaecv-toggle-sidebar__counter {
  display: none;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  min-width: 20px;
  height: 20px;
  padding: 0 6px;
  background: white;
  color: #d32f2f;
  border-radius: 10px;
  font-size: 12px;
  font-weight: 600;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  position: absolute;
  top: -8px;
  right: -8px;
  -webkit-box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
          box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}
.wpdaecv-toggle-sidebar__counter:not(:empty) {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}/*# sourceMappingURL=sidebar.css.map */