@charset "UTF-8";
:root,
[data-bs-theme=light], [data-bs-theme=dark] {
  /* ----- Tabler (clé) ----- */
  --tblr-primary: #3c5b70;
  --tblr-primary-rgb: 60, 91, 112;
  --tblr-secondary: #cdea53;
  --tblr-secondary-rgb: 205, 234, 83;
  --tblr-success: #cdea53;
  --tblr-success-rgb: 205, 234, 83;
  --tblr-info: #0ea5e9;
  --tblr-info-rgb: 14, 165, 233;
  --tblr-warning: #f59e0b;
  --tblr-warning-rgb: 245, 158, 11;
  --tblr-danger: #ef4444;
  --tblr-danger-rgb: 239, 68, 68;
  --tblr-dark: #303030;
  --tblr-dark-rgb: 48, 48, 48;
  /* Liens et accents */
  --tblr-link-color: $primary;
  --tblr-link-hover-color: $secondary;
  /* BTN todo */
  --tblr-btn-hover-bg: $secondary;
  --tblr-btn-hover-color: $primary;
  /* ----- Bootstrap (pour cohérence) ----- */
  --bs-primary: var(--tblr-primary);
  --bs-primary-rgb: var(--tblr-primary-rgb);
  --bs-secondary: var(--tblr-secondary);
  --bs-success: var(--tblr-success);
  --bs-info: var(--tblr-info);
  --bs-warning: var(--tblr-warning);
  --bs-danger: var(--tblr-danger);
  --bs-dark: var(--tblr-dark);
}

.navbar .navbar-brand-image {
  height: 3rem;
}

.sylius.navbar-brand-image {
  height: 5rem;
}

.breadcrumb-item a:hover {
  color: #cdea53;
}

.text-secondary {
  color: #3c5b70 !important;
}

.icon {
  color: #3c5b70;
}

.bg-primary .icon {
  color: #cdea53;
}

a {
  color: #3c5b70;
}
a:hover {
  color: #cdea53;
}

/* Onboarding CSS styles */
/* Disabled menu items */
.onboarding-disabled-menu {
  opacity: 0.5;
  pointer-events: none;
  cursor: not-allowed;
}

/* Active menu item with blinking effect */
.onboarding-active-menu {
  position: relative;
  animation: pulse 2s infinite;
  font-weight: bold;
}

.onboarding-active-menu--dark {
  animation: pulse-dark 2s infinite;
}

/* Pulse animation for active menu */
@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(255, 255, 255, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
  }
}
@keyframes pulse-dark {
  0% {
    box-shadow: 0 0 0 0 rgba(60, 91, 112, 0.7);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(60, 91, 112, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(60, 91, 112, 0);
  }
}
/* Onboarding popup */
.onboarding-popup {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 350px;
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  z-index: 1050;
  overflow: hidden;
  transition: all 0.3s ease;
}
.onboarding-popup.no-transition {
  transition: none;
}

/* Minimized state for the popup */
.onboarding-popup-minimized {
  bottom: 0;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  transform: translateY(calc(100% - 50px));
}
.onboarding-popup-minimized .onboarding-popup-header {
  cursor: pointer;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

.onboarding-popup-header {
  background-color: var(--bs-primary);
  color: #fff;
  padding: 15px;
  font-weight: bold;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.onboarding-popup-body {
  padding: 15px;
}

.onboarding-popup-close {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 50px;
  background: none;
  border: none;
  color: #fff;
  font-size: 1.2rem;
  cursor: pointer;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding: 0 15px;
}
.onboarding-popup-finish {
  background: none;
  border: none;
  color: #fff;
  font-size: 1.2rem;
  cursor: pointer;
}

.onboarding-popup-toggle {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 50px;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding: 0 15px;
  background: none;
  border: none;
  color: #fff;
  font-size: 1.2rem;
  cursor: pointer;
}
.onboarding-popup-toggle .arrow-icon {
  font-style: normal;
  transition: transform 0.3s ease;
}

.onboarding-steps {
  list-style: none;
  padding: 0;
  margin: 0;
}

.onboarding-step {
  padding: 10px 0;
  border-bottom: 1px solid #eee;
  display: flex;
  align-items: center;
  cursor: not-allowed;
  pointer-events: none;
}
.onboarding-step.active a {
  cursor: pointer;
  pointer-events: auto;
}
.onboarding-step.completed a {
  text-decoration: line-through !important;
}

.onboarding-step:last-child {
  border-bottom: none;
}

.onboarding-step-number {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background-color: #f5f5f5;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 10px;
}

.onboarding-step.active .onboarding-step-number {
  background-color: var(--bs-primary);
  color: #fff;
}

.onboarding-step.completed .onboarding-step-number {
  background-color: var(--bs-success);
  color: #fff;
}

.onboarding-step-content {
  flex: 1;
}

.onboarding-step-title {
  font-weight: bold;
  margin-bottom: 5px;
}

.onboarding-step-description {
  color: #888;
  font-size: 0.9rem;
}

/* Test email form in onboarding step 4 */
.onboarding-test-email {
  background-color: #f8f9fa;
  border-radius: 8px;
  padding: 15px;
  margin: 15px 0;
  border: 1px solid #e9ecef;
}

.onboarding-test-email-title {
  font-weight: bold;
  margin-bottom: 10px;
}

.agency-email-block {
  border-left: 5px solid #3c5b70;
  padding-left: 1rem;
}

input[readonly=readonly] {
  background-color: #dadada;
  cursor: not-allowed;
  pointer-events: none;
}

body {
  color: #3c5b70;
}

.text-lg {
  font-size: 1.25rem;
}

ol.text-lg li {
  position: relative;
  margin: 10px 0;
}
ol.text-lg li::marker {
  color: #3c5b70;
  font-size: 1.5rem;
  font-weight: 700;
}

.btn {
  padding: 10px 25px;
}
.btn.btn-primary {
  border-radius: 30px;
  font-size: 17px;
  font-weight: 700;
  text-transform: uppercase;
  background-color: #cdea53;
  color: #3c5b70;
}
.btn.btn-microsoft {
  background-color: rgb(0, 111, 201);
  border-color: rgb(0, 111, 201);
  color: #fff;
}
.btn.btn-google {
  background-color: #EA4335;
  border-color: #EA4335;
  color: #fff;
}
.btn.btn-info {
  display: block;
  border: none;
  box-shadow: none;
  padding: 0;
  background-color: transparent;
  min-width: 2rem;
}
.btn.btn-info:active, .btn.btn-info:focus {
  border: none;
  background-color: transparent;
  box-shadow: none;
}
.btn.btn-info svg {
  color: #3c5b70;
  margin: 0;
  min-width: 2rem;
  min-height: 2rem;
}
.btn.btn-cancel {
  background-color: transparent;
  border: none;
  box-shadow: none;
  text-decoration: underline;
}
.btn.btn-txt-sm {
  font-size: 0.75rem;
}
.btn.btn-sm {
  font-size: 14px;
  padding: 6px 15px;
}
.btn.delete-collection-item {
  top: -10px !important;
  right: -10px !important;
  padding: 0;
  margin: 0;
  width: 30px;
  height: 30px;
  background: transparent;
  color: red;
  font-size: 30px;
  box-shadow: none;
  border: none;
}

.alert {
  color: #000;
}

body {
  height: auto;
  min-height: 100dvh;
}
body .navbar-collapse a.dropdown-item:hover, body .navbar-collapse a.nav-link:hover {
  color: #cdea53 !important;
}

#email-template-container {
  position: sticky;
  top: 20px;
  max-height: 80vh;
  overflow-y: auto;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  background-color: #fff;
}

.arrow-dashboard-welcome {
  position: fixed;
  bottom: 10vh;
  right: 500px;
}
@media (max-width: 1300px) {
  .arrow-dashboard-welcome {
    right: 400px;
  }
  .arrow-dashboard-welcome img {
    width: 150px;
  }
}
@media (max-width: 900px) {
  .arrow-dashboard-welcome {
    display: none;
  }
}

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