@charset "UTF-8";
/* تحريك لطيف عند ظهور الكتل */
@keyframes slideFadeIn {
  from {
    opacity: 0;
    transform: translateY(6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.profile-card,
.profile-content,
.billing-card,
.billing-content,
.account-links {
  border-radius: 16px;
  -webkit-border-radius: 16px;
  -moz-border-radius: 16px;
  -ms-border-radius: 16px;
  -o-border-radius: 16px;
  box-shadow: 0 4px 20px var(--shadow-card);
  border: 1px solid var(--border-card);
  background: var(--bg-card);
}

.profile-card {
  padding: 16px 12px;
  margin: 20px 0 15px;
  display: flex;
  justify-content: space-between;
}
.profile-card .profile-block {
  display: flex;
  gap: 10px;
}
.profile-card {
  /* صورة المستخدم */
}
.profile-card .profile-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 500;
}
.profile-card {
  /* معلومات المستخدم */
}
.profile-card .profile-info {
  flex: 1;
}
.profile-card .profile-info .username {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-black-900);
}
.profile-card .profile-info .email,
.profile-card .profile-info .not-signed-in {
  font-size: 0.85rem;
  margin: 5px 0 7px;
  color: var(--text-black-900);
  white-space: nowrap;
  text-overflow: ellipsis;
}
.profile-card .profile-info .badge-wrapp {
  display: flex;
  gap: 4px;
  font-size: 0.7rem;
  font-weight: 400;
  color: var(--text-black-600);
}
.profile-card .edit-profile-btn {
  color: #2e7d5b;
  background: transparent;
  border: none;
  height: fit-content;
  display: none;
  border-radius: 4px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  -o-border-radius: 4px;
  padding: 7px;
  font-size: 0.8rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
}
.profile-card .edit-profile-btn:hover {
  background: #d9efe4;
}
.profile-card .edit-profile-btn svg {
  width: 19px;
  height: 19px;
  vertical-align: middle;
}

.profile-content {
  padding: 20px 5px;
}

.account-details {
  /* عنصر واحد */
}
.account-details .profile-item {
  padding: 9px 10px;
  border-bottom: 1px solid var(--border-gray-200);
}
.account-details .profile-item .icon {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-svg);
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
  font-size: 16px;
}
.account-details .profile-item .icon svg {
  width: 17px;
  height: 17px;
  color: var(--text-black-600);
}
.account-details .view-mode {
  display: flex;
  align-items: center;
  gap: 12px;
}
.account-details .text {
  flex: 1;
}
.account-details .text strong {
  display: block;
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--text-black-900);
}
.account-details .text .value {
  font-size: 0.75rem;
  color: var(--text-black-800);
  font-weight: 500;
}
.account-details .edit-btn {
  background: var(--bg-svg-edit);
  border: none;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
  width: 34px;
  height: 34px;
  cursor: pointer;
  font-size: 14px;
  transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
}
.account-details .edit-btn:hover {
  background: var(--bg-svg-hover);
}
.account-details .edit-btn svg {
  width: 15px;
  height: 15px;
  color: var(--text-black-600);
}
.account-details .edit-wrapp {
  display: none;
}
.account-details .edit-wrapp .edit-block {
  display: flex;
  align-items: center;
  gap: 10px;
}
.account-details .edit-wrapp input {
  flex: 1;
  padding: 8px 10px;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
  border: 1px solid var(--border-input);
  background-color: var(--bg-input);
  color: var(--text-black-900);
  outline: none;
  font-size: 0.85rem;
}
.account-details .edit-wrapp input:focus {
  outline: none;
  border-color: #4caf7a;
}
.account-details .edit-wrapp .actions {
  display: flex;
  gap: 6px;
}
.account-details .edit-wrapp button {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  -ms-border-radius: 8px;
  -o-border-radius: 8px;
  border: none;
  cursor: pointer;
  font-size: 14px;
}
.account-details .edit-wrapp .save-btn {
  background: var(--bg-svg);
  color: var(--text-green-700);
}
.account-details .edit-wrapp svg {
  width: 17px;
  height: 17px;
  vertical-align: middle;
}
.account-details .edit-wrapp .cancel-btn {
  background: var(--bg-svg);
  color: var(--text-black-600);
}
.account-details .edit-wrapp .circle {
  border: 3px solid rgba(112, 105, 105, 0.3019607843);
  border-top-color: var(--text-green-700);
}
.account-details .resend-massage {
  margin: 0 10px;
}
.account-details {
  /* ===== Pending Verification ===== */
}
.account-details .pending-message {
  display: none;
  margin-top: 8px;
  font-size: 0.8rem;
  color: var(--text-pending);
  background: var(--bg-pending);
  padding: 10px 10px 15px;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
}
.account-details .pending-message .resend-btn {
  margin: 6px 10px 8px;
  background: none;
  border: none;
  color: var(--text-green-700);
  font-size: 0.8rem;
  cursor: pointer;
  text-decoration: underline;
}
.account-details {
  /* =========================
   States (Classes)
   ========================= */
  /* وضع التعديل */
}
.account-details .profile-item.is-editing .view-mode {
  display: none;
}
.account-details .profile-item.is-editing .edit-wrapp {
  display: block;
}
.account-details {
  /* وضع انتظار التحقق */
}
.account-details .profile-item.is-pending .pending-message {
  display: block;
}

.security-details {
  padding: 15px 10px 10px;
}
.security-details .password-wrapper.active .password-body {
  display: block;
}
.security-details .password-body {
  display: none;
  padding: 15px 10px;
  background: transparent;
  border-radius: 8px;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  -ms-border-radius: 8px;
  -o-border-radius: 8px;
  margin-bottom: 10px;
}
.security-details .card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  border: 1px solid var(--border-public);
  border-radius: 9px;
  -webkit-border-radius: 9px;
  -moz-border-radius: 9px;
  -ms-border-radius: 9px;
  -o-border-radius: 9px;
  padding: 11px 10px;
  margin-bottom: 5px;
  overflow: hidden;
  transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
}
.security-details .card:hover {
  background: var(--bg-card-hover);
}
.security-details .card.card-form {
  padding: 0;
}
.security-details .card form {
  width: 100%;
}
.security-details .card .submit-btn {
  width: 100%;
  padding: 11px 10px;
  background: transparent;
}
.security-details .card .left,
.security-details .card .submit-btn {
  display: flex;
  align-items: center;
  gap: 7px;
  color: var(--text-black-900);
}
.security-details .card .unique-col {
  color: var(--text-red-700);
}
.security-details .card .icon svg {
  width: 17px;
  height: 17px;
}
.security-details .card .title {
  font-weight: 600;
  font-size: 0.84rem;
}
.security-details label {
  font-size: 0.75rem;
  color: var(--text-black-600);
  font-weight: 500;
}
.security-details .field {
  margin-bottom: 12px;
}
.security-details .actions {
  display: flex;
  gap: 10px;
  align-items: center;
  border-top: 1px solid var(--border-public);
  padding: 10px 0;
}
.security-details .actions button {
  border-radius: 25px;
  -webkit-border-radius: 25px;
  -moz-border-radius: 25px;
  -ms-border-radius: 25px;
  -o-border-radius: 25px;
  padding: 10px 12px;
  font-size: 0.8rem;
  font-weight: 600;
  background: var(--btn-green-900);
  color: var(--text-white);
  transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
}
.security-details .actions button:hover {
  opacity: 0.8;
}
.security-details .actions .submit-pass-btn {
  min-width: 140px;
}
.security-details .actions .circle {
  border: 3px solid rgba(112, 105, 105, 0.3019607843);
  border-top-color: var(--text-green-700);
}
.security-details .actions .cancel-pass-btn {
  padding: 10px 12px;
}

.billing-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  border-radius: 7px;
  -webkit-border-radius: 7px;
  -moz-border-radius: 7px;
  -ms-border-radius: 7px;
  -o-border-radius: 7px;
  cursor: pointer;
  padding: 13px 10px;
  margin: 25px 0 5px;
}
.billing-card .left-block {
  display: flex;
  align-items: center;
  gap: 10px;
}
.billing-card svg {
  width: 17px;
  height: 17px;
  vertical-align: middle;
  color: var(--text-black-800);
}
.billing-card span {
  font-weight: 500;
  font-size: 0.9rem;
  color: var(--text-black-800);
}

.billing-content {
  padding: 18px 12px;
  display: none;
  flex-direction: column;
  gap: 16px;
}
.billing-content.active {
  display: flex;
}
.billing-content .card {
  background: var(--bg-billing-card);
  border-radius: 18px;
  padding: 18px;
  box-shadow: 0 10px 35px var(--shadow-card);
  border: 1px solid var(--border-billing);
}
.billing-content .plan-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
}
.billing-content .plan-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--text-black-900);
  letter-spacing: 0.3px;
}
.billing-content .plan-badge {
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 600;
}
.billing-content .plan-badge.active {
  background: var(--bg-active);
  color: var(--text-active);
}
.billing-content .plan-badge.inactive {
  background: var(--bg-inactive);
  color: var(--text-inactive);
}
.billing-content .plan-badge.cancelled {
  background: var(--bg-cancelled);
  color: var(--text-cancelled);
}
.billing-content .plan-badge.past_due {
  background: var(--bg-past-due);
  color: var(--text-past-due);
}
.billing-content .plan-badge.expired {
  background: var(--bg-expired);
  color: var(--text-expired);
}
.billing-content .plan-actions {
  margin-top: 20px;
  display: flex;
  gap: 10px;
}
.billing-content .plan-actions .get-more-btn,
.billing-content .plan-actions .upgrade-btn {
  border-radius: 9px;
  -webkit-border-radius: 9px;
  -moz-border-radius: 9px;
  -ms-border-radius: 9px;
  -o-border-radius: 9px;
  flex: 1;
  font-weight: 600;
  padding: 12px 10px;
  background: var(--btn-credits);
  transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -ms-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  -webkit-transition: all 0.4s ease-in-out;
  cursor: pointer;
  align-items: center;
  gap: 7px;
  color: var(--text-black-900);
}
.billing-content .plan-actions .get-more-btn:hover,
.billing-content .plan-actions .upgrade-btn:hover {
  opacity: 0.8;
  transform: translateY(-2px);
  -webkit-transform: translateY(-2px);
  -moz-transform: translateY(-2px);
  -ms-transform: translateY(-2px);
  -o-transform: translateY(-2px);
}
.billing-content .plan-actions .get-more-btn .txt,
.billing-content .plan-actions .upgrade-btn .txt {
  color: var(--text-black-900);
}
.billing-content .plan-actions .get-more-btn svg,
.billing-content .plan-actions .get-more-btn i,
.billing-content .plan-actions .upgrade-btn svg,
.billing-content .plan-actions .upgrade-btn i {
  color: var(--text-yellow-900);
  width: 17px;
  height: 17px;
}
.billing-content .usage-item {
  margin-bottom: 14px;
}
.billing-content .usage-top {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  margin-bottom: 6px;
  color: var(--text-black-900);
}
.billing-content .progress {
  height: 11px;
  background: var(--slider-track);
  border-radius: 999px;
  -webkit-border-radius: 999px;
  -moz-border-radius: 999px;
  -ms-border-radius: 999px;
  -o-border-radius: 999px;
  overflow: hidden;
}
.billing-content .progress-bar {
  height: 100%;
  width: 0;
  border-radius: 999px;
  -webkit-border-radius: 999px;
  -moz-border-radius: 999px;
  -ms-border-radius: 999px;
  -o-border-radius: 999px;
  transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  position: relative;
  background: var(--slider-active);
}
.billing-content .progress-bar::after {
  position: absolute;
  content: "";
  background: inherit;
  border-radius: inherit;
  width: 3px;
  height: 100%;
  left: 0;
}
.billing-content .info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 10px;
}
.billing-content .info-grid div {
  background: rgba(0, 0, 0, 0.04);
  padding: 12px;
  border-radius: 12px;
  transition: 0.2s;
}
.billing-content .info-grid div:hover {
  background: rgba(0, 0, 0, 0.06);
}
.billing-content .info-grid span {
  font-size: 11px;
  color: var(--text-black-600);
}
.billing-content .info-grid strong {
  display: block;
  font-size: 14px;
  font-weight: 600;
  margin-top: 5px;
  color: var(--text-black-900);
}
.billing-content .manage-btn {
  width: 100%;
  margin-top: 18px;
  padding: 11px;
  border-radius: 12px;
  background: var(--btn-manage);
  border: 1px solid var(--border-color);
  color: var(--text-white);
  font-weight: 500;
  transition: 0.2s;
  opacity: 0.9;
  transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
}
.billing-content .manage-btn:hover {
  opacity: 1;
}
.billing-content .manage-btn:disabled {
  cursor: not-allowed;
  opacity: 0.6 !important;
}

.account-links {
  padding: 20px 5px;
  margin: 5px 0 30px;
}
.account-links .theme-wrapp {
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  cursor: pointer;
}
.account-links .theme-wrapp .switch-theme-mode {
  z-index: 99;
  display: flex;
  align-items: center;
}
.account-links .theme-wrapp .switch-label {
  position: relative;
  display: inline-block;
  width: 30px;
  height: 20px;
}
.account-links .theme-wrapp .switch-label input {
  opacity: 0;
  width: 0;
  height: 0;
}
.account-links .theme-wrapp .slider-span {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -ms-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  -webkit-transition: all 0.4s ease-in-out;
}
.account-links .theme-wrapp .slider-span.round {
  border-radius: 34px;
  -webkit-border-radius: 34px;
  -moz-border-radius: 34px;
  -ms-border-radius: 34px;
  -o-border-radius: 34px;
}
.account-links .theme-wrapp .slider-span.round:before {
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
}
.account-links .theme-wrapp .slider-span:before {
  content: "\f1d1";
  font-family: "Bootstrap-icons";
  position: absolute;
  font-weight: 500;
  height: 25px;
  width: 25px;
  display: flex;
  align-items: center;
  font-size: 18px;
  justify-content: center;
  bottom: 4px;
  top: 0;
  left: 0px;
  bottom: 0;
  margin: auto 0;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  box-shadow: 0 0px 15px rgba(32, 32, 32, 0.2392156863);
  color: rgba(245, 159, 11, 0.7058823529);
  background-color: white;
  transform: translateX(0);
  -webkit-transform: translateX(0);
  -moz-transform: translateX(0);
  -ms-transform: translateX(0);
  -o-transform: translateX(0);
  transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
}
.account-links .theme-wrapp input:checked + .slider-span {
  background-color: #0f0a0a;
}
.account-links .theme-wrapp input:checked + .slider-span:before {
  content: "\f495";
  color: rgba(255, 255, 255, 0.733);
  background-color: rgb(8, 8, 8);
  transform: translateX(6px);
  -webkit-transform: translateX(6px);
  -moz-transform: translateX(6px);
  -ms-transform: translateX(6px);
  -o-transform: translateX(6px);
}
.account-links .theme-wrapp,
.account-links li {
  padding: 10px 10px;
}
.account-links .left-block,
.account-links li {
  gap: 10px;
}
.account-links .left-block {
  display: flex;
  align-items: center;
}
.account-links .text,
.account-links a {
  font-weight: 500;
  font-size: 0.9rem;
  color: var(--text-black-800);
}
.account-links .icon {
  width: 17px;
  height: 17px;
  vertical-align: middle;
  color: var(--text-black-800);
}
.account-links ul {
  list-style: none;
}
.account-links li {
  display: flex;
  align-items: center;
}
.account-links .setting-user-status {
  padding: 10px;
  gap: 8px;
  margin-top: 10px;
  animation: slideFadeIn 0.18s ease both;
  -webkit-animation: slideFadeIn 0.18s ease both;
  /* الحالة الافتراضية: غير مسجّل */
  /* زر تسجيل الخروج */
}
.account-links .setting-user-status .login-btn,
.account-links .setting-user-status .signup-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 15px;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
  cursor: pointer;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
  transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  -webkit-transition: all 0.2s ease-in-out;
  font-weight: 500;
}
.account-links .setting-user-status .login-btn:hover,
.account-links .setting-user-status .signup-btn:hover {
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
  transform: translateY(-1px);
  -webkit-transform: translateY(-1px);
  -moz-transform: translateY(-1px);
  -ms-transform: translateY(-1px);
  -o-transform: translateY(-1px);
}
.account-links .setting-user-status .login-btn:active,
.account-links .setting-user-status .signup-btn:active {
  transform: translateY(0);
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  -ms-transform: translateY(0);
  -o-transform: translateY(0);
}
.account-links .setting-user-status .login-btn:focus-visible,
.account-links .setting-user-status .signup-btn:focus-visible {
  outline: none;
}
.account-links .setting-user-status .login-btn.ghost,
.account-links .setting-user-status .signup-btn.ghost {
  background: var(--btn-login);
  color: var(--text-login);
  border: 1px solid var(--btn-signup);
}
.account-links .setting-user-status .login-btn.ghost:hover,
.account-links .setting-user-status .signup-btn.ghost:hover {
  background: var(--bg-card-hover);
}
.account-links .setting-user-status .login-btn.solid,
.account-links .setting-user-status .signup-btn.solid {
  background: var(--btn-signup);
  color: var(--text-signup);
  border-color: transparent;
}
.account-links .setting-user-status .login-btn.solid:hover,
.account-links .setting-user-status .signup-btn.solid:hover {
  filter: brightness(1.05);
  -webkit-filter: brightness(1.05);
}
.account-links .setting-user-status .login-btn .icon,
.account-links .setting-user-status .signup-btn .icon {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
}

.password-box {
  margin-top: 7px;
  height: 40px;
  width: 100%;
  overflow: hidden;
  background: var(--bg-input);
  border-radius: 8px;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  -ms-border-radius: 8px;
  -o-border-radius: 8px;
  display: flex;
  align-items: center;
  position: relative;
}
.password-box input.pass-field {
  width: 100%;
  height: 100%;
  background: transparent;
  border-radius: 8px;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  -ms-border-radius: 8px;
  -o-border-radius: 8px;
  color: var(--text-black-800);
  border: 2px solid var(--border-input);
  padding: 0 50px 0 10px;
  outline: none;
  font-weight: 500;
  letter-spacing: 0.5px;
  font-size: 0.85rem;
}
.password-box input.pass-field:focus {
  border-color: var(--border-input-focus);
  background: transparent;
}
.password-box input.pass-field.invalid {
  border-color: rgba(235, 17, 17, 0.831372549);
}
.password-box .toggle-visibility {
  display: none;
  right: 15px;
  position: absolute;
  padding: 5px;
  cursor: pointer;
  font-size: 1rem;
}
.password-box .toggle-visibility svg {
  width: 18px;
  height: 18px;
  color: #413e3e;
}
.password-box .toggle-visibility svg:first-of-type {
  display: none;
}
.password-box .toggle-visibility svg:last-of-type {
  display: block;
}
.password-box .toggle-visibility.open svg:first-of-type {
  display: block;
}
.password-box .toggle-visibility.open svg:last-of-type {
  display: none;
}
.password-box .toggle-visibility.visible {
  display: block;
}

.error-field {
  border-radius: 4px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  -o-border-radius: 4px;
  font-size: 0.77rem;
  color: var(--text-error);
  position: relative;
  font-weight: 500;
}
.error-field.invalid {
  background: rgba(193, 90, 90, 0.1294117647);
  padding: 12px;
  padding-left: 28px;
  margin: 10px 0 10px;
}
.error-field.invalid::before {
  content: "\f333";
  position: absolute;
  font-family: "Bootstrap-icons";
  left: 7px;
  color: var(--text-error);
  font-weight: bold;
  font-size: 1rem;
  top: 12px;
}

.delete-modal-overlay {
  position: fixed;
  inset: 0;
  background: var(--bg-modal-overlay);
  backdrop-filter: blur(4px);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 999;
}
.delete-modal-overlay.is-open {
  display: flex;
}
.delete-modal-overlay .modal {
  background: var(--bg-modal);
  width: 100%;
  max-width: 600px;
  border-radius: 14px;
  -webkit-border-radius: 14px;
  -moz-border-radius: 14px;
  -ms-border-radius: 14px;
  -o-border-radius: 14px;
  padding: 48px 35px 30px;
  box-shadow: var(--shadow-options);
  border: 1px solid var(--border-modal);
  position: relative;
  animation: scaleIn 0.25s ease;
  -webkit-animation: scaleIn 0.25s ease;
}
.delete-modal-overlay .modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  color: var(--text-icon);
  border: none;
  cursor: pointer;
  opacity: 0.8;
}
.delete-modal-overlay .modal-close svg {
  width: 18px;
  height: 18px;
}
.delete-modal-overlay .modal-close:hover {
  opacity: 1;
}
.delete-modal-overlay .modal-title {
  margin-bottom: 15px;
  font-size: 1.3rem;
  display: flex;
  align-items: center;
  gap: 7px;
  color: var(--text-black-900);
}
.delete-modal-overlay .modal-title svg {
  width: 23px;
  height: 23px;
  color: var(var(--bg-modal-done));
}
.delete-modal-overlay .modal-description {
  font-size: 0.85rem;
  color: var(--text-black-800);
  margin-bottom: 20px;
}
.delete-modal-overlay .modal-form {
  margin-bottom: 24px;
}
.delete-modal-overlay .modal-form label {
  font-size: 0.78rem;
  margin-bottom: 6px;
  display: block;
  color: var(--text-black-800);
}
.delete-modal-overlay .input-wrapper {
  position: relative;
  margin-bottom: 10px;
}
.delete-modal-overlay .error-field.invalid {
  margin: 0;
}
.delete-modal-overlay .delete-checkbox-container {
  display: flex;
  gap: 7px;
  margin: 25px 0 9px;
}
.delete-modal-overlay .delete-checkbox-container .checkbox-label {
  display: flex;
  width: fit-content;
  position: relative;
  cursor: pointer;
  user-select: none;
  margin-top: 2px;
}
.delete-modal-overlay .delete-checkbox-container .checkbox-label input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}
.delete-modal-overlay .delete-checkbox-container .checkbox-label input:checked + .checkmark {
  background-color: #4f46e5;
  border-color: #ccc;
}
.delete-modal-overlay .delete-checkbox-container .checkbox-label input:checked + .checkmark::after {
  display: block;
}
.delete-modal-overlay .delete-checkbox-container .checkbox-label .checkmark {
  height: 15px;
  width: 15px;
  background-color: transparent;
  border: 1px solid #ccc;
  border-radius: 2px;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  -ms-border-radius: 2px;
  -o-border-radius: 2px;
  display: flex;
  align-items: center;
  position: relative;
  transition: background-color 0.2s, border-color 0.2s;
  -webkit-transition: background-color 0.2s, border-color 0.2s;
  -moz-transition: background-color 0.2s, border-color 0.2s;
  -ms-transition: background-color 0.2s, border-color 0.2s;
  -o-transition: background-color 0.2s, border-color 0.2s;
}
.delete-modal-overlay .delete-checkbox-container .checkbox-label .checkmark::after {
  content: "\f272";
  position: absolute;
  display: none;
  font-family: "bootstrap-icons";
  font-weight: bold;
  color: white;
  font-size: 0.75rem;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.delete-modal-overlay .delete-checkbox-container .text {
  color: var(--text-black-800);
  font-size: 0.85rem;
  font-weight: 500;
}
.delete-modal-overlay .modal-actions {
  display: flex;
  gap: 12px;
  justify-content: flex-end;
}
.delete-modal-overlay .btn {
  padding: 10px 10px;
  border-radius: 8px;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  -ms-border-radius: 8px;
  -o-border-radius: 8px;
  font-size: 0.8rem;
  cursor: pointer;
  border: none;
  font-weight: 500px;
  transition: all 0.2 ease-in-out;
  -moz-transition: all 0.2 ease-in-out;
  -ms-transition: all 0.2 ease-in-out;
  -o-transition: all 0.2 ease-in-out;
  -webkit-transition: all 0.2 ease-in-out;
}
.delete-modal-overlay .btn.btn-cancel {
  background: var(--btn-primary);
  color: var(--text-primary);
}
.delete-modal-overlay .btn.confirm-delete-btn {
  background: var(--btn-secondary);
  color: #fff;
  min-width: 125px;
}
.delete-modal-overlay .btn.confirm-delete-btn:hover:not(:disabled) {
  background: var(--btn-secondary-hover);
  box-shadow: var(--shadow-secondary);
  transform: translateY(-1px);
}
.delete-modal-overlay .btn.confirm-delete-btn:disabled {
  background: var(--btn-disabled);
  color: var(--text-disabled);
  border-color: #E5E7EB;
  cursor: not-allowed;
  box-shadow: none;
  transform: none;
  opacity: 1;
}
.delete-modal-overlay .btn.confirm-delete-btn .circle {
  border: 2px solid var(--border-circle);
  border-top-color: var(--border-circle-top);
}

@keyframes scaleIn {
  from {
    transform: scale(0.95);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}
.restore-account {
  padding: 14px;
  border-radius: 10px;
  background: var(--bg-pending);
  border: 1px solid var(--border-public);
  display: none;
  align-items: center;
  justify-content: space-between;
}
.restore-account h4 {
  margin: 0 0 4px;
  font-size: 15px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--text-restore);
}
.restore-account h4 .icon {
  width: 17px;
  height: 17px;
}
.restore-account h4 span {
  font-size: 1.1rem;
}
.restore-account .desc {
  margin: 0;
  font-size: 0.75rem;
  color: var(--text-pending);
}
.restore-account .desc strong {
  font-weight: 600;
  font-size: 0.8rem;
}
.restore-account .delete-info {
  margin-top: 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.restore-account .remaining {
  font-size: 0.75rem;
  color: var(--text-pending);
}
.restore-account .restore-btn {
  padding: 9px 10px;
  border-radius: 8px;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  -ms-border-radius: 8px;
  -o-border-radius: 8px;
  font-size: 0.8rem;
  min-width: 125px;
  font-weight: 600;
  border: none;
  background: var(--btn-green-900);
  color: var(--text-white);
  transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  -webkit-transition: all 0.2s ease-in-out;
}
.restore-account .restore-btn:hover {
  background: #0c4128;
}
.restore-account .restore-btn .circle {
  border: 2px solid rgba(149, 147, 147, 0.3019607843);
  border-top-color: #a6b7ac;
}

@media (max-width: 991px) {
  .account-wrapper {
    padding: 0 7px;
  }
  .account-wrapper li {
    margin: 5px 0px;
  }
  .account-wrapper .item-title {
    padding: 10px 5px;
  }
  .account-wrapper .item-title svg {
    width: 16px;
    height: 16px;
  }
  .account-wrapper .item-title span,
  .account-wrapper .item-title a {
    font-size: 14.5px;
  }
  .account-wrapper .item-info {
    padding: 15px 5px;
  }
  .account-wrapper .item-info .text-res {
    font-size: 13px;
    margin: 7px 0 12px;
  }
  .account-wrapper .item-info label {
    font-size: 13px;
  }
  .account-wrapper .item-info input {
    height: 40px;
    padding: 0 5px;
  }
  .account-wrapper .billing-wrapp {
    margin: 15px 0 10px;
  }
  .account-wrapper .billing-wrapp span:first-of-type {
    font-size: 13px;
  }
  .account-wrapper .billing-wrapp span:last-of-type {
    font-size: 14px;
  }
}
@media (max-width: 768px) {
  .delete-modal-overlay .modal {
    width: 95%;
    max-width: 500px;
    padding: 35px 15px 20px;
  }
  .delete-modal-overlay .modal-title {
    font-size: 1.1rem;
  }
  .delete-modal-overlay .modal-description {
    font-size: 0.8rem;
  }
  .delete-modal-overlay .modal-form label {
    font-size: 0.8rem;
  }
  .delete-modal-overlay .delete-checkbox-container .text {
    font-size: 0.8rem;
  }
}

/*# sourceMappingURL=account-setting.css.map */
