:root {
  --Gray-000: #f5f5f7;
  --Gray-100: #edeeee;
  --Gray-150: #e9ebeb;
  --Gray-200: #d4d6d7;
  --Gray-300: #aeb0b3;
  --Gray-400: #979a9e;
  --Gray-500: #8a8d92;
  --Gray-600: #62666d;
  --Gray-700: #434850;
  --Gray-800: #222831;
  --Gray-900: #1d2229;
  --Gray-1000: #161a1f;
  --Pastel-Green-000: #f3fef4;
  --Pastel-Green-100: #ebfded;
  --Pastel-Green-200: #d3fbd8;
  --Pastel-Green-300: #c2e7c7;
  --Pastel-Green-400: #9fc5a4;
  --Pastel-Green-500: #69826c;
  --Pastel-Green-600: #3b493c;
  --Pastel-Green-600: #232b24;
  --Coral-100: #fff7f9;
  --Coral-200: #ffeff3;
  --Coral-300: #ffbac8;
  --Coral-400: #ff355e;
}

@font-face {
  font-family: "peyda";
  src: url("/wwwroot/assets/fonts/Peyda/Peyda-Light.ttf");
  font-weight: 300;
}
@font-face {
  font-family: "peyda";
  src: url("/wwwroot/assets/fonts/Peyda/Peyda-Thin.ttf");
  font-weight: 100;
}
@font-face {
  font-family: "peyda";
  src: url("/wwwroot/assets/fonts/Peyda/Peyda-Regular.ttf");
  font-weight: 400;
}
@font-face {
  font-family: "peyda";
  src: url("/wwwroot/assets/fonts/Peyda/Peyda-Medium.ttf");
  font-weight: 500;
}
@font-face {
  font-family: "peyda";
  src: url("/wwwroot/assets/fonts/Peyda/Peyda-SemiBold.ttf");
  font-weight: 600;
}
@font-face {
  font-family: "peyda";
  src: url("/wwwroot/assets/fonts/Peyda/Peyda-Bold.ttf");
  font-weight: 700;
}
@font-face {
  font-family: "peyda";
  src: url("/wwwroot/assets/fonts/Peyda/Peyda-ExtraBold.ttf");
  font-weight: 800;
}
@font-face {
  font-family: "peyda";
  src: url("/wwwroot/assets/fonts/Peyda/Peyda-Black.ttf");
  font-weight: 900;
}
/* ===============================
 iranyekan font
=============================== */
@font-face {
  font-family: "iranYekan";
  src: url("../../assets/fonts/IRANYekan/IRANYekan-Thin.ttf");
  font-weight: 100;
}
@font-face {
  font-family: "iranYekan";
  src: url("../../assets/fonts/IRANYekan/IRANYekan-Light.ttf");
  font-weight: 300;
}
@font-face {
  font-family: "iranYekan";
  src: url("../../assets/fonts/IRANYekan/IRANYekanRegular.ttf");
  font-weight: 400;
}
@font-face {
  font-family: "iranYekan";
  src: url("../../assets/fonts/IRANYekan/IRANYekan-Medium.ttf");
  font-weight: 500;
}
@font-face {
  font-family: "iranYekan";
  src: url("../../assets/fonts/IRANYekan/IRANYekan-Bold.ttf");
  font-weight: 600;
}
@font-face {
  font-family: "iranYekan";
  src: url("../../assets/fonts/IRANYekan/IRANYekan-ExtraBold.ttf");
  font-weight: 700;
}
@font-face {
  font-family: "iranYekan";
  src: url("../../assets/fonts/IRANYekan/IRANYekan-Black.ttf");
  font-weight: 800;
}
@font-face {
  font-family: "iranYekanFaNum";
  src: url("../../assets/fonts/Farsi_numerals/WebFonts/fonts/ttf/iranyekanwebmediumfanum.ttf");
  font-weight: 500;
  font-style: normal;
}
/* ===============================
 Background color classes
=============================== */
.bg-gray-000 {
  background-color: var(--Gray-000);
}

.bg-gray-100 {
  background-color: var(--Gray-100);
}

.bg-gray-150 {
  background-color: var(--Gray-150);
}

.bg-gray-200 {
  background-color: var(--Gray-200);
}

.bg-gray-300 {
  background-color: var(--Gray-300);
}

.bg-gray-400 {
  background-color: var(--Gray-400);
}

.bg-gray-500 {
  background-color: var(--Gray-500);
}

.bg-gray-600 {
  background-color: var(--Gray-600);
}

.bg-gray-700 {
  background-color: var(--Gray-700);
}

.bg-gray-800 {
  background-color: var(--Gray-800);
}

.bg-gray-900 {
  background-color: var(--Gray-900);
}

.bg-gray-1000 {
  background-color: var(--Gray-1000);
}

.bg-pastel-green-000 {
  background-color: var(--Pastel-Green-000);
}

.bg-pastel-green-100 {
  background-color: var(--Pastel-Green-100);
}

.bg-pastel-green-200 {
  background-color: var(--Pastel-Green-200);
}

.bg-pastel-green-300 {
  background-color: var(--Pastel-Green-300);
}

.bg-pastel-green-400 {
  background-color: var(--Pastel-Green-400);
}

.bg-pastel-green-500 {
  background-color: var(--Pastel-Green-500);
}

.bg-pastel-green-600 {
  background-color: var(--Pastel-Green-600);
}

.bg-pastel-green-700 {
  background-color: var(--Pastel-Green-700);
}

.bg-coral-100 {
  background-color: var(--Coral-100);
}

.bg-coral-200 {
  background-color: var(--Coral-200);
}

.bg-coral-300 {
  background-color: var(--Coral-300);
}

.bg-coral-400 {
  background-color: var(--Coral-400);
}

/* ===============================
 Text color classes
=============================== */
.text-gray-100 {
  color: var(--Gray-100);
}

.text-gray-150 {
  color: var(--Gray-150);
}

.text-gray-200 {
  color: var(--Gray-200);
}

.text-gray-300 {
  color: var(--Gray-300);
}

.text-gray-400 {
  color: var(--Gray-400);
}

.text-gray-500 {
  color: var(--Gray-500);
}

.text-gray-600 {
  color: var(--Gray-600);
}

.text-gray-700 {
  color: var(--Gray-700);
}

.text-gray-800 {
  color: var(--Gray-800);
}

.text-gray-900 {
  color: var(--Gray-900);
}

.text-gray-1000 {
  color: var(--Gray-1000);
}

.text-pastel-green-000 {
  color: var(--Pastel-Green-000);
}

.text-pastel-green-100 {
  color: var(--Pastel-Green-100);
}

.text-pastel-green-200 {
  color: var(--Pastel-Green-200);
}

.text-pastel-green-300 {
  color: var(--Pastel-Green-300);
}

.text-pastel-green-400 {
  color: var(--Pastel-Green-400);
}

.text-pastel-green-500 {
  color: var(--Pastel-Green-500);
}

.text-pastel-green-600 {
  color: var(--Pastel-Green-600);
}

.text-pastel-green-700 {
  color: var(--Pastel-Green-700);
}

.text-coral-100 {
  color: var(--Coral-100);
}

.text-coral-200 {
  color: var(--Coral-200);
}

.text-coral-300 {
  color: var(--Coral-300);
}

.text-coral-400 {
  color: var(--Coral-400);
}

/* ===============================
 Border color classes
=============================== */
.border-gray-100 {
  border-color: var(--Gray-100);
}

.border-gray-150 {
  border-color: var(--Gray-150);
}

.border-gray-200 {
  border-color: var(--Gray-200);
}

.border-gray-300 {
  border-color: var(--Gray-300);
}

.border-gray-400 {
  border-color: var(--Gray-400);
}

.border-gray-500 {
  border-color: var(--Gray-500);
}

.border-gray-600 {
  border-color: var(--Gray-600);
}

.border-gray-700 {
  border-color: var(--Gray-700);
}

.border-gray-800 {
  border-color: var(--Gray-800);
}

.border-gray-900 {
  border-color: var(--Gray-900);
}

.border-gray-1000 {
  border-color: var(--Gray-1000);
}

.border-pastel-green-000 {
  border-color: var(--Pastel-Green-000);
}

.border-pastel-green-100 {
  border-color: var(--Pastel-Green-100);
}

.border-pastel-green-200 {
  border-color: var(--Pastel-Green-200);
}

.border-pastel-green-300 {
  border-color: var(--Pastel-Green-300);
}

.border-pastel-green-400 {
  border-color: var(--Pastel-Green-400);
}

.border-pastel-green-500 {
  border-color: var(--Pastel-Green-500);
}

.border-pastel-green-600 {
  border-color: var(--Pastel-Green-600);
}

.border-pastel-green-700 {
  border-color: var(--Pastel-Green-700);
}

.border-coral-100 {
  border-color: var(--Coral-100);
}

.border-coral-200 {
  border-color: var(--Coral-200);
}

.border-coral-300 {
  border-color: var(--Coral-300);
}

.border-coral-400 {
  border-color: var(--Coral-400);
}

h1,
h2,
h3,
h4,
h5,
h6,
.heading {
  font-family: "Peyda", sans-serif;
  margin: 0;
  padding: 0;
}

p {
  margin: 0;
  padding: 0;
}

.custom-container {
  margin-inline: 40px;
}
@media (max-width: 1024px) {
  .custom-container {
    margin-inline: 15px;
  }
}

.custom-checkbox-input {
  display: none;
}

.custom-checkbox-ui {
  width: 22px;
  height: 22px;
  border: 2px solid #cfd8dc;
  border-radius: 6px;
  display: inline-block;
  cursor: pointer;
  position: relative;
  transition: all 0.2s;
}

.custom-checkbox-input:checked + .custom-checkbox-ui {
  background-color: var(--Gray-1000);
  border-color: var(--Gray-1000);
}

.custom-checkbox-input:checked + .custom-checkbox-ui::after {
  content: "";
  position: absolute;
  top: 3px;
  left: 6px;
  width: 6px;
  height: 12px;
  border: solid var(--Pastel-Green-200);
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.hero-section {
  padding-block: 40px;
}

.custom-title {
  margin-top: 100px;
  font-size: 24px;
  color: var(--Gray-700);
}

.gray-700-divider {
  display: flex;
  height: 30px;
  width: 2px;
  background-color: var(--Gray-700);
}

.gray-200-x-divider {
  display: flex;
  height: 2px;
  width: 100%;
  background-color: var(--Gray-200);
}

.jco-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 15px;
  border: none;
  border-radius: 10px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  text-align: center;
  background-color: transparent;
  color: var(--Coral-100);
  font-size: 14px;
}
.jco-btn__primary {
  background-color: yellow !important;
  color: #fff;
}
.jco-btn__primary:hover {
  background-color: red;
}
.jco-btn__secondary {
  background-color: var(--Coral-400);
  color: #fff;
}
.jco-btn__secondary:hover {
  background-color: red;
}
.jco-btn__outline {
  background-color: transparent;
  border: 2px solid var(--Pastel-Green-400);
  color: var(--Pastel-Green-400);
}
.jco-btn__outline:hover {
  background-color: var(--Gray-700);
  border: 2px solid var(--Gray-700);
}
.jco-btn__disabled {
  opacity: 0.6;
  pointer-events: none;
}
.jco-btn__gray-800 {
  background-color: var(--Gray-800);
  border: 2px solid var(--Gray-700);
}
.jco-btn__gray-800:hover {
  background-color: var(--Gray-700);
}
.jco-btn__outline-gray {
  background-color: var(--Gray-700);
  border: 2px solid var(--Gray-600);
  color: white;
}
.jco-btn__outline-gray:hover {
  background-color: var(--Gray-500);
  color: #fff;
}
.jco-btn__outline-gray-700 {
  border: 2px solid var(--Gray-600);
  color: white;
  padding: 5px 15px;
  font-size: 14px;
}
.jco-btn__outline-gray-700:hover {
  background-color: var(--Gray-500);
  border: 2px solid var(--Gray-600);
  color: #fff;
}
.jco-btn__outline-gray-800 {
  border: 2px solid var(--Gray-1000);
  font-size: 14px;
  color: var(--Gray-1000);
}
.jco-btn__outline-gray-800:hover {
  background-color: var(--Gray-700);
  border: 2px solid var(--Gray-700);
  color: #fff;
}
.jco-btn__gray-700 {
  border-radius: 50px;
  border: 2px solid var(--Gray-700);
  background-color: var(--Gray-700);
  color: white;
  font-size: 14px;
}
.jco-btn__gray-700:hover {
  background-color: var(--Gray-500);
  color: #fff;
}
.jco-btn__pastel-Green-300 {
  background-color: var(--Pastel-Green-300);
  border: 2px solid var(--Pastel-Green-300);
  color: var(--Gray-800);
  width: -moz-fit-content;
  width: fit-content;
  font-size: 16px;
  border-radius: 10px;
}
.jco-btn__pastel-Green-300:hover {
  background-color: var(--Pastel-Green-400);
}
.jco-btn__outline-white {
  background-color: transparent;
  border: 2px solid var(--Coral-100);
  color: var(--Coral-100);
  padding: 5px 30px;
  font-size: 14px;
}
.jco-btn__outline-white:hover {
  background-color: var(--Pastel-Green-400);
}
.jco-btn__gray-150 {
  background-color: var(--Gray-150);
  color: var(--Gray-800);
  border-radius: 30px;
  font-size: 14px;
  padding: 10px 20px;
}

a {
  all: unset;
  cursor: pointer;
  text-decoration: none;
  color: inherit;
}
a:hover, a:focus {
  text-decoration: none;
  outline: none;
}

ul,
ol {
  list-style: none;
  padding: 0;
  margin: 0;
}

li {
  margin: 0;
  padding: 0;
}

.medium-title {
  font-size: 24px;
  color: var(--Coral-100);
}

body {
  background-color: var(--Gray-900);
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  font-family: "iranYekan", sans-serif !important;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  direction: rtl;
  z-index: 0;
  font-weight: 500;
}

.layout-container {
  display: flex;
  flex-direction: row;
  min-height: 100vh;
  position: relative;
}

.custom-template {
  background-color: var(--Gray-100);
  border: 1px solid var(--Gray-300);
  border-radius: 15px;
  padding: 50px;
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .custom-template {
    padding: 30px 20px;
    margin-bottom: 30px;
  }
}

.main-content {
  margin: 30px 80px;
  flex: 1;
  width: 45%;
}
@media (max-width: 992px) {
  .main-content {
    width: 100%;
    margin: 0;
    padding: 15px 40px;
  }
}
@media (max-width: 768px) {
  .main-content {
    padding-inline: 15px;
    display: flex;
    flex-direction: column-reverse;
  }
}

.main-footer {
  background-color: #0d121a;
  color: #ccc;
  font-size: 0.875rem;
  margin-inline: 10px;
  border-radius: 40px;
  padding: 10px 20px;
  margin-top: auto;
}
@media (max-width: 576px) {
  .main-footer {
    margin-inline: 15px;
    padding: 20px;
  }
}
.main-footer .footer-logo {
  height: 40px;
  width: 130px;
}
.main-footer .footer-logo img {
  height: 100%;
  width: 100%;
}
.main-footer .footer-des {
  font-weight: 500;
  font-size: 14px;
}
.main-footer a {
  color: #ccc;
  text-decoration: none;
}
.main-footer a:hover {
  color: #fff;
}
.main-footer .footer-links li {
  margin-bottom: 0.5rem;
}
.main-footer button.btn-outline-light {
  border-color: #fff;
  color: #fff;
}
.main-footer button.btn-outline-light:hover {
  background-color: #fff;
  color: #0d121a;
}
.main-footer .footer-share-link {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 576px) {
  .main-footer .footer-share-link {
    flex-direction: column;
    gap: 10px;
  }
}
.main-footer .footer-share-link .share-link-icons {
  display: flex;
  gap: 10px;
}
@media (max-width: 576px) {
  .main-footer .footer-share-link .share-link-icons {
    gap: 20px;
  }
}

.form-group {
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
}
.form-group__label {
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 6px;
  color: #333;
}
.form-group__optional {
  font-size: 12px;
  color: #888;
}
.form-group {
  /* Input Base Style */
}
.form-group__input {
  padding: 15px 12px;
  font-size: 14px;
  border: 1px solid var(--Gray-200);
  border-radius: 10px;
  background-color: #fff;
  transition: border-color 0.3s ease;
  outline: none;
  font-family: "iranYekanFaNum";
}
.form-group__input:focus {
  border-color: var(--Gray-700);
}
.form-group__input::-moz-placeholder {
  color: var(--Gray-300);
  font-size: 13px;
}
.form-group__input::placeholder {
  color: var(--Gray-300);
  font-size: 13px;
}
.form-group__input__file {
  padding: 6px;
}
.form-group__input__textarea {
  min-height: 80px;
  resize: vertical;
}
.form-group__input__select {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 10 6'%3E%3Cpath fill='gray' d='M0 0l5 6 5-6z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: left 10px center;
  background-size: 12px;
}
.form-group__radio .form-group__radio-options {
  display: flex;
  gap: 15px;
  margin-top: 8px;
}
.form-group__radio .form-group__radio-label {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  color: #333;
  cursor: pointer;
}
.form-group__radio .form-group__radio-label input[type=radio] {
  accent-color: var(--Gray-800);
  width: 16px;
  height: 16px;
}

.module-contents {
  overflow: hidden;
  padding: 20px !important;
}

.accordion-body {
  background-color: var(--Gray-100) !important;
  padding-inline: 0;
  padding-top: 0;
}
.accordion-body p {
  color: var(--Gray-800) !important;
  font-weight: 500;
  font-size: 14px;
}

.accordion-button {
  padding: 20px 0 !important;
  display: flex !important;
  justify-content: space-between !important;
}
.accordion-button:not(.collapsed) {
  background-color: var(--Gray-100) !important;
}
.accordion-button.collapsed {
  background-color: var(--Gray-100) !important;
}
.accordion-button:focus {
  box-shadow: none !important;
}
.accordion-button::after {
  content: "";
  display: inline-block;
  width: 20px;
  height: 20px;
  background-image: url("../img/circleArrowDown/CircleArrow/CircleArrowDown.svg") !important;
  background-size: contain;
  background-repeat: no-repeat;
  margin-left: 0 !important;
  transition: transform 0.3s ease;
}
.accordion-button:not(.collapsed)::after {
  transform: rotate(180deg);
}

.sidebar {
  width: 44%;
  max-width: 770px;
  min-width: 300px;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
}

.sidebar__overlay {
  background: url("../img/hero-section.gif") no-repeat center center;
  background-size: cover;
  width: 100%;
  height: 100%;
  position: relative;
}

.sidebar__content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 2rem;
  color: #fff;
  background: rgba(0, 0, 0, 0.22);
  border-radius: 16px;
  backdrop-filter: blur(4px);
  height: 100vh;
  margin-bottom: 10px;
  display: flex;
  flex-direction: column;
}

.sidebar__logo {
  text-align: right;
  padding-inline: 40px;
}
.sidebar__logo a {
  display: inline-flex;
  height: 40px;
}
.sidebar__logo a img {
  height: 100%;
}

.sidebar__logo img {
  height: 60px;
  margin-bottom: 1rem;
  -o-object-fit: cover;
     object-fit: cover;
}

.mobile-logo {
  padding-inline: 30px;
  padding-top: 15px;
}
.mobile-logo img {
  height: 40px;
  margin-bottom: 1rem;
  -o-object-fit: cover;
     object-fit: cover;
}

.sidebar-menu__container {
  margin: auto 0;
  padding-inline: 40px;
}

.sidebar__menu {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin: 1rem 0;
}
@media (max-width: 768px) {
  .sidebar__menu {
    margin-bottom: 60px;
  }
}
@media (max-width: 576px) {
  .sidebar__menu {
    grid-template-columns: 1fr;
  }
}

.sidebar__menu-item {
  display: flex;
  align-items: center;
  background-color: var(--Gray-800);
  border: 2px solid var(--Gray-700);
  padding: 20px 15px;
  border-radius: 10px;
  color: var(--Gray-200);
  text-decoration: none;
  font-size: 14px;
  transition: background 0.3s ease;
  gap: 15px;
}
.sidebar__menu-item.active {
  border: 2px solid #f3fef4;
  color: #ffffff;
}

.sidebar__menu-item:hover {
  background: rgba(255, 255, 255, 0.2);
}

.main__content {
  flex: 1;
  overflow-y: auto;
  background: #f7f8fa;
  padding: 2rem;
}

.main__header {
  padding: 1rem 2rem;
  background: #fff;
  border-bottom: 1px solid #e0e0e0;
}

.main__title {
  margin: 0;
  font-size: 1.5rem;
  color: #000;
}

.login-form {
  max-width: 400px;
  margin: 0 auto;
  background: #fff;
  padding: 2rem;
  border-radius: 20px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.login-form__label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: bold;
}

.login-form__input {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid #ccc;
  border-radius: 8px;
  margin-bottom: 1rem;
}

.login-form__password-wrapper {
  position: relative;
}

.login-form__toggle-password {
  position: absolute;
  top: 50%;
  left: 10px;
  transform: translateY(-50%);
  cursor: pointer;
  font-size: 1.2rem;
}

.login-form__remember {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
  gap: 0.5rem;
}

.login-form__submit {
  width: 100%;
  padding: 0.75rem;
  background: #12161d;
  color: #fff;
  border: none;
  border-radius: 20px;
  font-size: 1rem;
  cursor: pointer;
}

.login-form__submit:hover {
  background: #1d2430;
}

@media (max-width: 992px) {
  .sidebar {
    display: none;
  }
}
.tools {
  margin: 0 auto;
}
.tools__header {
  display: flex;
  align-items: center;
  position: relative;
  margin-bottom: 1.2rem;
}
.tools__header .tools__back {
  position: absolute;
  top: -20px;
  left: -40px;
  background: none;
  border: none;
  font-size: 1.2rem;
  cursor: pointer;
}
.tools__header .tools__title {
  font-size: 1.2rem;
  font-weight: 600;
  color: #111;
}
.tools__search {
  position: relative;
  margin-bottom: 2rem;
}
.tools__search input {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid var(--Gray-300);
  border-radius: 80px;
  font-size: 0.95rem;
  outline: none;
  background-color: var(--Gray-100);
  font-family: "iranYekanFaNum";
}
.tools__search-icon {
  position: absolute;
  top: 50%;
  left: 1px;
  transform: translateY(-50%);
  background-color: var(--Gray-1000);
  border-radius: 50%;
  height: 42px;
  width: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.tools__search-icon:hover {
  background-color: var(--Pastel-Green-200);
  transition: 0.3s ease-in-out;
}
.tools__search-icon:hover svg path {
  stroke: var(--Gray-800);
}
.tools__search::-moz-placeholder {
  font-weight: 500;
}
.tools__search::placeholder {
  font-weight: 500;
}
.tools__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.8rem;
}
@media (max-width: 576px) {
  .tools__grid {
    grid-template-columns: 1fr;
  }
}

.tool-card {
  background: var(--Pastel-Green-000);
  border: 1px solid var(--Pastel-Green-100);
  border-radius: 20px;
  padding: 10px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  gap: 15px;
}
.tool-card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.5rem;
  width: 130px;
  height: 83px;
}
.tool-card__icon img {
  height: 100%;
  width: 100%;
  -o-object-fit: fill;
     object-fit: fill;
}
.tool-card__title {
  font-size: 14px;
  text-align: center;
  font-weight: 500;
  color: var(--Gray-800);
  margin-bottom: 0.6rem;
}
.tool-card__meta {
  font-size: 12px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  color: var(--Gray-700);
  border-top: 2px solid var(--Gray-150);
  padding-top: 10px;
  line-height: 2rem;
}
.tool-card__meta div {
  cursor: pointer;
}
.tool-card__meta div:hover {
  color: var(--Gray-900);
  transition: 0.3s ease-in-out;
}
.tool-card:hover {
  background-color: var(--Pastel-Green-100);
  border: 1px solid var(--Pastel-Green-200);
  transition: 0.3s ease-in-out;
}

.otp-section {
  margin-block: 30px;
}

.otp-title {
  font-size: 1.2rem;
  margin-bottom: 10px;
  font-weight: 600;
}

.otp-description {
  font-size: 16px;
  color: var(--Gray-800);
  margin-bottom: 20px;
}

.otp-inputs {
  display: flex;
  justify-content: center;
  flex-direction: row-reverse;
  justify-content: space-between;
  margin-bottom: 10px;
}

.otp-extra {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 10px 0;
  font-size: 0.9rem;
}

.otp-timer {
  color: var(--Coral-400);
  font-weight: 500;
}

.change-phone-link {
  color: var(--Gray-600);
  text-decoration: underline;
  text-underline-offset: 4px;
  font-weight: 500;
  cursor: pointer;
  transition: color 0.3s;
}

.change-phone-link:hover {
  color: #0056b3;
}

.otp-input {
  width: 70px;
  height: 60px;
  text-align: center;
  font-size: 1.2rem;
  border: 1px solid var(--Gray-200);
  border-radius: 15px;
  transition: 0.2s;
  font-family: "iranYekanFaNum";
}

.otp-input:focus {
  border-color: var(--Gray-900);
  outline: none;
}

.otp-actions {
  display: flex;
  justify-content: center;
  gap: 15px;
}

.otp-actions .btn {
  min-width: 130px;
}

@media (max-width: 480px) {
  .otp-input {
    width: 38px;
    height: 45px;
    font-size: 1rem;
  }
}
.Billing .nav-pills {
  border-bottom: 1px solid var(--Gray-200);
}
.Billing .nav-pills .nav-link {
  padding: 8px 18px;
  font-size: 14px;
  color: var(--Gray-300);
  transition: all 0.2s;
}
.Billing .nav-pills .nav-link.active {
  border-bottom: 1px solid var(--Gray-1000);
  color: var(--Gray-1000);
  border-radius: 0 !important;
  font-weight: 500;
  background-color: transparent !important;
}
.Billing .services-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 60px;
}
.Billing .services-list .service-item {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 14px 0;
  cursor: pointer;
  transition: background 0.2s, border 0.2s;
}
.Billing .services-list .service-item:not(:last-child) {
  border-bottom: 1px solid var(--Gray-200);
}
.Billing .services-list .service-item .service-left {
  display: flex;
  flex-direction: column;
  align-items: end;
  gap: 10px;
  min-width: 60px;
}
.Billing .services-list .service-item .service-title {
  flex: 1;
  font-size: 14px;
  color: #111827;
  line-height: 1.6;
  padding-right: 12px;
  cursor: pointer;
}

.pay-item {
  padding: 14px 0;
  cursor: pointer;
  justify-content: space-between;
}
.pay-item:not(:last-child) {
  border-bottom: 1px solid var(--Gray-200);
}

.price {
  display: inline-flex;
  align-items: baseline;
  gap: 4px;
}

.price__value {
  font-size: 14px;
  font-weight: 600;
  color: #222;
}
@media (max-width: 576px) {
  .price__value {
    font-size: 13px;
  }
}

.price__currency {
  font-size: 0.8rem;
  color: #888;
}
@media (max-width: 576px) {
  .price__currency {
    font-size: 10px;
  }
}

.question {
  margin-bottom: 20px;
}
.question p {
  color: var(--Gray-700);
  margin-bottom: 10px;
}
.question .options {
  display: flex;
  gap: 15px;
}
.question .options input[type=radio] {
  accent-color: var(--Gray-500);
}
.question .options label {
  cursor: pointer;
  transition: background-color 0.2s;
}

.course-card {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border: 2px solid #ffffff;
  border-radius: 15px;
  padding: 15px 20px;
  margin-bottom: 20px;
}
@media (max-width: 768px) {
  .course-card {
    flex-direction: column;
    gap: 20px;
  }
}
.course-card .course-info__title {
  font-size: 16px;
  font-weight: 600;
}
.course-card .course-info h3 {
  margin: 0 0 15px 0;
}
.course-card .course-info .info-boxes {
  display: flex;
  gap: 10px;
  align-items: center;
  padding-top: 10px;
}
.course-card .course-info .info-boxes .info-box {
  color: var(--Gray-600);
  font-size: 14px;
  text-align: center;
  font-weight: 400;
}
.course-card .course-action {
  background-color: #d9d9d9;
  color: var(--Gray-1000);
  border: none;
  padding: 10px 30px;
  border-radius: 100px;
  font-size: 16px;
  font-weight: 600;
  transition: background-color 0.2s;
  text-align: center;
}
@media (max-width: 768px) {
  .course-card .course-action {
    width: 80%;
  }
}

.Square-marker {
  display: inline-flex;
  width: 8px;
  height: 8px;
  border-radius: 2px;
  background-color: var(--Coral-400);
}

.faq-accordion {
  border: 1px solid var(--Gray-100);
}

.cooperation-tabs {
  background-color: var(--Gray-100);
  display: flex;
  align-items: center;
  gap: 1.5rem;
  border: none;
  margin-block: 1.5rem;
  border-radius: 10px;
  padding: 5px 10px;
}
.cooperation-tabs__btn {
  background: none;
  border: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  color: #666;
}
.cooperation-tabs__btn .cooperation-tabs__circle {
  width: 18px;
  height: 18px;
  border: 2px solid #ccc;
  border-radius: 50%;
  position: relative;
}
.cooperation-tabs__btn .cooperation-tabs__circle::after {
  content: "";
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #000;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  transition: 0.3s ease;
}
.cooperation-tabs__btn.active {
  color: #000;
}
.cooperation-tabs__btn.active .cooperation-tabs__circle {
  border-color: #000;
}
.cooperation-tabs__btn.active .cooperation-tabs__circle::after {
  transform: translate(-50%, -50%) scale(1);
}
.cooperation-tabs .nav-tabs {
  border: 0 !important;
}
.cooperation-tabs .nav-link {
  border: 0;
  margin: 0;
}
.cooperation-tabs .nav-link.active {
  background-color: transparent;
  border: 0;
}

.password-field .password-wrapper {
  position: relative;
}
.password-field .password-wrapper .form-group__input {
  width: 100%;
  box-sizing: border-box;
}
.password-field .password-wrapper .password-toggle {
  position: absolute;
  top: 50%;
  left: 1rem;
  transform: translateY(-50%);
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  color: #888;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.3s ease;
}
.password-field .password-wrapper .password-toggle:hover {
  color: #000;
}
.password-field .password-wrapper .password-toggle svg {
  width: 20px;
  height: 20px;
  stroke-width: 1.8;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.password-field .password-wrapper .password-toggle .icon-eye-off {
  display: none;
}
.password-field .password-wrapper .password-toggle.is-visible .icon-eye {
  display: none;
}
.password-field .password-wrapper .password-toggle.is-visible .icon-eye-off {
  display: block;
}

.save-password {
  margin-top: 1.2rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.save-password__checkbox {
  width: 18px;
  height: 18px;
  accent-color: var(--Gray-1000);
  cursor: pointer;
}
.save-password__label--checkbox {
  font-size: 0.9rem;
  color: var(--Gray-1000);
  cursor: pointer;
}
.save-password:has(.custom-modal.show) .plan-summary__rules-btn svg {
  transform: rotate(180deg);
}

.custom-modal .modal-content {
  border-radius: 16px;
  background-color: var(--Gray-100);
  padding: 1rem;
}
.custom-modal .modal-header {
  border-bottom: none;
  padding: 0;
  justify-content: end;
}
.custom-modal .modal-header .btn-close {
  margin: 0;
  padding: 5px;
  background-color: var(--Gray-200);
  font-size: 14px;
}
.custom-modal .modal-body .modal-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 1.1rem;
  font-weight: bold;
  text-align: start;
  width: 100%;
  margin-bottom: 30px;
  margin-top: 10px;
}
.custom-modal .modal-footer {
  border-top: 0 !important;
}

.tool-card-btn {
  display: flex;
  align-items: baseline;
  gap: 0.25rem;
  background-color: transparent;
  border: transparent;
  padding-inline: 0;
}

.field-validation-error {
  display: inline-block;
  color: red !important;
  font-size: 14px !important;
  padding-top: 5px !important;
  padding-right: 2px !important;
}

.portal-form-title {
  font-size: 25px;
  font-weight: 600;
  margin-bottom: 30px;
}

.portal-form-sub-title {
  font-weight: 400;
}

.step-indicator {
  font-size: 14px;
  margin-bottom: 10px;
}

.accordion-button-text {
  font-family: iranYekan;
  color: var(--Gray-900) !important;
  font-weight: 500;
  text-align: right;
}

.sale-text {
  font-size: 14px;
}

.customer-submit {
  margin-top: 40px;
}

.btn-refresh-capcha {
  border-width: 0px;
  background-color: transparent !important;
}/*# sourceMappingURL=PortalStyle.css.map */