.pointer {
  cursor: pointer !important;
}
.bee-plugin-preview {
  height: 600px;
  max-width: 100%;
  width: 100%;
  overflow: auto;
}
.sidebar-menu-note {
  margin-top: 10px;
}
.sidebar-menu-note .menu-note {
  padding: 0 0 0 12px;
  font-size: 11px;
}
.modal-lg-custom-height {
  min-height: 220px !important;
  padding: 30px;
}
.modal-md-custom-height {
  min-height: 120px !important;
  padding: 30px;
}
.modal-sm-custom-height {
  min-height: 130px !important;
  padding: 30px;
}

.select2-dropdown {
  z-index: 1055 !important;
}

.qr-code {
  width: 220px !important;
  height: 220px !important;
  border-radius: var(--radius-16);
  margin-inline: auto;
  padding: 15px;
  background-color: var(--gray-100);
  box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.08);
}
.ck.ck-editor__editable_inline > :last-child {
  height: 100px !important;
}
.upload-filed > input {
  display: none;
  visibility: hidden;
}
.upload-filed label {
  position: relative;
  border: 1px dashed var(--color-primary-light);
  -webkit-box-shadow: 0px 1px 2px 0px rgba(16, 24, 40, 0.05);
  box-shadow: 0px 1px 2px 0px rgba(16, 24, 40, 0.05);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  text-align: center;
  cursor: pointer;
}
.upload-drop-file {
  flex: 1 0 50px;
  width: 50px;
}

.upload-browse {
  font-weight: 500;
  font-size: 14px;
}

.file-detail {
  position: relative;
  background: var(--card-bg);
  max-width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 20px;
  border-radius: 4px;
}

.file-detail p {
  font-size: 13px;
  overflow: hidden;
  font-weight: lighter;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  color: var(--text-primary);
}
.file-detail > .file-type {
  font-size: 18px;
  color: var(--primary-color);
}

.file-detail .remove__file {
  position: absolute;
  top: 5px;
  right: 5px;
  border: none;
  background: var(--danger-light);
  color: var(--danger);
  width: 30px;
  height: 30px;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  overflow: hidden;
  transition: 0.3s ease-in-out;
}
.file-detail .remove__file:hover {
  background: var(--danger);
  color: var(--white);
}

.file-detail .edit__file:hover {
  background: var(--primary-color);
  color: var(--white);
}

.shake-horizontal {
  -webkit-animation: shake-horizontal 0.8s
    cubic-bezier(0.455, 0.03, 0.515, 0.955) both;
  animation: shake-horizontal 0.8s cubic-bezier(0.455, 0.03, 0.515, 0.955) both;
}

@-webkit-keyframes shake-horizontal {
  0%,
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  10%,
  30%,
  50%,
  70% {
    -webkit-transform: translateX(-10px);
    transform: translateX(-10px);
  }
  20%,
  40%,
  60% {
    -webkit-transform: translateX(10px);
    transform: translateX(10px);
  }
  80% {
    -webkit-transform: translateX(8px);
    transform: translateX(8px);
  }
  90% {
    -webkit-transform: translateX(-8px);
    transform: translateX(-8px);
  }
}
@keyframes shake-horizontal {
  0%,
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  10%,
  30%,
  50%,
  70% {
    -webkit-transform: translateX(-10px);
    transform: translateX(-10px);
  }
  20%,
  40%,
  60% {
    -webkit-transform: translateX(10px);
    transform: translateX(10px);
  }
  80% {
    -webkit-transform: translateX(8px);
    transform: translateX(8px);
  }
  90% {
    -webkit-transform: translateX(-8px);
    transform: translateX(-8px);
  }
}

/* Pricing Plan User */
.step-wrapper-user {
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-block-end: 30px;
}
.step-wrapper-user .progress-steps-user {
  max-width: 290px;
  width: 100%;
  position: relative;
  isolation: isolate;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: space-between;
  -ms-flex-pack: space-between;
  justify-content: space-between;
}
.step-wrapper-user .progress-steps-user::before {
  content: "";
  position: absolute;
  width: 95%;
  height: 1px;
  margin-inline: auto;
  inset-block-start: 16px;
  inset-inline-start: 50%;
  transform: translateX(-50%);
  background-color: var(--color-border);
  z-index: -2;
}
[dir="rtl"] .step-wrapper-user .progress-steps-user::before {
  inset-inline-end: 50%;
  inset-inline-start: unset;
}
.step-wrapper-user .progress-steps-user::after {
  content: "";
  position: absolute;
  height: 1px;
  width: 95%;
  height: 1px;
  margin-inline: auto;
  inset-block-start: 16px;
  inset-inline-start: 50%;
  transform: translateX(-50%);
  z-index: -1;
}
.step-wrapper-user .progress-steps-user > .step-item-user {
  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;
  row-gap: 10px;
  font-size: 13px;
  font-weight: 600;
}
.step-wrapper-user
  .progress-steps-user
  > .step-item-user:is(.active, .activated) {
  color: var(--color-primary);
}
.step-wrapper-user
  .progress-steps-user
  > .step-item-user:is(.active, .activated)
  > span {
  border-color: var(--color-primary-light);
  background-color: var(--color-primary);
  color: var(--color-primary-text);
  transition: all 0.3s ease-in-out;
}
.step-wrapper-user .progress-steps-user > .step-item-user > span {
  width: 32px;
  height: 32px;
  border-radius: var(--radius-rounded);
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.1;
  border: 2px solid var(--color-border);
  background-color: var(--color-white);
  transition: all 0.3s ease-in-out;
}
.step-wrapper-user:is(.step-full-width-user) {
  margin-block-end: 50px;
}
.step-wrapper-user:is(.step-full-width-user) .progress-steps-user {
  max-width: 100%;
}
.step-wrapper-user:is(.step-full-width-user) .progress-steps-user::before {
  inset-block-start: 25px;
  height: 2px;
}
.step-wrapper-user:is(.step-full-width-user) .progress-steps-user::after {
  inset-block-start: 25px;
  background: var(--color-primary);
  height: 2px;
}
.step-wrapper-user:is(.step-full-width-user)
  .progress-steps-user
  > .step-item-user
  > span {
  width: 50px;
  height: 50px;
  border-radius: var(--radius-rounded);
  font-size: 14px;
  border-color: var(--color-primary);
}

.step-content-user .step-content-item-user {
  display: none;
}
.step-content-user .step-content-item-user:is(.active) {
  display: block;
}
.step-content-user .step-content-item-user .step-next-btn-user:is(:disabled) {
  display: none;
}
.step-content-user .step-content-item-user .step-back-btn-user:is(:disabled) {
  background: var(--gray-300);
  cursor: default;
}
[data-bs-theme="dark"]
  .step-content-user
  .step-content-item-user
  .step-back-btn-user:is(:disabled) {
  color: var(--card-bg);
}
.step-content-user
  .step-content-item-user
  .step-back-btn-user:is(:disabled):hover {
  border-color: var(--gray-300);
  color: var(--text-primary);
}
[data-bs-theme="dark"]
  .step-content-user
  .step-content-item-user
  .step-back-btn-user:is(:disabled):hover {
  color: var(--card-bg);
}

/* Pricing Plan Admin */
.step-wrapper-admin {
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-block-end: 30px;
}
.step-wrapper-admin .progress-steps-admin {
  max-width: 290px;
  width: 100%;
  position: relative;
  isolation: isolate;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: space-between;
  -ms-flex-pack: space-between;
  justify-content: space-between;
}
.step-wrapper-admin .progress-steps-admin::before {
  content: "";
  position: absolute;
  width: 95%;
  height: 1px;
  margin-inline: auto;
  inset-block-start: 16px;
  inset-inline-start: 50%;
  transform: translateX(-50%);
  background-color: var(--color-border);
  z-index: -2;
}
[dir="rtl"] .step-wrapper-admin .progress-steps-admin::before {
  inset-inline-end: 50%;
  inset-inline-start: unset;
}
.step-wrapper-admin .progress-steps-admin::after {
  content: "";
  position: absolute;
  height: 1px;
  width: 95%;
  height: 1px;
  margin-inline: auto;
  inset-block-start: 16px;
  inset-inline-start: 50%;
  transform: translateX(-50%);
  z-index: -1;
}
.step-wrapper-admin .progress-steps-admin > .step-item-admin {
  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;
  row-gap: 10px;
  font-size: 13px;
  font-weight: 600;
}
.step-wrapper-admin
  .progress-steps-admin
  > .step-item-admin:is(.active, .activated) {
  color: var(--color-primary);
}
.step-wrapper-admin
  .progress-steps-admin
  > .step-item-admin:is(.active, .activated)
  > span {
  border-color: var(--color-primary-light);
  background-color: var(--color-primary);
  color: var(--color-primary-text);
  transition: all 0.3s ease-in-out;
}
.step-wrapper-admin .progress-steps-admin > .step-item-admin > span {
  width: 32px;
  height: 32px;
  border-radius: var(--radius-rounded);
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.1;
  border: 2px solid var(--color-border);
  background-color: var(--color-white);
  transition: all 0.3s ease-in-out;
}
.step-wrapper-admin:is(.step-full-width-admin) {
  margin-block-end: 50px;
}
.step-wrapper-admin:is(.step-full-width-admin) .progress-steps-admin {
  max-width: 100%;
}
.step-wrapper-admin:is(.step-full-width-admin) .progress-steps-admin::before {
  inset-block-start: 25px;
  height: 2px;
}
.step-wrapper-admin:is(.step-full-width-admin) .progress-steps-admin::after {
  inset-block-start: 25px;
  background: var(--color-primary);
  height: 2px;
}
.step-wrapper-admin:is(.step-full-width-admin)
  .progress-steps-admin
  > .step-item-admin
  > span {
  width: 50px;
  height: 50px;
  border-radius: var(--radius-rounded);
  font-size: 14px;
  border-color: var(--color-primary);
}

.step-content-admin .step-content-item-admin {
  display: none;
}
.step-content-admin .step-content-item-admin:is(.active) {
  display: block;
}
.step-content-admin
  .step-content-item-admin
  .step-next-btn-admin:is(:disabled) {
  display: none;
}
.step-content-admin
  .step-content-item-admin
  .step-back-btn-admin:is(:disabled) {
  background: var(--gray-300);
  cursor: default;
}
[data-bs-theme="dark"]
  .step-content-admin
  .step-content-item-admin
  .step-back-btn-admin:is(:disabled) {
  color: var(--card-bg);
}
.step-content-admin
  .step-content-item-admin
  .step-back-btn-admin:is(:disabled):hover {
  border-color: var(--gray-300);
  color: var(--text-primary);
}
[data-bs-theme="dark"]
  .step-content-admin
  .step-content-item-admin
  .step-back-btn-admin:is(:disabled):hover {
  color: var(--card-bg);
}

/*Automatic*/
.step-wrapper-automatic {
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-block-end: 30px;
}
.step-wrapper-automatic .progress-steps-automatic {
  max-width: 290px;
  width: 100%;
  position: relative;
  isolation: isolate;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: space-between;
  -ms-flex-pack: space-between;
  justify-content: space-between;
}
.step-wrapper-automatic .progress-steps-automatic::before {
  content: "";
  position: absolute;
  width: 95%;
  height: 1px;
  margin-inline: auto;
  inset-block-start: 16px;
  inset-inline-start: 50%;
  transform: translateX(-50%);
  background-color: var(--color-border);
  z-index: -2;
}
[dir="rtl"] .step-wrapper-automatic .progress-steps-automatic::before {
  inset-inline-end: 50%;
  inset-inline-start: unset;
}
.step-wrapper-automatic .progress-steps-automatic::after {
  content: "";
  position: absolute;
  height: 1px;
  width: 95%;
  height: 1px;
  margin-inline: auto;
  inset-block-start: 16px;
  inset-inline-start: 50%;
  transform: translateX(-50%);
  z-index: -1;
}
.step-wrapper-automatic .progress-steps-automatic > .step-item-automatic {
  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;
  row-gap: 10px;
  font-size: 13px;
  font-weight: 600;
}
.step-wrapper-automatic
  .progress-steps-automatic
  > .step-item-automatic:is(.active, .activated) {
  color: var(--color-primary);
}
.step-wrapper-automatic
  .progress-steps-automatic
  > .step-item-automatic:is(.active, .activated)
  > span {
  border-color: var(--color-primary-light);
  background-color: var(--color-primary);
  color: var(--color-primary-text);
  transition: all 0.3s ease-in-out;
}
.step-wrapper-automatic
  .progress-steps-automatic
  > .step-item-automatic
  > span {
  width: 32px;
  height: 32px;
  border-radius: var(--radius-rounded);
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.1;
  border: 2px solid var(--color-border);
  background-color: var(--color-white);
  transition: all 0.3s ease-in-out;
}
.step-wrapper-automatic:is(.step-full-width-automatic) {
  margin-block-end: 50px;
}
.step-wrapper-automatic:is(.step-full-width-automatic)
  .progress-steps-automatic {
  max-width: 100%;
}
.step-wrapper-automatic:is(.step-full-width-automatic)
  .progress-steps-automatic::before {
  inset-block-start: 25px;
  height: 2px;
}
.step-wrapper-automatic:is(.step-full-width-automatic)
  .progress-steps-automatic::after {
  inset-block-start: 25px;
  background: var(--color-primary);
  height: 2px;
}
.step-wrapper-automatic:is(.step-full-width-automatic)
  .progress-steps-automatic
  > .step-item-automatic
  > span {
  width: 50px;
  height: 50px;
  border-radius: var(--radius-rounded);
  font-size: 14px;
  border-color: var(--color-primary);
}

.step-content-automatic .step-content-item-automatic {
  display: none;
}
.step-content-automatic .step-content-item-automatic:is(.active) {
  display: block;
}
.step-content-automatic
  .step-content-item-automatic
  .step-next-btn-automatic:is(:disabled) {
  display: none;
}
.step-content-automatic
  .step-content-item-automatic
  .step-back-btn-automatic:is(:disabled) {
  background: var(--gray-300);
  cursor: default;
}
[data-bs-theme="dark"]
  .step-content-automatic
  .step-content-item-automatic
  .step-back-btn-automatic:is(:disabled) {
  color: var(--card-bg);
}
.step-content-automatic
  .step-content-item-automatic
  .step-back-btn-automatic:is(:disabled):hover {
  border-color: var(--gray-300);
  color: var(--text-primary);
}
[data-bs-theme="dark"]
  .step-content-automatic
  .step-content-item-automatic
  .step-back-btn-automatic:is(:disabled):hover {
  color: var(--card-bg);
}

.step-wrapper-manual {
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-block-end: 30px;
}
.step-wrapper-manual .progress-steps-manual {
  max-width: 290px;
  width: 100%;
  position: relative;
  isolation: isolate;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: space-between;
  -ms-flex-pack: space-between;
  justify-content: space-between;
}
.step-wrapper-manual .progress-steps-manual::before {
  content: "";
  position: absolute;
  width: 95%;
  height: 1px;
  margin-inline: auto;
  inset-block-start: 16px;
  inset-inline-start: 50%;
  transform: translateX(-50%);
  background-color: var(--color-border);
  z-index: -2;
}
[dir="rtl"] .step-wrapper-manual .progress-steps-manual::before {
  inset-inline-end: 50%;
  inset-inline-start: unset;
}
.step-wrapper-manual .progress-steps-manual::after {
  content: "";
  position: absolute;
  height: 1px;
  width: 95%;
  height: 1px;
  margin-inline: auto;
  inset-block-start: 16px;
  inset-inline-start: 50%;
  transform: translateX(-50%);
  z-index: -1;
}
.step-wrapper-manual .progress-steps-manual > .step-item-manual {
  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;
  row-gap: 10px;
  font-size: 13px;
  font-weight: 600;
}
.step-wrapper-manual
  .progress-steps-manual
  > .step-item-manual:is(.active, .activated) {
  color: var(--color-primary);
}
.step-wrapper-manual
  .progress-steps-manual
  > .step-item-manual:is(.active, .activated)
  > span {
  border-color: var(--color-primary-light);
  background-color: var(--color-primary);
  color: var(--color-primary-text);
  transition: all 0.3s ease-in-out;
}
.step-wrapper-manual .progress-steps-manual > .step-item-manual > span {
  width: 32px;
  height: 32px;
  border-radius: var(--radius-rounded);
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.1;
  border: 2px solid var(--color-border);
  background-color: var(--color-white);
  transition: all 0.3s ease-in-out;
}
.step-wrapper-manual:is(.step-full-width-manual) {
  margin-block-end: 50px;
}
.step-wrapper-manual:is(.step-full-width-manual) .progress-steps-manual {
  max-width: 100%;
}
.step-wrapper-manual:is(.step-full-width-manual)
  .progress-steps-manual::before {
  inset-block-start: 25px;
  height: 2px;
}
.step-wrapper-manual:is(.step-full-width-manual) .progress-steps-manual::after {
  inset-block-start: 25px;
  background: var(--color-primary);
  height: 2px;
}
.step-wrapper-manual:is(.step-full-width-manual)
  .progress-steps-manual
  > .step-item-manual
  > span {
  width: 50px;
  height: 50px;
  border-radius: var(--radius-rounded);
  font-size: 14px;
  border-color: var(--color-primary);
}

.step-content-manual .step-content-item-manual {
  display: none;
}
.step-content-manual .step-content-item-manual:is(.active) {
  display: block;
}
.step-content-manual
  .step-content-item-manual
  .step-next-btn-manual:is(:disabled) {
  display: none;
}
.step-content-manual
  .step-content-item-manual
  .step-back-btn-manual:is(:disabled) {
  background: var(--gray-300);
  cursor: default;
}
[data-bs-theme="dark"]
  .step-content-manual
  .step-content-item-manual
  .step-back-btn-manual:is(:disabled) {
  color: var(--card-bg);
}
.step-content-manual
  .step-content-item-manual
  .step-back-btn-manual:is(:disabled):hover {
  border-color: var(--gray-300);
  color: var(--text-primary);
}
[data-bs-theme="dark"]
  .step-content-manual
  .step-content-item-manual
  .step-back-btn-manual:is(:disabled):hover {
  color: var(--card-bg);
}
#application_usage {
  max-width: 80% !important;
  margin-left: 10% !important;
}

.membership-card {
  background: -o-linear-gradient(300deg, var(--color-secondary) 4.71%, #e3f5ff 110.44%), var(--color-white) !important;
  background: linear-gradient(150deg, var(--color-secondary) 4.71%, #e3f5ff 110.44%), var(--color-white) !important;
}
[dir=rtl] .membership-card {
  background: -o-linear-gradient(60deg, #e3f5ff 4.71%, var(--color-secondary) 110.44%), var(--color-white) !important;
  background: linear-gradient(30deg, #e3f5ff 4.71%, var(--color-secondary) 110.44%), var(--color-white) !important;
}

.custom-li-height {
  gap: 10px !important;
}

.user-logo {
  width: 35px;
  aspect-ratio: 1/1;
  display: inline-block;
  overflow: hidden;
  border-radius: var(--radius-rounded);
  img{
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}
.pament-svg {
  max-width: 40%;
  width: 100%;
  margin-inline: auto;
  > svg {
    fill: var(--text-primary);
  }
}
.fill-primary {
  fill: var(--color-primary);
}

@media (max-width: 767px) {

  .pament-svg {
    max-width: 100%;
    
  }
}

.update-btn {
  padding: 18px 35px !important;
  border-radius: 5px;
  font-size: 18px;
  font-weight: 600;
}
.update-logo {
  max-width: 250px;
}
.update_info {
  border-right: 1px solid var(--border);
  padding: 0 30px;
}
@media (max-width: 767px) {
  .update_info {
    padding: 0;
    border: none;
  }
}
@media (max-width: 1199px) {
  .update_info:first-child {
    border-right: none;
  }
}
.update_info:last-child {
  border-right: none;
}
h6.version-text span {
  background-color: var(--primary-color);
  color: #fff;
  padding: 2px 6px;
  border-radius: 4px;
}

.update_info > h5 {
  display: flex;
  align-items: center;
  gap: 10px;
  line-height: 1.2;
  font-size: 22px;
  font-weight: 600;
}
.update_info > h5 svg {
  width: 40px;
  fill: var(--primary-color);
}
.update-list li i {
  font-size: 16px !important;
  vertical-align: middle;
  line-height: 1;
  margin-top: 4px;
  color: var(--primary-color);
  margin-right: 4px;
}
.update-list li {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
}
.updating {
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.updating:before {
  background: rgba(94, 80, 6, 0.2);
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  height: 100%;
  width: 0;
  animation: progress 3s linear infinite;
  z-index: -1;
  isolation: isolate;
}

@keyframes progress {
  to {
    width: 100%;
  }
}

.update-wrapper {
  position: relative;
  padding: 50px 0;
  min-height: 100dvh;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.update-wrapper .update-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-size: cover;

  z-index: -1;
}

.update-wrapper .update-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.update-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);

  background-blend-mode: multiply;
}

/* Base styles for the offcanvas */
.qr-edit-section {
  position: relative ;
  transition: all 0.3s ease ;
}

/* Icon button styles */
.qr-edit-icon-btn {
  display: flex ;
  align-items: center ;
  justify-content: center ;
  width: 32px ;
  height: 32px ;
  border: none ;
  background-color: transparent ;
  transition: all 0.2s ease ;
  cursor: pointer ;
  z-index: 9999 ;
}

.qr-edit-circle {
  border-radius: 50% ;
}

.qr-edit-info-soft {
  background-color: rgba(13, 110, 253, 0.1) ;
  color: #0d6efd ;
}

.qr-edit-info-soft:hover {
  background-color: rgba(13, 110, 253, 0.2) ;
}

/* Tooltip styles */
.qr-edit-tooltip {
  visibility: hidden ;
  width: 100px ;
  background-color: #555 ;
  color: #fff ;
  text-align: center ;
  border-radius: 6px ;
  padding: 5px ;
  position: absolute ;
  z-index: 10000 ;
  top: 125% ;
  margin-left: -60px ;
  opacity: 0 ;
  transition: opacity 0.3s ;
  font-size: 12px ;
  pointer-events: none ;
}

.qr-edit-icon-btn:hover .qr-edit-tooltip {
  visibility: visible ;
  opacity: 1 ;
}

/* Edit button styles */
.qr-edit-btn {
  position: absolute ;
  top: 0 ;
  right: 0 ;
  z-index: 9999 ;
}

.qr-edit-section:hover .qr-edit-btn {
  display: flex ;
}

/* Tutorial section edit button - positioned at the top-right corner */
.qr-edit-tutorial-container {
  position: relative ;
}

.qr-edit-tutorial-btn {
  position: absolute ;
  top: 10px ;
  right: 10px ;
  z-index: 9999 ;
  display: flex ;
}

/* Image container styles */
.qr-edit-image-container {
  position: relative ;
  display: inline-block ;
  border-radius: 8px ;
  overflow: hidden ;
  transition: all 0.3s ease ;
}

.qr-edit-image-container:hover {
  opacity: 0.9 ;
}

.qr-edit-image-container .qr-edit-btn {
  position: absolute ;
  top: 50% ;
  left: 50% ;
  transform: translate(-50%, -50%) ;
  background-color: rgba(33, 37, 41, 0.7) ;
  color: white ;
}

/* Edit form styles */
.qr-edit-form-container {
  background-color: var(--bs-body-bg) ;
  border-radius: 8px ;
  padding: 15px ;
  margin-top: 10px ;
  box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075) ;
  z-index: 9998 ;
  position: relative ;
}

/* Content styles */
.qr-edit-content {
  transition: all 0.3s ease ;
}

.qr-edit-list {
   list-style-type: decimal ;
   padding-left: 20px ;
   font-size: 14px;
   display: flex;
   flex-direction: column;
   gap: 10px;
}

.qr-edit-link {
  display: inline-flex ;
  align-items: center ;
  text-decoration: none ;
  transition: all 0.3s ease ;
}

.qr-edit-link:hover {
  text-decoration: underline ;
}

.qr-edit-image {
  max-width: 100% ;
  height: auto ;
  transition: all 0.3s ease ;
}

/* Dark mode support */
[data-bs-theme="dark"] .qr-edit-form-container {
  background-color: #2a2d35 ;
  color: #fff ;
}

[data-bs-theme="dark"] .qr-edit-info-soft {
  background-color: rgba(13, 110, 253, 0.2) ;
}

/* RTL support */
[dir="rtl"] .qr-edit-tutorial-btn {
  right: auto ;
  left: 10px ;
}

[dir="rtl"] .qr-edit-btn {
  right: auto ;
  left: 0 ;
}

/* Responsive adjustments */
@media (max-width: 576px) {
  .qr-edit-tutorial-btn {
    top: 5px ;
    right: 5px ;
  }

  [dir="rtl"] .qr-edit-tutorial-btn {
    right: auto ;
    left: 5px ;
  }
}


/* Automations */

/* General Styles */
.page-title {
    font-size: 1.875rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.breadcrumb {
    display: flex;
    font-size: 0.875rem;
    color: var(--text-ternary);
}

.breadcrumb-item + .breadcrumb-item::before {
    content: "/";
    padding: 0 0.5rem;
}

.breadcrumb a {
    color: var(--text-ternary);
    text-decoration: none;
}

.breadcrumb a:hover {
    text-decoration: underline;
}

/* Card Styles */
.card {
    background-color: var(--color-white);
    border-radius: var(--radius-12);
    border: 1px solid var(--border-ternary);
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
    margin-bottom: 1.5rem;
    overflow: hidden;
}

.card-header {
    padding: 1.25rem 1.5rem;
    border-bottom: 1px solid var(--border-ternary);
    background-color: var(--color-white);
}

.card-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin: 0;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.card-body {
    padding: 1.5rem;
}

/* Info Card */
.info-card .card-body {
    padding: 0.75rem 1.5rem 1.5rem;
}

.info-alert {
    background-color: var(--color-gray-1);
    border-radius: var(--radius-12);
    padding: 1.25rem;
    border: 1px solid var(--border-ternary);
}

.info-content {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.info-title {
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
    font-size: 0.85rem;
}

.info-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    font-size: 0.85rem;
}

.info-list li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.75rem;
}

.info-badge {
    background-color: var(--color-gray-1);
    border: 1px solid var(--border-secondary);
    border-radius: var(--radius-4);
    padding: 0.25rem 0.5rem;
    font-size: 0.75rem;
    font-weight: 600;
    white-space: nowrap;
}

.info-note {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    color: var(--color-primary);
    font-size: 0.7rem;
    margin-top: 0.5rem;
}

.info-note i {
    font-size: 1rem;
}

.info-note-warning {
  font-size: 0.85rem;
}

/* Modern Tabs */
.modern-tabs {
    display: flex;
    gap: 0.5rem;
    border-bottom: none;
    margin-bottom: 1.5rem;
}

.modern-tabs .nav-item {
    margin: 0;
}

.modern-tabs .nav-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.25rem;
    border-radius: var(--radius-8);
    border: 1px solid var(--border-ternary);
    background-color: var(--color-white);
    color: var(--text-secondary);
    font-weight: 500;
    font-size: 0.85rem;
    transition: all 0.2s ease;
}

.modern-tabs .nav-link:hover {
    background-color: var(--color-gray-1);
}

.modern-tabs .nav-link.active {
    background-color: var(--color-primary);
    color: var(--color-primary-text);
    border-color: var(--color-primary);
}

.modern-tabs .nav-link i {
    font-size: 1.125rem;
}

.tab-description {
    font-size: 0.875rem;
    color: var(--text-ternary);
    margin-bottom: 1.5rem;
}

/* Modern Accordion */
.modern-accordion {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.accordion-item {
    border: 1px solid var(--border-ternary);
    border-radius: var(--radius-8);
    overflow: hidden;
    background-color: var(--color-white);
}

.accordion-header {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
}

.accordion-label {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-primary);
}

.accordion-trigger {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    cursor: pointer;
    padding: 0;
    background: none;
    border: none;
    text-align: left;
}

.accordion-icon {
    font-size: 1.25rem;
    transition: transform 0.2s ease;
}

.accordion-trigger[aria-expanded="true"] .accordion-icon {
    transform: rotate(180deg);
}

.accordion-body {
    padding: 0 1rem 1rem;
}

.code-block {
    background-color: var(--color-gray-1);
    border-radius: var(--radius-8);
    padding: 0.5rem 1rem;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    overflow: hidden;
    font-family: monospace;
}

.code-block code {
    font-size: 0.875rem;
    color: var(--text-primary) !important;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    flex: 1;
}

.copy-btn {
    background: none;
    border: none;
    color: var(--text-ternary);
    cursor: pointer;
    padding: 0.25rem;
    border-radius: var(--radius-4);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.copy-btn:hover {
    color: var(--color-primary);
    background-color: var(--color-primary-light);
}

.copy-btn i {
    font-size: 1rem;
}

.code-description {
    background-color: var(--color-gray-1);
    border-radius: var(--radius-8);
    padding: 1rem;
    font-size: 0.875rem;
}

.code-example {
    position: relative;
    margin-top: 0.5rem;
}

.code-example pre {
    margin: 0;
    border-radius: var(--radius-8);
    background-color: var(--color-gray-1);
    padding: 0.75rem 1rem;
    overflow-x: auto;
}

.code-example code {
    font-family: monospace;
    font-size: 0.75rem;
    color: var(--text-secondary);
}
.code-example .language-bash code {

  color: var(--text-secondary);
}

.code-example .copy-btn {
    position: absolute;
    top: 0.5rem;
    right: 0.5rem;
}

/* Step Guide */
.step-guide {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.step-guide-title {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.step-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.step-item {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.step-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.step-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 1.75rem;
    height: 1.75rem;
    border-radius: var(--radius-rounded);
    background-color: var(--color-primary);
    color: var(--color-primary-text);
    font-size: 0.875rem;
    font-weight: 600;
}

.step-title {
    font-size: 1rem;
    font-weight: 600;
    margin: 0;
}

.step-content {
    padding-left: 2.5rem;
}

.step-content p {
    font-size: 0.875rem;
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
}

/* RTL Support */
[dir="rtl"] .accordion-icon {
    transform: rotate(180deg);
}

[dir="rtl"] .accordion-trigger[aria-expanded="true"] .accordion-icon {
    transform: rotate(0);
}

[dir="rtl"] .step-content {
    padding-left: 0;
    padding-right: 2.5rem;
}

[dir="rtl"] .toast-container {
    right: auto;
    left: 1.5rem;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .modern-tabs {
        flex-direction: column;
    }
    
    .modern-tabs .nav-link {
        width: 100%;
    }
    
    .card-header, .card-body {
        padding: 1rem;
    }
    
    .step-content {
        padding-left: 0;
    }
    
    [dir="rtl"] .step-content {
        padding-right: 0;
    }
    
    .step-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
}

/* Dark mode specific adjustments */
[data-bs-theme="dark"] .card,
[data-bs-theme="dark"] .card-header,
[data-bs-theme="dark"] .accordion-item {
    background-color: var(--card-bg);
    border-color: var(--color-border);
}

[data-bs-theme="dark"] .modern-tabs .nav-link:not(.active) {
    background-color: var(--card-bg);
    color: var(--text-light);
    border-color: var(--color-border);
}

[data-bs-theme="dark"] .code-block,
[data-bs-theme="dark"] .code-example pre,
[data-bs-theme="dark"] .code-description {
    /* background-color: var(--card-bg); */
    color: var(--text-light);
}

[data-bs-theme="dark"] .code-block code,
[data-bs-theme="dark"] .code-example code 
[data-bs-theme="dark"] .code-example .language-bash code {
    color: var(--text-secondary);
}

[data-bs-theme="dark"] .info-alert {
    /* background-color: var(--card-bg); */
    border-color: var(--color-border);
}

[data-bs-theme="dark"] .info-badge {
    /* background-color: var(--card-bg); */
    border-color: var(--color-border);
    color: var(--text-light);
}


/* Contact Upload Progress Bar */

/* Import Status Loader Styles */
.import-status-wrapper {
  width: 100%;
}

.import-status-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-secondary);
}

.import-status-icon {
  animation: spin 1.5s linear infinite;
  color: var(--color-primary);
}

.import-status-progress-container {
  position: relative;
  width: 100%;
  height: 0.75rem;
  background-color: var(--gray-300);
  border-radius: var(--radius-pill);
  overflow: hidden;
  margin-top: 0.5rem;
}

.import-status-progress-bar {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  border-radius: var(--radius-pill);
  background: var(--color-gradient);
  background-size: 200% 200%;
  animation: gradientShift 3s ease infinite;
  transition: width 0.3s ease;
  box-shadow: 0 0 8px rgba(127, 86, 217, 0.3);
}

/* Update the shine effect for better visibility in light mode */
.import-status-progress-shine {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, 
                              transparent, 
                              rgba(255, 255, 255, 0.6), 
                              transparent);
  animation: shine 2s infinite;
}

.import-status-details {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.5rem;
  font-size: 0.875rem;
}

.import-status-label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-primary);
  font-weight: 500;
}

.import-status-count {
  color: var(--text-secondary);
  font-size: 0.75rem;
  font-weight: 500;
}

/* Success and error states */
.import-status-success {
  color: var(--color-success);
}

.import-status-error {
  color: var(--color-danger);
}

/* Animation keyframes */
@keyframes spin {
  from {
      transform: rotate(0deg);
  }
  to {
      transform: rotate(360deg);
  }
}

@keyframes gradientShift {
  0% {
      background-position: 0% 50%;
  }
  50% {
      background-position: 100% 50%;
  }
  100% {
      background-position: 0% 50%;
  }
}

@keyframes shine {
  0% {
      transform: translateX(-100%);
  }
  100% {
      transform: translateX(100%);
  }
}

/* Dark mode adjustments */
@media (prefers-color-scheme: dark) {
  .import-status-progress-container {
      background-color: var(--gray-300);
  }
  
  .import-status-progress-shine {
      background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
  }
}

/* Contact Create page loader */

/* Upload Progress Container Styles */
.upload-progress-container {
  padding: 1.25rem;
  background-color: var(--card-bg);
  border-radius: var(--radius-8);
  border: 1px solid var(--color-border-light);
}

.upload-progress-title {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 1rem;
}

.upload-progress-wrapper {
  position: relative;
  width: 100%;
}

.upload-progress-bar-container {
  position: relative;
  width: 100%;
  height: 25px;
  background-color: var(--gray-200);
  border-radius: var(--radius-pill);
  overflow: hidden;
}

.upload-progress-bar {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  border-radius: var(--radius-pill);
  background: var(--color-gradient);
  background-size: 200% 200%;
  animation: uploadGradientShift 3s ease infinite;
  transition: width 0.5s ease;
  /* Removed display: flex and justification */
}

/* New container for centered text */
.upload-progress-text-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
}

.upload-progress-text {
  color: var(--text-primary);
  font-size: 0.875rem;
  font-weight: 600;
  padding-left: 20px;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.upload-progress-shine {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  animation: uploadShine 2s infinite;
}

.upload-progress-details {
  color: var(--text-secondary);
  font-size: 0.875rem;
  line-height: 1.6;
}

.upload-progress-details p {
  margin-bottom: 0.5rem;
}

.upload-progress-details strong {
  color: var(--text-primary);
  font-weight: 600;
}

/* Animation keyframes with unique names to avoid conflicts */
@keyframes uploadGradientShift {
  0% {
      background-position: 0% 50%;
  }
  50% {
      background-position: 100% 50%;
  }
  100% {
      background-position: 0% 50%;
  }
}

@keyframes uploadShine {
  0% {
      transform: translateX(-100%);
  }
  100% {
      transform: translateX(100%);
  }
}

/* Light and dark mode specific adjustments */
@media (prefers-color-scheme: light) {
  .upload-progress-shine {
      background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.6), transparent);
  }
}

@media (prefers-color-scheme: dark) {
  .upload-progress-bar-container {
      background-color: rgba(31, 41, 55, 0.5);
  }
  
  .upload-progress-shine {
      background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  }
}