@font-face {
  font-family: "URW DIN Arabic";
  src: url("../../assets/fonts/URWDINArabic-Regular.woff2") format("woff2"), url("../../assets/fonts/URWDINArabic-Regular.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "URW DIN Arabic Demi";
  src: url("../../assets/fonts/URWDINArabic-Demi.woff2") format("woff2"), url("../../assets/fonts/URWDINArabic-Demi.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "URW DIN Arabic";
  src: url("../../assets/fonts/URWDINArabic-Black.woff2") format("woff2"), url("../../assets/fonts/URWDINArabic-Black.woff") format("woff");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "URW DIN Arabic";
  src: url("../../assets/fonts/URWDINArabic-Bold.woff2") format("woff2"), url("../../assets/fonts/URWDINArabic-Bold.woff") format("woff");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "URW DIN Arabic";
  src: url("../../assets/fonts/URWDINArabic-Medium.woff2") format("woff2"), url("../../assets/fonts/URWDINArabic-Medium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "URW DIN Arabic";
  src: url("../fonts/URWDINArabic-Thin.woff2") format("woff2"), url("../fonts/URWDINArabic-Thin.woff") format("woff");
  font-weight: 100;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "URW DIN Arabic";
  src: url("../fonts/URWDINArabic-Light.woff2") format("woff2"), url("../fonts/URWDINArabic-Light.woff") format("woff");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

:root {
  /* Background Colors */
  --background-color-1: #2C6E59;
  --background-color-2: #FFFFFF;
  --background-color-3: #EAF1EE;
  --background-color-4: #F8FAF8;
  --background-color-5: #2C6E59;
  --background-color-6: #F1F8F5;
  --background-color-7: #ABC5BD;
  --background-color-8: #595A5C;
  --background-color-9: #E3EEEA;
  --background-color-10: #F0F9F6;
  --background-color-11: #F5F5F5;
  --background-color-12: #f7f7f7;
  --background-color-13: #F4F8F7;
  /* Border Colors */
  --border-color-1: #E0E0E1;
  --border-color-2: #CCDCD7;
  --border-color-3: #A8A8A8;
  --border-color-4: #FFFFFF;
  --border-color-5: #2c6e59;
  /* Text Colors */
  --text-color-1: #595A5C;
  --text-color-2: #595A5C;
  --text-color-3: #6E6F72;
  --text-color-4: #b4b5b6;
  /* Gradient Colors */
  --grd-color-1: linear-gradient(90.03deg, #297D59 -27.75%, #297D59 13.22%, rgba(45, 109, 90, 0) 110.01%);
  --scroll-thumb: #D9D9D9;
}

[data-theme="dark"] {
  /* Background Colors */
  --background-color-1: #338068;
  --background-color-2: #1E1E1E;
  --background-color-3: #1E1E1E;
  --background-color-4: #121212;
  --background-color-5: #1E1E1E;
  --background-color-6: #343434;
  --background-color-7: #616161;
  --background-color-8: #343434;
  --background-color-9: #2E2E2E;
  --background-color-10: #2E2E2E;
  --background-color-11: #2E2E2E;
  --background-color-12: #1e1e1eb3;
  --background-color-13: #2b2b2b;
  /* Border Colors */
  --border-color-1: #4B4B4B;
  --border-color-2: #343434;
  --border-color-3: #4B4B4B;
  --border-color-4: #1E1E1E;
  --border-color-5: #4B4B4B;
  /* Text Colors */
  --text-color-1: #787878;
  --text-color-2: #FFFFFF;
  --text-color-3: #A5A5A5;
  --text-color-4: #b4b5b65c;
  /* Gradient Colors */
  --grd-color-1: linear-gradient(90.01deg, #1E1E1E 15.9%, #1E1E1E 40.91%, rgba(30, 30, 30, 0) 99.99%);
  --scroll-thumb: #343434;
}

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: "URW DIN Arabic";
  font-weight: 500;
}

body {
  min-height: 100vh;
  line-height: 1.5;
}

body.transition *,
body.transition *::before,
body.transition *::after {
  transition: color 0.1s, border 0.3s, background-color 0.3s, background-image 0.3s;
}

::-webkit-scrollbar {
  width: 5px;
}

::-webkit-scrollbar-thumb {
  border-radius: 8px;
  background-color: var(--scroll-thumb);
}

a,
a:hover {
  color: inherit;
  text-decoration: none;
}

.primary-link,
.primary-link:hover {
  display: inline-flex;
  align-items: center;
  font-size: 14px;
  color: var(--background-color-1);
  gap: 5px;
}

.primary-link-bg,
.primary-link-bg:hover {
  display: inline-flex;
  align-items: center;
  font-size: 14px;
  background-color: var(--background-color-1);
  border: 1px solid var(--background-color-1);
  color: #fff;
  padding: 8px 16px;
  gap: 5px;
}

.primary-link-bg-sm,
.primary-link-bg-sm:hover {
  display: inline-flex;
  align-items: center;
  font-size: 14px;
  border: 1px solid var(--background-color-1);
  background-color: var(--background-color-1);
  color: #fff;
  padding: 4px 14px 4px 14px;
  gap: 5px;
}

.primary-link-border,
.primary-link-border:hover {
  display: inline-flex;
  align-items: center;
  font-size: 14px;
  border: 1px solid var(--background-color-1);
  color: var(--background-color-1);
  padding: 8px 16px;
  gap: 5px;
}

.primary-link-border-sm,
.primary-link-border-sm:hover {
  display: inline-flex;
  align-items: center;
  font-size: 14px;
  border: 1px solid var(--background-color-1);
  color: var(--background-color-1);
  padding: 4px 14px 4px 14px;
  gap: 5px;
}

.primary-link-bg.disabled,
.primary-link-bg-sm.disabled {
  opacity: 0.30;
  pointer-events: none;
}

img {
  max-width: 100%;
}

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.dashboard-main-container {
  position: relative;
  display: flex;
  height: 100vh;
}

.sidebar-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 10;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s;
}

.sidebar-bg.open {
  opacity: 1;
  visibility: visible;
}

.dashboard-main-container .dashboard-sidebar {
  width: 280px;
  height: 100%;
  background-color: var(--background-color-3);
  border-right: 1px solid var(--border-color-1);
}

.dashboard-main-container .dashboard-sidebar .sidebar-logo {
  position: relative;
  padding: 25px 0 20px 25px;
  border-bottom: 1px solid var(--border-color-1);
}

.dashboard-main-container .dashboard-sidebar .sidebar-logo img {
  height: 60px;
}

.dashboard-main-container .dashboard-sidebar .sidebar-logo #closeSidebar {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 20px;
  display: inline-block;
  width: 30px;
  height: 30px;
  padding: 5px;
  line-height: 0;
  display: none;
  cursor: pointer;
}

.dashboard-main-container .dashboard-sidebar .sidebar-logo #closeSidebar img {
  width: 100%;
  height: 100%;
}

.dashboard-main-container .dashboard-sidebar .sidebar-nav {
  padding: 25px 25px 25px 0;
  max-height: calc(100% - 120px);
  overflow: auto;
}

.dashboard-main-container .dashboard-sidebar .sidebar-nav::-webkit-scrollbar {
  width: 0;
  -webkit-appearance: none;
}

.dashboard-main-container .dashboard-sidebar .sidebar-nav ul {
  padding: 0 0 0 25px;
  list-style: none;
}

.dashboard-main-container .dashboard-sidebar .sidebar-nav ul li {
  position: relative;
  margin-bottom: 5px;
}

.dashboard-main-container .dashboard-sidebar .sidebar-nav ul li a {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-right: 15px;
  font-size: 14px;
  color: var(--text-color-1);
  transition: color 0.2s;
}

.dashboard-main-container .dashboard-sidebar .sidebar-nav ul li a span {
  font-family: "URW DIN Arabic Demi";
}

.dashboard-main-container .dashboard-sidebar .sidebar-nav ul li a>div {
  display: flex;
  align-items: center;
}

.dashboard-main-container .dashboard-sidebar .sidebar-nav>ul>li>a::before {
  content: '';
  position: absolute;
  top: 0;
  left: -25px;
  width: 6px;
  height: 100%;
}

.dashboard-main-container .dashboard-sidebar .sidebar-nav>ul>li>a.active::before {
  background-color: var(--background-color-1);
}

.dashboard-main-container .dashboard-sidebar .sidebar-nav>ul>li>a:hover {
  color: var(--background-color-1);
}

.dashboard-main-container .dashboard-sidebar .sidebar-nav>ul>li>a.active {
  background-color: var(--background-color-1);
  color: #fff;
  box-shadow: 5px 4px 13px 0px #00000026;
}

.dashboard-main-container .dashboard-sidebar .sidebar-nav>ul>li>a.active .link-icon img {
  filter: grayscale(1) contrast(3) invert(1);
}

.dashboard-main-container .dashboard-sidebar .sidebar-nav>ul>li>a .drop-icon {
  display: inline-block;
  border: 4px solid transparent;
  border-left-color: var(--text-color-1);
  border-bottom-color: var(--text-color-1);
  transform: rotate(-45deg);
}

.dashboard-main-container .dashboard-sidebar .sidebar-nav>ul>li>a.active .drop-icon {
  border-left-color: #fff;
  border-bottom-color: #fff;
  margin-top: 8px;
  transform: rotate(135deg);
}

.dashboard-main-container .dashboard-sidebar .sidebar-nav ul li a .link-icon {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  line-height: 0;
  width: 45px;
  height: 45px;
}

.dashboard-main-container .dashboard-sidebar .sidebar-nav ul li a .link-icon img {
  width: 24px;
  height: 24px;
}

.dashboard-main-container .dashboard-sidebar .sidebar-nav ul li.sidebar-dropdown .sidebar-dropdown-menu {
  padding: 10px 20px;
  background-color: var(--background-color-6);
  display: none;
}

.dashboard-main-container .dashboard-sidebar .sidebar-nav ul li.sidebar-dropdown.active .sidebar-dropdown-menu {
  display: block;
}

.dashboard-main-container .dashboard-sidebar .sidebar-nav ul li.sidebar-dropdown .sidebar-dropdown-menu ul {
  padding: 0;
}

.dashboard-main-container .dashboard-sidebar .sidebar-nav ul li.sidebar-dropdown .sidebar-dropdown-menu li::after {
  content: '';
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 10px;
  width: 6px;
  height: 6px;
  background-color: var(--text-color-1);
}

.dashboard-main-container .dashboard-sidebar .sidebar-nav ul li.sidebar-dropdown .sidebar-dropdown-menu li a {
  padding: 4px 0 4px 25px;
  color: var(--text-color-1);
  transition: color 0.2s;
}

.dashboard-main-container .dashboard-sidebar .sidebar-nav ul li.sidebar-dropdown .sidebar-dropdown-menu li:hover a {
  color: var(--background-color-1);
}

.dashboard-main-container .dashboard-sidebar .sidebar-nav ul li.sidebar-dropdown .sidebar-dropdown-menu li.active a {
  color: var(--background-color-1);
  background-color: var(--background-color-9);
}

.dashboard-main-container .dashboard-sidebar .sidebar-nav ul li.sidebar-dropdown .sidebar-dropdown-menu li:hover::after {
  background-color: var(--background-color-1);
}

.dashboard-main-container .dashboard-sidebar .sidebar-nav ul li.sidebar-dropdown .sidebar-dropdown-menu li.active::after {
  background-color: var(--background-color-1);
}

.dashboard-main-container .dashboard-sidebar .sidebar-nav ul li.sidebar-dropdown.active {
  box-shadow: 5px 4px 13px 0px #00000014;
}

.dashboard-main-container .dashboard-main-content {
  width: calc(100% - 280px);
  height: 100%;
  background-color: var(--background-color-4);
  overflow: auto;

}

/* Menu Toggle */
.dashboard-main-container.sidebar-menu-sm {
  height: auto;
  min-height: 100vh;
}

.dashboard-main-container.sidebar-menu-sm .dashboard-sidebar {
  width: 100px;
  height: auto;
}

.dashboard-main-container.sidebar-menu-sm .dashboard-main-content {
  width: calc(100% - 100px);
  height: auto;
}

.dashboard-main-container.sidebar-menu-sm .dashboard-sidebar .sidebar-logo {
  padding: 20px 0 20px 0;
  text-align: center;
}

.dashboard-main-container.sidebar-menu-sm .dashboard-sidebar .sidebar-logo img:nth-child(1) {
  height: 44px;
  display: none;
}

.dashboard-main-container.sidebar-menu-sm .dashboard-sidebar .sidebar-logo img:nth-child(2) {
  height: 44px;
  display: inline-block !important;
}

.dashboard-main-container.sidebar-menu-sm .dashboard-sidebar .sidebar-nav {
  max-height: unset;
  overflow: visible;
}

.dashboard-main-container.sidebar-menu-sm .dashboard-sidebar .sidebar-nav>ul>li {
  display: inline-block;
}

.dashboard-main-container.sidebar-menu-sm .dashboard-sidebar .sidebar-nav>ul>li>a {
  display: inline-flex;
  padding: 0;
}

.dashboard-main-container.sidebar-menu-sm .dashboard-sidebar .sidebar-nav>ul>li>a>div span:nth-child(2) {
  display: none;
}

.dashboard-main-container.sidebar-menu-sm .dashboard-sidebar .sidebar-nav>ul>li>a .drop-icon {
  display: none;
}

.dashboard-main-container.sidebar-menu-sm .dashboard-sidebar .sidebar-nav>ul>li.sidebar-dropdown .sidebar-dropdown-menu {
  position: absolute;
  top: 0;
  left: calc(100% + 10px);
  width: 200px;
  border-radius: 2px;
  box-shadow: 5px 4px 13px 0px #00000014;
  border: 1px solid #00000040;
  z-index: 5;
}

/* Menu Toggle End */

/* Main Content Header */
.main-content-header {
  position: sticky;
  top: 0;
  padding: 12px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: var(--background-color-2);

  box-shadow: 0px 1px 0px 0px #12203B17;
  z-index: 5;
}

.main-content-header #sidebarMenuSm {
  cursor: pointer;
}

.dashboard-user-dropdown {
  position: relative;
  padding-left: 15px;
}

.dashboard-user-dropdown::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 1px;
  height: 35px;
  background-color: var(--border-color-1);

}

.dashboard-user-dropdown .dropdown-toggle {
  display: flex;
  align-items: center;
}

.dashboard-user-dropdown .dropdown-toggle::after {
  width: 6px;
  height: 6px;
  border: 2px solid transparent;
  border-left-color: var(--text-color-2);
  border-bottom-color: var(--text-color-2);

  transform: rotate(-45deg);
  margin-left: 10px;
}

.dashboard-user-dropdown .user-avatar {
  width: 44px;
  height: 44px;
  border-radius: 100%;
  overflow: hidden;
  margin-right: 10px;
  border: 2px solid var(--background-color-1);

}

.dashboard-user-dropdown .user-avatar img {
  width: 100%;
  height: 100%;
}

.dashboard-user-dropdown .user-info h3 {
  font-size: 14px;
  margin: 0;
  color: var(--background-color-1);

}

.dashboard-user-dropdown .user-info p {
  font-size: 12px;
  margin: 0;
  color: var(--text-color-3);

}

.dashboard-user-dropdown .dropdown-menu {
  width: 250px;
  border-radius: 0;
  border: 1px solid var(--border-color-1);
  padding: 0;
  margin-top: 20px !important;
  background-color: var(--background-color-2);

}

.dashboard-user-dropdown .dropdown-menu .dropdown-menu-user-info {
  display: flex;
  padding: 15px;
  border-bottom: 1px solid var(--border-color-1);

}

.dashboard-user-dropdown .dropdown-menu .dropdown-menu-user-info .user-avatar {
  width: 35px;
  height: 35px;
}

.dashboard-user-dropdown .dropdown-menu .dropdown-menu-user-info .user-info h3 {
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.dashboard-user-dropdown .dropdown-menu ul {
  margin: 0;
  padding: 5px 0;
  list-style: none;
}

.dashboard-user-dropdown .dropdown-menu ul li a {
  font-size: 14px;
  padding: 5px 15px;
  display: block;
  color: var(--text-color-2);

  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  font-family: "URW DIN Arabic Demi";
}

.notification-dropdown {
  padding: 0 15px;
}

.notification-dropdown::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 1px;
  height: 35px;
  background-color: var(--border-color-1);

}

.notification-dropdown .dropdown-toggle::after {
  display: none;
}

.notification-dropdown .dropdown-toggle {
  height: 44px;
  line-height: 44px;
}

.notification-dropdown .dropdown-toggle .icon {
  position: relative;
}

.notification-dropdown .dropdown-toggle .icon img {
  width: 20px;
}

.notification-dropdown .dropdown-toggle .icon span {
  position: absolute;
  top: -3px;
  right: -3px;
  width: 16px;
  height: 16px;
  color: #fff;
  border-radius: 100%;
  text-align: center;
  line-height: 16px;
  background: var(--background-color-1);

  font-size: 10px;
}

.notification-dropdown .dropdown-menu {
  margin-top: 20px !important;
  border-radius: 0;
  margin-right: -15px !important;
  background-color: transparent;
  padding-top: 20px;
  width: 350px;
  max-width: 90vw;
  border: 0;
}

.notification-list {
  position: relative;
  border: 2px solid var(--border-color-1);
  box-shadow: 10px 10px 35px rgba(0, 0, 0, 0.15);
  border-radius: 5px;
  background-color: var(--background-color-2);

}

.notification-list .notification-dropmenu-arrow {
  position: absolute;
  top: -25px;
  right: 10px;
  width: 25px;
  height: 25px;
  display: block;
  background-image: var(--bg-img-1);

}

.notification-list .notification-list-header {
  border-top: 6px solid var(--background-color-1);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 15px;
  border-bottom: 1px solid var(--border-color-1);

}

.notification-list .notification-list-header h3 {
  font-size: 18px;
  margin: 0;
  color: var(--text-color-2);

}

.notification-list .notification-list-body {
  height: 300px;
  overflow: auto;
}

.notification-list .notification-list-body .notification-list-item {
  display: flex;
  gap: 10px;
  padding: 20px 15px;
  border-bottom: 1px solid var(--border-color-1);

}

.notification-list .notification-list-body .notification-list-item.new {
  background-color: var(--background-color-6);

}

.notification-list .notification-list-body .notification-list-item .icon {
  width: 50px;
}

.notification-list .notification-list-body .notification-list-item .icon img {
  width: 45px;
}

.notification-list .notification-list-body .notification-list-item .item-text {
  width: calc(100% - 70px);
}

.notification-list .notification-list-body .notification-list-item .item-text h3 {
  font-size: 14px;
  color: var(--text-color-2);

  font-family: "URW DIN Arabic Demi";
}

.notification-list .notification-list-body .notification-list-item .item-text p {
  font-size: 12px;
  font-weight: 400;
  color: #97989B;
  margin-bottom: 0;
}

.notification-list .notification-list-body .notification-list-item .item-dot {
  width: 20px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.notification-list .notification-list-body .notification-list-item .item-dot span {
  display: block;
  width: 8px;
  height: 8px;
  border-radius: 100%;
  background: var(--background-color-7);

}

.notification-list .notification-list-footer {
  height: 40px;
  border-top: 1px solid var(--border-color-1);

}

.notification-list .notification-list-footer a {
  width: 100%;
  height: 100%;
  color: var(--background-color-1);
  background-color: var(--background-color-6);

  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 14px;
  font-family: "URW DIN Arabic Demi";
}

.language-change {
  position: relative;
  padding: 0 15px;
  font-size: 14px;
  display: flex;
  align-items: center;
  color: #595A5C;
}

.language-change::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 1px;
  height: 35px;
  background-color: var(--border-color-1);

}

.language-change span {
  display: inline-flex;
}

.language-change .language-icon {
  margin-right: 8px;
}

.language-change .language-icon img {
  width: 24px;
  height: 24px;
}

.theme-switch {
  position: relative;
  padding: 0 15px;
  cursor: pointer;
}

.theme-switch::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 1px;
  height: 35px;
  background-color: var(--border-color-1);

}

.theme-switch input {
  display: none;
}

.theme-switch .theme-switch-icon {
  width: 28px;
  height: 28px;
  padding: 5px;
  line-height: 0;
  border: 1px solid #338068;
  border-radius: 100%;
  cursor: pointer;
}

.theme-switch #starGroup {
  opacity: 0;
}

.theme-switch .sunRays {
  fill: #338068;
}

/* Main Content Header End */

.main-content-body {
  padding: 40px;
}

.primary-title {
  font-size: 20px;
  color: var(--text-color-2);

  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 700;
  margin-bottom: 15px;
}

.primary-title a {
  color: var(--background-color-1);

  font-size: 14px;
  text-decoration: underline;
  text-underline-offset: 2px;
  font-family: "URW DIN Arabic Demi";
}

.primary-title-demi {
  font-size: 20px;
  color: var(--text-color-2);

  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
  font-family: "URW DIN Arabic Demi";
}

.primary-title-demi a {
  color: var(--background-color-1);

  font-size: 14px;
  text-decoration: underline;
  text-underline-offset: 2px;
  font-family: "URW DIN Arabic Demi";
}

.secondare-title {
  font-size: 16px;
  color: #595A5C;
  font-weight: 700;
  margin-bottom: 15px;
}

.page-title {
  font-size: 26px;
  font-weight: 600;
  color: var(--text-color-2);

  margin-bottom: 30px;
}

.main-content-card {
  padding: 16px;
  margin-bottom: 20px;
  height: calc(100% - 20px);
  background-color: var(--background-color-2);
  border: 1px solid var(--border-color-2);

  overflow: hidden;
}

.dashboard-welcome-card {
  position: relative;
  background-color: var(--background-color-5);

  background-position: bottom;
  background-size: 100% auto;
  background-repeat: no-repeat;
  border-color: transparent;
}

.dashboard-welcome-card .dashboard-welcome-card-text {
  position: relative;
  padding: 20px;
  color: #fff;
  z-index: 4;
}

.dashboard-welcome-card .dashboard-welcome-card-text>div {
  max-width: 50%;
}

.dashboard-welcome-card .overlay1 {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 50px;
  background-color: var(--grd-color-1);

  transform: rotate(180deg);
  z-index: 2;
  pointer-events: none;
}

.dashboard-welcome-card .dashboard-welcome-card-text::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('../../assets/images/dashboard-welcome-card-border.png');
  background-position: center;
  background-size: 100% 100%;
  background-repeat: no-repeat;
  pointer-events: none;
}

.dashboard-welcome-card .dashboard-welcome-card-text.dark::after {
  background-image: url('../../assets/images/dashboard-welcome-card-border-dark.png');
}

.dashboard-welcome-card .dashboard-welcome-card-text span {
  font-size: 16px;
  font-weight: 400;
  display: block;
  margin-bottom: 6px;
}

.dashboard-welcome-card .dashboard-welcome-card-text h1 {
  font-size: 24px;
  display: inline-block;
  padding-right: 20px;
  border-bottom: 1px solid #FFFFFF1A;
  padding-bottom: 7px;
  font-family: "URW DIN Arabic Demi";
}

.dashboard-welcome-card .dashboard-welcome-card-text p {
  font-size: 14px;
  font-weight: 400;
  margin: 0;
}

.dashboard-welcome-card img {
  position: absolute;
  right: 40px;
  bottom: 0;
  width: 340px;
  max-width: 50%;
  z-index: 3;
}

.total-card {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--text-color-2);

  padding: 14px 16px 14px 16px;
}

.total-card>div {
  display: flex;
}

.total-card .icon {
  display: block;
  width: 24px;
  height: 24px;
  min-width: 24px;
  min-height: 24px;
  margin-right: 15px;
}

.total-card .icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.total-card .text {
  font-size: 16px;
  font-family: "URW DIN Arabic Demi";
  line-height: 20px;
}

.total-card .count {
  font-size: 24px;
  font-weight: 700;
}

.dashboard-assessment-card {
  display: flex;
}

.dashboard-assessment-card .dashboard-assessment-list {
  width: calc(100% - 300px);
  padding-right: 40px;
}

.dashboard-assessment-card .dashboard-assessment-statistics {
  width: 300px;
  padding-left: 15px;
}

.assessment-list-item {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 10px;
  padding: 10px;
  border: 1px solid var(--border-color-2);

}

.assessment-list-item:not(:last-child) {
  margin-bottom: 15px;
}

.assessment-list-item .title-img {
  display: flex;
  gap: 10px;
}

.assessment-list-item .title-img .img {
  width: 40px;
  height: 40px;
  color: #fff;
  text-align: center;
  line-height: 40px;
  background-color: var(--background-color-8);

}

.assessment-list-item .title-img h3 {
  font-size: 16px;
  font-family: "URW DIN Arabic Demi";
  margin: 0;
  margin-bottom: 4px;
  color: var(--text-color-2);

  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.assessment-list-item .title-img p {
  font-size: 12px;
  margin: 0;
  font-weight: 400;
  color: var(--text-color-3);

}

.assessment-list-item .date {
  font-size: 12px;
  color: var(--text-color-3);

}

.assessment-list-item .date span {
  display: flex;
  align-items: center;
  gap: 5px;
}

.assessment-list-item .date img {
  width: 18px;
}

.dashboard-assessment-statistics .assessment-statistic {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.dashboard-assessment-statistics .assessment-statistic::after {
  content: '';
  position: absolute;
  top: 0;
  left: -20px;
  width: 1px;
  height: 100%;
  background-color: var(--border-color-1);

}

.statistic-percentage-list .percentage-list-item {
  font-size: 14px;
  color: var(--text-color-1);

}

.statistic-percentage-list .percentage-list-item span {
  font-weight: 600;
  font-family: "URW DIN Arabic Demi";
}

.statistic-percentage-list .percentage-list-item:not(:last-child) {
  margin-bottom: 15px;
}

.statistic-percentage-list .percentage-list-item .dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 100%;
  margin-right: 8px;
}

.assessment-statistic .statistic-percentage {
  position: relative;
  width: 130px;
  height: 130px;
  border-radius: 100%;
}

.assessment-statistic .statistic-percentage span {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 100%;
  width: 65%;
  height: 65%;
  font-size: 24px;
  font-weight: 700;
  color: var(--text-color-2);
  background-color: var(--background-color-2);

  z-index: 2;
}

.course-card .course-card-header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
}

.course-card .course-card-header .card-header-icon-tag .img {
  width: 40px;
  height: 40px;
  background-color: var(--background-color-10);

  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 8px;
}

.course-card .course-card-header .card-header-icon-tag .img img {
  width: 28px;
  height: 28px;
}

.course-card .course-card-header .card-header-icon-tag .tag {
  display: inline-block;
  padding: 2px 8px;
  background-color: var(--background-color-9);
  font-size: 12px;
  margin-top: 8px;
  color: var(--background-color-1);

  font-family: "URW DIN Arabic Demi";

}

.course-card .course-card-header .card-header-date {
  text-align: right;
  font-size: 12px;
  padding-top: 5px;
}

.course-card .course-card-header .card-header-date span {
  color: var(--text-color-3);

  font-weight: 400;
}

.course-card .course-card-header .card-header-date p {
  color: var(--background-color-1);

  font-family: "URW DIN Arabic Demi";
  margin: 0;
}

.course-card .course-card-header .card-header-price {
  font-size: 18px;
  font-family: "URW DIN Arabic Demi";
  color: var(--text-color-3);

  padding-top: 5px;
}

.course-card .course-card-title {
  font-size: 18px;
  font-weight: 600;
  color: var(--text-color-2);

  line-height: 24px;
  margin-bottom: 15px;
  /* height: 48px; */
  font-family: 'URW DIN Arabic Demi';
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.course-card .course-card-progress-container .course-card-course-card-progress-text {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: var(--text-color-3);

  margin-bottom: 5px;
}

.course-card .course-card-progress-container .course-card-progressbar {
  width: 100%;
  height: 5px;
  background-color: var(--border-color-1);

  margin-bottom: 10px;
}

.course-card .course-card-progress-container .course-card-progressbar span {
  display: block;
  height: 100%;
  background-color: var(--background-color-1);

}

.course-card .course-card-time-place {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 15px;
}

.course-card .course-card-time-place .course-card-time-place-item {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 14px;
  color: var(--text-color-3);

}

.course-card .course-card-time-place .course-card-time-place-item img {
  width: 18px;
}

.course-card .course-card-courseby {
  font-size: 12px;
  margin-bottom: 10px;
}

.course-card .course-card-courseby span {
  color: var(--text-color-3);

  font-weight: 400;
}

.course-card .course-card-courseby p {
  color: var(--background-color-1);

  font-size: 14px;
  font-family: "URW DIN Arabic Demi";
  margin: 0;
}

.course-card .course-card-btn {
  text-align: right;
  padding-top: 5px;
}

.dashboard-user-card {
  border-bottom: 1px solid var(--border-color-1);
  padding-bottom: 8px;
}

.dashboard-user-card .dashboard-user-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.dashboard-user-card .dashboard-user-card-body {
  padding-top: 15px;
}

.dashboard-user-card .dashboard-user-card-body .user-card-avatar {
  position: relative;
  width: 100px;
  height: 100px;
  border-radius: 100%;
  padding: 5px;
  border: 2px solid var(--border-color-3);

  margin: auto;
  margin-bottom: 25px;
}

.dashboard-user-card .dashboard-user-card-body .user-card-avatar>img {
  width: 100%;
  height: 100%;
  border-radius: 100%;
}

.dashboard-user-card .dashboard-user-card-body .user-card-avatar .edit-icon {
  position: absolute;
  bottom: -18px;
  left: 50%;
  transform: translateX(-50%);
  width: 36px;
  height: 36px;
  border-radius: 100%;
  border: 2px solid var(--border-color-4);
  background-color: var(--background-color-1);
  display: flex;
  justify-content: center;
  align-items: center;
  line-height: 0;
}

.dashboard-user-card .dashboard-user-card-body .user-card-avatar .edit-icon img {
  width: 18px;
  height: 18px;
}

.dashboard-user-card .dashboard-user-card-body .user-card-info {
  text-align: center;
}

.dashboard-user-card .dashboard-user-card-body .user-card-info h3 {
  font-size: 18px;
  color: var(--text-color-2);

  margin-bottom: 3px;
  font-family: "URW DIN Arabic Demi";
}

.dashboard-user-card .dashboard-user-card-body .user-card-info p {
  font-size: 14px;
  color: var(--text-color-3);
  margin: 0;
  font-weight: 400;
}

.recommended-courses {
  padding-top: 10px;
}

/* Slide Calendar */
.slide-calendar {
  padding: 15px 0;
  border-bottom: 1px solid var(--border-color-1);
}

.slide-calendar .slide-calendar-month-year {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 18px;
}

.slide-calendar .slide-calendar-month-year .arrow-left,
.slide-calendar .slide-calendar-month-year .arrow-right {
  position: relative;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 24px;
  height: 24px;
  border: 1px solid var(--border-color-1);
}

.slide-calendar .slide-calendar-month-year .arrow-left::before,
.slide-calendar .slide-calendar-month-year .arrow-right::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 6px;
  height: 6px;
  border-top: 2px solid var(--text-color-2);
  border-right: 2px solid var(--text-color-2);
}

.slide-calendar .slide-calendar-month-year .arrow-left::before {
  transform: translate(-40%, -50%) rotate(-135deg);
}

.slide-calendar .slide-calendar-month-year .arrow-right::before {
  transform: translate(-60%, -50%) rotate(45deg);
}

.slide-calendar .slide-calendar-month-year .month {
  font-weight: 600;
  font-size: 16px;
  color: var(--text-color-2);
}

.slide-calendar .slide-calendar-month-year .year {
  font-weight: 600;
  font-size: 16px;
  color: var(--text-color-2);
}

.slide-calendar .slide-calendar-date-slider .date-slider-slide {
  height: 50px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.slide-calendar .slide-calendar-date-slider .date-slider-slide.active {
  background: var(--background-color-1);
}

.slide-calendar .slide-calendar-date-slider .date-slider-slide span:nth-child(1) {
  font-size: 16px;
  color: var(--text-color-2);
  line-height: 1.3;
  font-family: "URW DIN Arabic Demi";
}

.slide-calendar .slide-calendar-date-slider .date-slider-slide span:nth-child(2) {
  font-size: 12px;
  color: var(--text-color-2);
  line-height: 1.3;
}

.slide-calendar .slide-calendar-date-slider .date-slider-slide.active span {
  color: #fff;
}

/* Slide Calendar End */

/* Breadcrumbs */
.dashboard-breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  align-items: center;
  font-size: 14px;
  color: #B9B9B9;
  margin-bottom: 15px;
}

.dashboard-breadcrumbs a {
  position: relative;
  font-weight: 400;
}

.dashboard-breadcrumbs span {
  color: var(--background-color-1);

  font-weight: 600;
}

/* Breadcrumbs End */

/* Dashboard Tabs */
.dashboard-tabs ul {
  border-bottom: 1px solid var(--border-color-1);

}

.dashboard-tabs ul li a,
.dashboard-tabs ul li a:hover {
  padding: 0;
  padding-bottom: 10px;
  font-size: 18px;
  color: #C1C1C3;
  font-family: "URW DIN Arabic Demi";
}

.dashboard-tabs ul li:not(:last-child) a {
  margin-right: 20px;
}

.dashboard-tabs .nav-pills .nav-link.active,
.dashboard-tabs .nav-pills .show>.nav-link {
  background: transparent;
  color: var(--background-color-1);

}

.dashboard-tabs .tab-content .tab-pane {
  padding: 15px 0;
}

/* Dashboard Tabs End */

/* Search Icon */
.search-box {
  position: relative;
  width: 100%;
  height: 35px;
  background-color: var(--background-color-2);
  border: 1px solid var(--border-color-1);
  margin-bottom: 20px;
}

.search-box .search-box-icon {
  position: absolute;
  top: 0;
  left: 0;
  width: 35px;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--background-color-1);

  line-height: 0;
}

.search-box .search-box-icon img {
  width: 18px;
  height: 18px;
}

.search-box input {
  width: 100%;
  height: 100%;
  border: 0;
  outline: 0;
  background-color: transparent;
  padding-left: 45px;
  padding-right: 10px;
  font-size: 12px;
  color: var(--text-color-3);
}

.search-box input::placeholder {
  color: var(--text-color-3);
  opacity: 0.6;
}

.search-box select {
  width: calc(100% - 35px);
  height: 100%;
  border: 0;
  outline: 0;
  background-color: transparent;
  margin-left: 35px;
  padding-left: 10px;
  font-size: 12px;
  color: var(--text-color-3);
}

.search-box select::placeholder {
  color: var(--text-color-3);
  opacity: 0.6;
}

/* Search Icon End */

/* Assessment Card */
.assessment-card {
  display: flex;
  padding: 30px;
}

.assessment-card .assessment-card-left {
  width: 50%;
  padding: 5px;
}

.assessment-card .assessment-card-right {
  width: 50%;
  padding: 5px;
  padding-left: 40px;
  border-left: 1px solid var(--border-color-1);

}

.assessment-card-text:not(:last-child) {
  margin-bottom: 20px;
}

.assessment-card-text span {
  color: var(--text-color-3);

  font-size: 14px;
  margin-bottom: 5px;
  display: inline-block;
}

.assessment-card-text p {
  color: var(--text-color-2);

  font-size: 16px;
  margin: 0;
  font-family: "URW DIN Arabic Demi";
}

.assessment-card-text p .status {
  display: inline-block;
  padding: 6px 20px 6px 20px;
  margin: 0 10px;
}

.assessment-card-text p .status.fail {
  color: #FF3939;
  background-color: #FFEBEB;
}

.assessment-card-text p .status.pass {
  color: #38C14E;
  background-color: #EFFAF1;
}

.assessment-card-right-title {
  color: var(--text-color-3);

  font-weight: 400;
  font-size: 14px;
  margin-bottom: 25px;
}

.assessment-card-right-title span {
  color: var(--background-color-1);

  font-family: "URW DIN Arabic Demi";
}

.assessment-card-right-cards {
  border-top: 1px solid var(--border-color-1);
  border-bottom: 1px solid var(--border-color-1);

  display: flex;
  margin-bottom: 25px;
}

.assessment-card-right-cards .assessment-card-right-card {
  border-right: 1px solid var(--border-color-1);

  padding: 20px;
}

.assessment-card-right-cards .assessment-card-right-card:first-child {
  padding-left: 0;
}

.assessment-card-right-cards .assessment-card-right-card:last-child {
  flex: 1;
  border-right: 0;
}

.assessment-card .primary-link-bg {
  padding: 10px 24px;
  margin-top: 20px;
}

/* Assessment Card End */

/* Learning Path Modules */
.learning-path-modules {
  overflow: auto;
}

.learning-path-module {
  margin-bottom: 20px;
  min-width: 800px;
}

.learning-path-module.toggle-active .learning-path-module-head .module-head-btn img {
  transform: rotate(180deg);
}

.learning-path-module-head {
  padding: 16px 20px;
  background-color: var(--background-color-3);
  border: 1px solid var(--border-color-2);

  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
}

.learning-path-module-head .module-head-content {
  display: flex;
}

.learning-path-module-head .module-head-content .head-content-count {
  min-width: 40px;
  height: 50px;
  color: var(--background-color-1);
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 20px;
  border: 2px solid var(--background-color-1);

  font-family: "URW DIN Arabic Demi";
  margin-right: 15px;
}

.learning-path-module-head .module-head-content .head-content-info .content-info-title {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 4px;
}

.learning-path-module-head .module-head-content .head-content-info .content-info-title h2 {
  max-width: 60%;
  font-size: 20px;
  margin: 0;
  margin-right: 10px;
  color: var(--text-color-2);

  font-family: "URW DIN Arabic Demi";
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.learning-path-module-head .module-head-content .head-content-info .content-info-title .time-progress {
  display: flex;
  align-items: center;
}

.learning-path-module-head .module-head-content .head-content-info .content-info-title .time-progress .time {
  font-size: 14px;
  color: var(--text-color-3);

  margin-right: 20px;
}

.learning-path-module-head .module-head-content .head-content-info .content-info-title .time-progress .time img {
  width: 18px;
  height: 18px;
}

.module-progress {
  font-size: 12px;
  color: var(--text-color-3);

  display: flex;
  align-items: center;
  gap: 10px;
}

.module-progress .progress-bar {
  display: block;
  width: 150px;
  height: 6px;
  background-color: var(--border-color-1);

}

.module-progress .progress-bar span {
  display: block;
  height: 100%;
  background-color: var(--background-color-1);

}

.learning-path-module-head .module-head-content .head-content-info .content-info-desc {
  font-size: 14px;
  color: var(--text-color-3);

}

.learning-path-module-head .module-head-content .head-content-info .content-info-desc span {
  display: inline-block;
}

.learning-path-module-head .module-head-content .head-content-info .content-info-desc span:nth-child(1) {
  margin-right: 10px;
  padding-right: 10px;
  border-right: 1px solid #595A5C;
}

.learning-path-module-head .module-head-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 25px;
  height: 25px;
  background-color: var(--background-color-1);

}

.learning-path-module-head .module-head-btn img {
  width: 8px;
}

.learning-path-module-body {
  padding: 30px 20px;
  border: 1px solid var(--border-color-2);
  border-top: 0;
  background-color: var(--background-color-2);

  display: none;
}

.learning-path-module-body ul {
  position: relative;
  padding: 0;
  padding-left: 55px;
  list-style: none;
  margin: 0;
}

.learning-path-module-body ul::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 40px;
  height: 100%;
  background-color: var(--background-color-10);

}

.learning-path-module-body ul li {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.learning-path-module-body ul li:not(:last-child) {
  margin-bottom: 30px;
}

.learning-path-module-body ul li::before {
  content: '';
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: -40px;
  width: 10px;
  height: 10px;
  outline: 3px solid transparent;
  border-radius: 100%;
  background-color: #9E9E9E;
  z-index: 3;
}

.learning-path-module-body ul li.in-progress::before {
  background-color: var(--background-color-1);

  outline-color: #fff;
  box-shadow: 2px 2px 4px 0px #00000024;
}

.learning-path-module-body ul li:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 50%;
  left: -35px;
  width: 1px;
  height: calc(100% + 30px);
  background-color: var(--border-color-1);

  z-index: 2;
}

.learning-path-module-body ul li .text-progress {
  width: 100%;
  max-width: 600px;
  display: flex;
  justify-content: space-between;
}

.learning-path-module-body ul li .text-progress h3 {
  font-size: 18px;
  color: var(--text-color-2);

  font-family: "URW DIN Arabic Demi";
  margin: 0;
}

.learning-path-module-body ul li .action a {
  display: inline-block;
  border: 1px solid var(--background-color-1);
  color: var(--background-color-1);

  font-size: 16px;
  width: 180px;
  height: 45px;
  text-align: center;
  line-height: 45px;
  white-space: nowrap;
  margin-left: 20px;
  font-family: "URW DIN Arabic Demi";
}

.learning-path-module-body ul li.in-progress .action a {
  background-color: var(--background-color-1);
  color: #fff;

}

/* Learning Path Modules End */

/* Assessment Attempt */
.assessment-attempt-container {
  min-height: 100vh;
  background-color: var(--background-color-4);

}

.assessment-attempt-container .assessment-attempt-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 40px;
  color: #fff;
  font-size: 14px;
  background-color: var(--background-color-1);

}

.assessment-attempt-container .assessment-attempt-head div {
  font-weight: 400;
}

.assessment-attempt-container .assessment-attempt-head span {
  color: #ABC5BD;
}

.assessment-attempt-container .assessment-attempt-head .timer {
  display: flex;
  align-items: center;
}

.assessment-attempt-container .assessment-attempt-head .timer .time {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 2px 10px;
  border: 1px solid #ABC5BD;
  color: #fff;
  font-family: "URW DIN Arabic Demi";
  margin-left: 10px;
  font-size: 16px;
}

.assessment-attempt-container .assessment-attempt-body {
  padding: 40px 15px;
}

.assessment-attempt-container .assessment-attempt-body .assessment-attempt-body-inner {
  max-width: 1200px;
  margin: auto;
}

.assessment-attempt-container .assessment-attempt-body .assessment-attempt-progress {
  margin-bottom: 40px;
}

.assessment-attempt-container .assessment-attempt-body .assessment-attempt-progress .assessment-attempt-progress-count {
  color: #ABC5BD;
  font-size: 16px;
  font-family: "URW DIN Arabic Demi";
  margin-bottom: 10px;
}

.assessment-attempt-container .assessment-attempt-body .assessment-attempt-progress .assessment-attempt-progress-count span {
  font-size: 22px;
  color: var(--text-color-3);

  font-family: "URW DIN Arabic Demi";
}

.assessment-attempt-container .assessment-attempt-body .assessment-attempt-progress .assessment-attempt-progressbar {
  width: 100%;
  height: 6px;
  background-color: var(--border-color-1);

}

.assessment-attempt-container .assessment-attempt-body .assessment-attempt-progress .assessment-attempt-progressbar div {
  height: 100%;
  background-color: var(--background-color-1);

}

.assessment-details {
  margin-bottom: 40px;
}

.assessment-details .page-title {
  margin-bottom: 10px;
}

.assessment-details p {
  font-size: 16px;
  color: var(--text-color-3);

  font-weight: 400;
}

.assessment-details p span {
  font-weight: 400;
  color: var(--background-color-1);

}

.assessment-details hr {
  margin: 0;
  background-color: #D6D6D6;
  margin-bottom: 8px;
}

.assessment-question {
  padding: 0 10px;
}

.assessment-question .assessment-question-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 20px;
}

.assessment-question .assessment-question-head .assessment-question-head-text span {
  color: var(--background-color-1);

  font-size: 14px;
  margin-bottom: 5px;
  display: inline-block;
}

.assessment-question .assessment-question-head .assessment-question-head-text .primary-title {
  margin-bottom: 0;
  font-size: 20px;
  font-family: "URW DIN Arabic Demi"
}

.assessment-question .assessment-question-head .points {
  font-size: 14px;
  color: var(--text-color-3);

  display: flex;
  align-items: center;
  gap: 5px;
}

.assessment-question .assessment-question-head .points img {
  width: 18px;
}

.radio-options {
  padding: 10px;
  border: 1px solid var(--border-color-1);

}

.radio-options label {
  position: relative;
  display: flex;
  align-items: center;
  padding: 8px;
  cursor: pointer;
  background-color: transparent;
}

.radio-options label:not(:last-child) {
  margin-bottom: 8px;
}

.radio-options label input {
  display: none;
}

.radio-options label .bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
  border: 2px solid transparent;
  z-index: 0;
}

.radio-options label:hover .bg {
  background-color: var(--background-color-9);

}

.radio-options label .radio {
  position: relative;
  display: block;
  width: 14px;
  height: 14px;
  border-radius: 100%;
  border: 1px solid #595A5C;
  margin-right: 10px;
  z-index: 1;
}

.radio-options label h4 {
  font-size: 16px;
  color: var(--text-color-3);

  margin: 0;
  user-select: none;
  font-weight: 400;
  z-index: 1;
}

.radio-options label input:checked+.radio::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 8px;
  height: 8px;
  border-radius: 100%;
  background-color: var(--background-color-1);

}

.radio-options label input:checked+.radio+.bg {
  background-color: var(--background-color-9);
  border-color: var(--background-color-1);

}

.image-option input {
  display: none;
}

.image-option .image-option-box {
  padding: 20px;
  text-align: center;
  border: 1px dashed var(--border-color-1);
}

.image-option .image-option-box.dragover {
  border-style: solid;
}

.image-option .image-option-box img {
  width: 40px;
  margin-bottom: 10px;
}

.image-option .image-option-box p {
  font-size: 16px;
  color: var(--text-color-3);

  font-weight: 400;
  margin: 0;
}

.image-option .image-option-box p label {
  color: var(--background-color-1);
  font-weight: 500;
  border-bottom: 1px solid var(--background-color-1);

  cursor: pointer;
}

.image-option .image-option-preview {
  margin-top: 15px;
}

.image-option .image-option-preview .image-option-preview-item:not(:last-child) {
  margin-top: 15px;
}

.image-option .image-option-preview .image-option-preview-item {
  background-color: var(--background-color-2);
  border: 1px solid var(--border-color-1);
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.image-option .image-option-preview .image-option-preview-item .name {
  display: flex;
  align-items: center;
  gap: 10px;
  max-width: 50%;
}

.image-option .image-option-preview .image-option-preview-item .name img {
  min-width: 14px;
  width: 14px;
}

.image-option .image-option-preview .image-option-preview-item .name h5 {
  margin: 0;
  font-size: 14px;
  color: var(--text-color-3);
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.image-option .image-option-preview .image-option-preview-item .actions {
  display: flex;
  align-items: center;
  gap: 15px;
}

.image-option .image-option-preview .image-option-preview-item span {
  font-size: 14px;
  color: var(--text-color-3);
}

.image-option .image-option-preview .image-option-preview-item a {
  color: var(--background-color-1);
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.image-option .image-option-preview .image-option-preview-item a img {
  width: 16px;
  height: 16px;
}

.assessment-attempt-actions {
  display: flex;
  justify-content: space-between;
  margin-top: 50px;
}

.assessment-attempt-actions a,
.assessment-attempt-actions a:hover {
  padding: 10px 24px;
}

/* Assessment Attempt */

/*Survey Attempt*/
.survey-page {
  min-height: 100vh;
  background-color: var(--background-color-2);

}

.survey-page .survey-hreader img {
  width: 100%;
}

.survey-page .survey-container {
  max-width: 1200px;
  padding: 0 15px;
  margin: auto;
  margin-top: -35px;
  padding-bottom: 40px;
}

.survey-page .survey-container .survey-question {
  position: relative;
  z-index: 2;
}

.survey-page .survey-container .survey-question .survey-question-head {
  background-color: var(--background-color-1);
  border: 1px solid var(--border-color-1);

  color: #fff;
  font-size: 24px;
  font-weight: 700;
  padding: 10px 20px;
}

/*Survey Attempt End*/

/* Notification Page */
.notifications-list .notifications-item {
  padding: 15px;
  border: 1px solid var(--border-color-1);
  background-color: var(--background-color-2);

  display: flex;
  align-items: center;
  justify-content: space-between;
}

.notifications-list .notifications-item:not(:last-child) {
  margin-bottom: 10px;
}

.notifications-list .notifications-item.new {
  background-color: var(--background-color-13);

}

.notifications-list .notifications-item.new .notifications-item-action span {
  background-color: var(--background-color-7);

}

.notifications-list .notifications-item .notifications-item-text {
  display: flex;
  max-width: calc(100% - 100px);
}

.notifications-list .notifications-item .notifications-item-text .notifications-item-icon {
  min-width: 38px;
  min-height: 38px;
  width: 38px;
  height: 38px;
  margin-right: 10px;
}

.notifications-list .notifications-item .notifications-item-text .notifications-item-icon img {
  width: 100%;
}

.notifications-list .notifications-item .notifications-item-text h3 {
  margin: 0;
  color: var(--text-color-2);

  font-size: 16px;
  font-family: "URW DIN Arabic Demi";
  margin-bottom: 5px;
}

.notifications-list .notifications-item .notifications-item-text p {
  margin: 0;
  color: var(--text-color-3);

  font-size: 14px;
  font-weight: 400;
}

.notifications-list .notifications-item .notifications-item-action {
  display: flex;
  align-items: center;
  width: 90px;
}

.notifications-list .notifications-item .notifications-item-action a {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 14px;
  padding: 4px 8px;
  border: 1px solid var(--background-color-1);
  color: var(--background-color-1);

}

.notifications-list .notifications-item .notifications-item-action a img {
  width: 14px;
}

.notifications-list .notifications-item .notifications-item-action span {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 100%;
  margin-left: 10px;
}

/* Notification Page End */

/* Gamification */
.badges-cards {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -10px;
}

.badges-cards .badges-card-wrapper {
  width: 20%;
  padding: 0 10px;
}

.badges-cards .badges-card {
  text-align: center;
  padding: 15px;
  background-color: var(--background-color-2);
  border: 1px solid var(--border-color-2);
}

.badges-cards .badges-card .badge-icon-sm {
  text-align: left;
}

.badges-cards .badges-card .badge-icon-sm img {
  width: 20px;
}

.badges-cards .badges-card .badge-icon {
  margin-bottom: 10px;
}

.badges-cards .badges-card .badge-icon img {
  width: 64px;
}

.badges-cards .badges-card h4 {
  font-size: 16px;
  color: var(--text-color-2);

  margin-bottom: 10px;
  font-family: "URW DIN Arabic Demi";
}

.badges-cards .badges-card p {
  font-size: 12px;
  color: var(--text-color-3);

}

.badges-cards .badges-card .progress-bar {
  height: 4px;
  background-color: var(--border-color-1);

  margin-bottom: 10px;
  border-radius: 8px;
  overflow: hidden;
}

.badges-cards .badges-card .progress-bar div {
  height: 100%;
  background-color: var(--background-color-1);
}

.badges-cards .badges-card span {
  display: flex;
  gap: 5px;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  text-transform: uppercase;
  color: var(--background-color-1);
  font-family: "URW DIN Arabic Demi";
}

.archieved-level-wrapper {
  margin-top: 30px;
}

.levels-card {
  border: 1px solid var(--border-color-2);
  background: var(--background-color-2);
  display: flex;
  align-items: center;
  height: 69px;
  margin-bottom: 20px;
}

.levels-card .level-status {
  border-right: 1px solid var(--border-color-2);
  background: var(--background-color-3);
  display: flex;
  align-items: center;
  width: 100%;
  max-width: 249px;
  position: relative;
  height: 100%;
}

.levels-card .level-status::after {
  content: "";
  position: absolute;
  right: 0;
  display: block;
  width: 7px;
  height: 40px;
  top: 50%;
  transform: translateY(-50%);
  background: #317863;
}

.levels-card .level-status .level-status-icon {
  width: 100%;
  height: 100%;
  max-width: 42px;
  max-height: 42px;
  border: 1px solid var(--background-color-8);
  background: var(--background-color-8);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 15px;
}

.levels-card .level-status div span:nth-child(1) {
  color: var(--text-color-2);
  font-family: "URW DIN Arabic Demi";
  font-size: 18px;
  font-weight: 600;
  line-height: normal;
  display: block;
}

.levels-card .level-status div span:nth-child(2) {
  color: var(--text-color-3);
  font-size: 14px;
  font-weight: 400;
  line-height: normal;
  display: block;
}

.levels-card .levels-description {
  margin-left: 30px;
  margin-right: 20px;
  width: 100%;
  display: flex;
  justify-content: space-between;
}

.levels-card .levels-description .level-title {
  display: flex;
  align-items: center;
  gap: 8px;
}

.levels-card .levels-description .level-title div {
  color: var(--text-color-2);
  font-family: "URW DIN Arabic Demi";
  font-size: 16px;
  font-weight: 600;
  line-height: normal;
}

.levels-card .levels-description .level-info {
  display: flex;
  align-items: center;
  gap: 30px;
}

.levels-card .levels-description .level-info div {
  display: flex;
  align-items: center;
  gap: 5px;
}

.levels-card .levels-description .level-info div span img {
  min-width: max-content;
}

.levels-card .levels-description .level-info div div {
  color: var(--text-color-3);
  font-family: "URW DIN Arabic Demi";
  font-size: 14px;
  font-weight: 500;
  line-height: normal;
}

.levels-card .levels-description .level-status-info {
  padding: 4px 12px;
  background-color: var(--background-color-9);
}

.levels-card .levels-description .level-status-info span {
  background: var(--background-color-1);
  height: 14px;
  width: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100%;
}

.levels-card .levels-description .level-status-info div {
  color: #2c6e59 !important;
}

.levels-card .levels-description div span {
  display: flex;
  align-items: center;
  justify-content: center;
}

@media screen and (max-width: 900px) {
  .levels-card .levels-description {
    flex-direction: column;
    gap: 3px;
  }
}

@media screen and (max-width: 768px) {
  .levels-card .level-status::after {
    display: none;
  }

  .levels-card {
    flex-direction: column;
    height: auto;
  }

  .levels-card .level-status {
    max-width: 100%;
    border: none;
    border-bottom: 1px solid #ccdcd7;
  }

  .levels-card .levels-description {
    padding: 16px;
  }

  .levels-card .level-status .level-status-icon {
    min-height: 42px;
  }

  .levels-card .level-status .level-status-icon {
    margin: 12px;
  }

  .levels-card .levels-description {
    padding: 16px 12px;
  }
}

@media screen and (max-width: 500px) {
  .levels-card .levels-description .level-info {
    gap: 18px 18px;
    flex-wrap: wrap;
  }

  .levels-card .levels-description {
    gap: 18px;
  }
}

/* Gamification End */

/* Course Detail */
.course-detail-content {
  padding: 20px;
  background-color: var(--background-color-2);
  border: 1px solid var(--border-color-2);

  margin-bottom: 20px;
}

.course-detail-content .page-title {
  margin-bottom: 20px;
}

.course-detail-content .course-detail-content-video {
  position: relative;
  height: 300px;
  box-shadow: 0px 4px 50px 0px #0000001A;
  margin-bottom: 20px;
}

.course-detail-content .course-detail-content-video img,
.course-detail-content .course-detail-content-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.course-detail-content .course-detail-tabs .nav-pills {
  border-bottom: 1px solid var(--border-color-1);
  margin-bottom: 0 !important;
}

.course-detail-content .course-detail-tabs .tab-content>.tab-pane {
  padding: 20px 0 0 0;
}

.course-detail-content .course-detail-tabs .nav-pills .nav-link {
  padding: 10px 0;
  color: #C1C1C3;
  font-size: 16px;
  font-family: "URW DIN Arabic Demi";
}

.course-detail-content .course-detail-tabs .nav-pills .nav-item:not(:last-child) .nav-link {
  margin-right: 15px;
}

.course-detail-content .course-detail-tabs .nav-pills .nav-link.active,
.course-detail-content .course-detail-tabs .nav-pills .show>.nav-link {
  color: var(--background-color-1);
  border-bottom: 2px solid var(--background-color-1);
  background: transparent;
  border-radius: 0;
}

.course-detail-content .course-detail-tabs .overview-tab h2 {
  font-size: 20px;
  color: var(--text-color-3);
  font-family: "URW DIN Arabic Demi";
  margin-bottom: 15px;
}

.course-detail-content .course-detail-tabs .overview-tab p {
  font-size: 14px;
  color: var(--text-color-3);
  margin-bottom: 15px;
}

.notes-tab .notes-tab-editer {
  border-bottom: 1px solid var(--border-color-1);
  display: none;
}

.notes-tab .notes-tab-editer .notes-tab-editer-action {
  padding-bottom: 10px;
  justify-content: flex-end;
  display: flex;
  gap: 10px;
}

.notes-tab .notes-tab-header {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-bottom: 5px;
}

.notes-tab .notes-tab-header .add-note {
  width: 70%;
  height: 40px;
  font-size: 12px;
  color: var(--text-color-3);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 15px;
  border: 1px solid var(--border-color-1);
  font-weight: 400;
  user-select: none;
  cursor: pointer;
}

.notes-tab .notes-tab-header .add-filter-notes {
  width: 30%;
  min-width: 120px;
  height: 40px;
  border: 1px solid var(--border-color-1);
}

.notes-tab .notes-tab-header .add-filter-notes select {
  width: 100%;
  height: 100%;
  border: 0;
  outline: 0;
  background-color: transparent;
  font-size: 12px;
  color: var(--text-color-3);
  padding: 0 10px;
  appearance: none;
  -webkit-appearance: none;
  background-image: url('../images/arrow-down-dark.svg');
  background-repeat: no-repeat;
  background-size: 16px 16px;
  background-position: calc(100% - 10px) 50%;
}

.notes-tab .notes-tab-body-placeholder {
  font-size: 14px;
  font-weight: 400;
  color: #A8A8A8;
  text-align: center;
  margin-top: 20px;
}

.notes-tab .notes-tab-note {
  display: flex;
  gap: 10px;
  padding: 10px 0;
}

.notes-tab .notes-tab-note .note-time {
  min-width: 40px;
  width: 40px;
  height: 40px;
  border-radius: 100%;
  background-color: var(--background-color-1);
  font-size: 12px;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
}

.notes-tab .notes-tab-note .note-text {
  flex: 1;
}

.notes-tab .notes-tab-note .note-text .note-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.notes-tab .notes-tab-note .note-text .note-title h2 {
  font-size: 16px;
  color: var(--text-color-2);
  margin-top: 10px;
  margin-bottom: 10px;
  font-weight: 600;
}

.notes-tab .notes-tab-note .note-text .note-title h2 span {
  color: #A8A8A8;
  font-size: 14px;
  font-weight: 400;
  display: inline-block;
  margin-left: 10px;
}

.notes-tab .notes-tab-note .note-text .note-title .note-title-action {
  display: flex;
  gap: 2px;
}

.notes-tab .notes-tab-note .note-text .note-title .note-title-action a {
  display: inline-block;
  padding: 1px 5px;
}

.notes-tab .notes-tab-note .note-text .note-title .note-title-action a img {
  width: 18px;
}

.notes-tab .notes-tab-note .note-text .note-desc p {
  font-size: 16px;
  line-height: 20px;
  font-weight: 400;
  color: var(--text-color-3);
}

.notes-tab .notes-tab-note .note-text textarea {
  width: 100%;
  border: 1px solid var(--border-color-1);
  outline: 0;
  padding: 10px;
  font-size: 14px;
  color: var(--text-color-3);
  background-color: var(--background-color-2);
}

.notes-tab.adding-note .notes-tab-header .add-note {
  opacity: 0.5;
  pointer-events: none;
}

.notes-tab.adding-note .notes-tab-editer {
  display: block;
}

.community-board .community-board-comments {
  margin-bottom: 40px;
  max-height: 500px;
  overflow: auto;
}

.community-board .community-board-comments .comment-card {
  position: relative;
  display: flex;
  gap: 10px;
}

.community-board .community-board-comments .comment-card .comment-card-img {
  min-width: 35px;
  width: 35px;
  height: 35px;
  border-radius: 100%;
  overflow: hidden;
  border: 1px solid #CCDCD7;
  display: flex;
  justify-content: center;
  align-items: center;
}

.community-board .community-board-comments .comment-card .comment-card-img .hide-line {
  display: none;
}

.community-board .community-board-comments .comment-card .comment-card-img img {
  width: 30px;
  height: 30px;
  border-radius: 100%;
}

.community-board .community-board-comments .comment-card .comment-card-text {
  flex: 1;
  padding-right: 10px;
}

.community-board .community-board-comments .comment-card .comment-card-text .comment-card-reply {
  padding-top: 30px;
}

.community-board .community-board-comments .comment-card .comment-card-text .comment-card-reply .comment-card:not(:last-child) {
  margin-bottom: 30px;
}

.community-board .community-board-comments .comment-card.has-reply>.comment-card-img::after {
  content: '';
  position: absolute;
  top: 38px;
  left: 16px;
  width: 1px;
  height: calc(100% - 38px);
  background-color: var(--border-color-1);
}

.community-board .community-board-comments .comment-card .comment-card-text .comment-card-reply .comment-card-img::before {
  content: '';
  position: absolute;
  top: 15px;
  left: -28px;
  width: 28px;
  height: 1px;
  background-color: var(--border-color-1);
}

.community-board .community-board-comments .comment-card .comment-card-text .comment-card-reply .comment-card:last-child .comment-card-img .hide-line {
  content: '';
  position: absolute;
  top: 16px;
  left: -35px;
  width: 20px;
  height: 100%;
  background-color: var(--background-color-2);
  display: block;
}

.community-board .community-board-comments .comment-card .comment-card-text>h2 {
  margin-top: 6px;
  font-size: 16px;
  color: var(--text-color-2);
  font-family: "URW DIN Arabic Demi";
}

.community-board .community-board-comments .comment-card .comment-card-text>h2 span {
  font-size: 12px;
  font-weight: 400;
  color: #A8A8A8;
  display: inline-block;
  margin-left: 5px;
}

.community-board .community-board-comments .comment-card .comment-card-text>p {
  font-size: 14px;
  color: var(--text-color-3);
  font-weight: 400;
  margin-bottom: 10px;
}

.community-board .community-board-comments .comment-card .comment-card-text>.reply-textarea {
  padding-right: 10px;
  margin-bottom: 10px;
}

.community-board .community-board-comments .comment-card .comment-card-text>.reply-textarea textarea {
  width: 100%;
  color: var(--text-color-3);
  background-color: var(--background-color-2);
  border: 1px solid var(--border-color-1);
  padding: 5px 10px;
  outline: 0;
  font-size: 14px;
  font-weight: 400;
}

.community-board .community-board-comments .comment-card .comment-card-text>.comment-card-reply-action {
  display: flex;
  gap: 10px;
}

.community-board .community-board-comments .comment-card .comment-card-text>.comment-card-action {
  display: flex;
  gap: 15px;
}

.community-board .community-board-comments .comment-card .comment-card-text>.comment-card-action a {
  font-size: 14px;
  color: var(--background-color-1);
  font-family: "URW DIN Arabic Demi";
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.community-board .community-board-comments .comment-card .comment-card-text>.comment-card-action a span {
  border-bottom: 1px solid var(--background-color-1);
}

.community-board-tab .community-board .community-board-add-comment {
  display: flex;
  align-items: center;
  gap: 10px;
}

.community-board-tab .community-board .community-board-add-comment .add-comment-avatar {
  min-width: 40px;
  width: 40px;
  height: 40px;
  border-radius: 100%;
  border: 1px solid #CCDCD7;
  display: flex;
  justify-content: center;
  align-items: center;
}

.community-board-tab .community-board .community-board-add-comment .add-comment-avatar img {
  width: 34px;
  height: 34px;
}

.community-board-tab .community-board .community-board-add-comment .add-comment-input {
  height: 40px;
  background-color: var(--background-color-11);
  flex: 1;
}

.community-board-tab .community-board .community-board-add-comment .add-comment-input input {
  width: 100%;
  height: 100%;
  background-color: transparent;
  border: 0;
  outline: 0;
  padding: 0 10px;
  color: #A8A8A8;
  font-weight: 400;
  font-size: 16px;
}

.community-board-tab .community-board .community-board-add-comment .add-comment-input input::placeholder {
  color: #A8A8A8;
}

.community-board-tab .community-board .community-board-add-comment .add-comment-btn {
  min-width: 40px;
  width: 40px;
  height: 40px;
  background-color: var(--background-color-1);
  display: inline-flex;
  justify-content: center;
  align-items: center;
}

.attendance-tab .attendance-tab-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.attendance-tab .attendance-tab-head .attendance-month-filter {
  display: flex;
  align-items: center;
  gap: 20px;
}

.attendance-tab .attendance-tab-head .attendance-month-filter .attendance-month-year span {
  font-size: 20px;
  font-family: "URW DIN Arabic Demi";
  color: var(--text-color-2);
}

.attendance-tab .attendance-tab-head .attendance-month-filter .attendance-arrows {
  display: flex;
  gap: 10px;
}

.attendance-tab .attendance-tab-head .attendance-month-filter .attendance-arrows a {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 24px;
  height: 24px;
  border: 1px solid var(--border-color-1);
}

.attendance-tab .attendance-tab-head .attendance-week select {
  width: 120px;
  border: 1px solid var(--border-color-1);
  background-color: var(--background-color-2);
  height: 35px;
  padding: 0 10px;
  outline: 0;
  font-size: 14px;
  color: var(--text-color-3);
  appearance: none;
  -webkit-appearance: none;
  background-image: url(../images/arrow-down-dark.svg);
  background-repeat: no-repeat;
  background-size: 16px 16px;
  background-position: calc(100% - 10px) 50%;
}

.attendance-card {
  display: flex;
  gap: 10px;
  padding: 10px;
  border: 1px solid var(--border-color-1);
  margin-bottom: 20px;
}

.attendance-card .attendance-card-date {
  width: 35px;
  height: 40px;
  border: 1px solid var(--border-color-3);
  background-color: var(--background-color-3);
  text-align: center;
  line-height: 14px;
  display: flex;
  justify-content: center;
  flex-direction: column;
}

.attendance-card .attendance-card-date span:nth-child(1) {
  font-size: 14px;
  color: var(--text-color-3);
  font-family: "URW DIN Arabic Demi";
}

.attendance-card .attendance-card-date span:nth-child(2) {
  font-size: 11px;
  color: var(--text-color-3);
}

.attendance-card .attendance-card-text {
  display: flex;
  justify-content: center;
  flex-direction: column;
}

.attendance-card .attendance-card-text h4 {
  margin: 0;
  margin-bottom: 2px;
  font-size: 14px;
  color: var(--text-color-2);
  font-family: "URW DIN Arabic Demi";
}

.attendance-card.present .attendance-card-text h4 {
  color: var(--background-color-1);
}

.attendance-card.present .attendance-card-date {
  border-color: var(--background-color-1);
}

.attendance-card .attendance-card-text p {
  font-size: 11px;
  color: var(--text-color-3);
  margin: 0;
}

.course-detail-modules {
  background-color: var(--background-color-2);
  border: 1px solid var(--border-color-2);

}

.course-detail-modules-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #287D5A;
  color: #fff;
  padding: 15px;
}

.course-detail-modules-head>div:nth-child(2) {
  display: flex;
  gap: 6px;
}

.course-detail-modules-head h4 {
  font-size: 20px;
  font-family: "URW DIN Arabic Demi";
  margin: 0;
}

.course-detail-modules-head span {
  font-size: 14px;
  font-weight: 400;
  display: inline-flex;
  gap: 4px;
  align-items: center;
}

.course-detail-modules-head span img {
  width: 18px;
  height: 18px;
}

.course-detail-modules-body {
  padding: 15px;
}

.course-detail-modules-body .course-detail-modules-module:not(:last-child) {
  margin-bottom: 20px;
}

.course-detail-modules-body .course-detail-modules-module .course-detail-modules-module-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: var(--background-color-13);
  border: 1px solid var(--border-color-2);
  padding: 14px;
}

.course-detail-modules-body .module-text {
  display: flex;
  gap: 10px;
}

.course-detail-modules-body .module-text .module-count {
  min-width: 40px;
  width: 40px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 2px solid var(--background-color-1);
  color: var(--background-color-1);
  font-size: 20px;
  font-family: "URW DIN Arabic Demi";
}

.course-detail-modules-body .module-text h3 {
  margin: 0;
  font-size: 20px;
  color: var(--background-color-1);
  font-family: "URW DIN Arabic Demi";
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.course-detail-modules-body .module-text p {
  margin: 0;
  font-size: 12px;
  font-weight: 400;
  color: var(--text-color-3);
  margin-top: 5px;
  line-height: 0;
  display: flex;
  gap: 7px;
}

.course-detail-modules-body .module-text p span {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.course-detail-modules-body img {
  min-width: 18px;
  width: 18px;
  height: 18px;
}

.course-detail-modules-module .course-detail-modules-module-body {
  border: 1px solid var(--border-color-2);
  border-top: 0;
}

.course-detail-modules-module .course-detail-modules-module-body .module-items {
  padding: 14px;
  max-height: 500px;
  overflow: auto;
}

.course-detail-modules-module .course-detail-modules-module-body .module-item:not(:last-child) {
  position: relative;
  margin-bottom: 20px;
}

.course-detail-modules-module .course-detail-modules-module-body .module-item:not(:last-child) .module-text .module-count::before {
  content: '';
  position: absolute;
  top: 43px;
  left: 20px;
  width: 1px;
  height: calc(100% - 27px);
  background-color: var(--border-color-1);

}

.course-detail-modules-module .course-detail-modules-module-body .module-item .module-text .module-count {
  height: 40px;
}

.course-detail-modules-module .course-detail-modules-module-body .module-item .module-text h3 {
  font-size: 16px;
  color: var(--text-color-2);
  font-family: "URW DIN Arabic Demi";
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.course-detail-modules-body .course-detail-modules-module.complete .course-detail-modules-module-head .module-text .module-count {
  background-color: var(--background-color-1);
  color: #fff;
}

.course-detail-modules-body .course-detail-modules-module.disabled {
  opacity: 0.5;
  pointer-events: none;
  user-select: none;
}

.course-detail-modules-module .course-detail-modules-module-body .module-item.disabled {
  opacity: 0.5;
  pointer-events: none;
  user-select: none;
}

.course-detail-modules-module .course-detail-modules-module-body .module-item.complete .module-text .module-count {
  background-color: var(--background-color-1);
  color: #fff;
}

.course-detail-modules .course-detail-modules-action {
  padding: 0 14px 14px 14px;
}

.course-detail-modules .course-detail-modules-action .primary-link-bg {
  display: flex;
  justify-content: center;
  padding: 10px;
}

/* Course Detail End */

/* Dashboard Vertical Tabs  */
#second-toggle-div {
  display: none;
}

.dashboard-tabs-vertical {
  border-top: 1px solid var(--border-color-1);
}

.dashboard-tabs-wrapper {
  display: flex;
  align-items: flex-start;
}

.dashboard-tabs-vertical div .nav-pills {
  padding-right: 22px;
  padding-top: 25px;
  gap: 10px;
}

.dashboard-tabs-vertical div .tab-content {
  padding: 25px 0 25px 40px;
  border-left: 1px solid var(--border-color-1);
}

.dashboard-tabs-vertical div .tab-content .form-label {
  color: var(--text-color-2);
}

.dashboard-tabs-vertical div .tab-content .tab-wrapper {
  display: flex;
  justify-content: space-between;
  flex-direction: column;
}

.dashboard-tabs-vertical .nav-pills .nav-link {
  width: 184px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 12px;
  text-align: left;
  border: 1px solid rgba(0, 0, 0, 0);
  padding: 8px;
}

.dashboard-tabs-vertical .nav-pills .nav-link span {
  color: var(--text-color-2);
  font-family: "URW DIN Arabic Demi";
  font-size: 14px;
  line-height: normal;
}

.dashboard-tabs-vertical .nav-pills .nav-link img {
  filter: unset;
}

.dashboard-tabs-vertical .nav-pills .nav-link.active {
  border: 1px solid var(--border-color-1);
  background: var(--background-color-10);
  border-radius: 0;
}

.dashboard-tabs-vertical .nav-pills .nav-link.active span {
  color: var(--background-color-1);
}

.dashboard-tabs-vertical .nav-pills .nav-link.active img {
  filter: invert(38%) sepia(15%) saturate(1236%) hue-rotate(110deg) brightness(94%) contrast(96%);
}

.dashboard-tabs-vertical div .tab-content .primary-title-demi {
  margin-bottom: 29px;
}

.dashboard-tabs-vertical div .tab-content .user-profile-info {
  display: flex;
  gap: 27px;
  align-items: center;
  margin-bottom: 19px;
}

.dashboard-tabs-vertical div .tab-content .profile-user-avatar {
  padding: 7px;
  border: 3px solid var(--border-color-3);
  border-radius: 100%;
  position: relative;
}

.dashboard-tabs-vertical div .tab-content .profile-user-avatar .user-profile-img {
  width: 98px;
  height: 98px;
  border-radius: 100%;
  object-fit: cover;
}

.dashboard-tabs-vertical div .tab-content .profile-user-avatar .profile-edit-icon {
  background-color: var(--background-color-1);
  border: 3px solid var(--border-color-4);

  position: absolute;
  right: 0;
  bottom: 0;
  border-radius: 100%;
  width: 35px;
  height: 35px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.dashboard-tabs-vertical div .tab-content .profile-user-avatar .profile-edit-icon img {
  width: 20px;
  height: 20px;
}

.dashboard-tabs-vertical div .tab-content .user-profile-avatar-text span:nth-child(1) {
  color: var(--background-color-1);
  font-family: "URW DIN Arabic Demi";
  font-size: 22px;
  line-height: normal;
  display: block;
  margin-bottom: 6px;
}

.dashboard-tabs-vertical div .tab-content .user-profile-avatar-text span:nth-child(2) {
  color: var(--text-color-3);
  font-family: "URW DIN Arabic";
  font-size: 14px;
  font-style: normal;
  font-weight: 400 !important;
  line-height: normal;
  display: block;
}

.dashboard-tabs-vertical div .tab-content form {
  margin-top: 29px;
}

.dashboard-tabs-vertical div .tab-content .form-buttons {
  display: flex;
  gap: 10px;
  margin-top: 30px;
}

.dashboard-tabs-vertical div .tab-content .add-cards-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 29px;
}

.dashboard-tabs-vertical div .tab-content .add-cards-wrapper div {
  margin-bottom: 0px;
}

.dashboard-tabs-vertical div .tab-content .notification-item {
  background-color: var(--background-color-2);
  border: 1px solid var(--border-color-2);

  padding: 18px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 18px;
}

.dashboard-tabs-vertical div .tab-content .notification-item .notification-item-number {
  border: 1px solid var(--background-color-1);
  background: var(--background-color-1);
  color: #fff;
  font-family: "URW DIN Arabic Demi";
  font-size: 16px;
  line-height: normal;
  min-width: 42px;
  width: 42px;
  height: 42px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.dashboard-tabs-vertical div .tab-content .notification-item .notification-item-info {
  display: flex;
  align-items: flex-start;
  gap: 15px;
}

.dashboard-tabs-vertical div .tab-content .notification-item .notification-item-info .notification-item-text {
  display: flex;
  flex-direction: column;
}

.dashboard-tabs-vertical div .tab-content .notification-item .notification-item-info .notification-item-text span:nth-child(1) {
  color: var(--text-color-2);
  font-family: "URW DIN Arabic Demi";
  font-size: 18px;
  line-height: normal;
}

.dashboard-tabs-vertical div .tab-content .notification-item .notification-item-info .notification-item-text span:nth-child(2) {
  color: var(--text-color-3);
  font-family: "URW DIN Arabic";
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
}

.dashboard-tabs-vertical div .tab-content .credit-card-item {
  padding: 12px;
  border: 1px solid var(--border-color-1);
  background: var(--background-color-2);
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
  color: var(--text-color-3);
}

.dashboard-tabs-vertical div .tab-content .credit-card-item .credit-card-info {
  display: flex;
  gap: 20px;
}

.dashboard-tabs-vertical div .tab-content .credit-card-item .credit-card-info img {
  width: 30px;
}

.dashboard-tabs-vertical div .tab-content .credit-card-item .credit-card-dropdown-wrapper .dropdown-toggle::after {
  margin-left: 0px;
  border: none;
}

.dashboard-tabs-vertical div .tab-content .credit-card-item .credit-card-dropdown-wrapper .dropdown-menu {
  padding: 0px;
  border-radius: 0px;
  min-width: 126px !important;
  inset: 0px 0px auto auto !important;
  border: 1px solid var(--border-color-1);
  background-color: var(--background-color-2);
}

.dashboard-tabs-vertical div .tab-content .credit-card-item .credit-card-dropdown-wrapper .card-item-dropdown-info a {
  display: block;
  padding: 10px 0px 10px 12px;
  display: flex;
  gap: 10px;
  align-items: center;
  font-size: 14px;
  color: var(--text-color-3);
}

.dashboard-tabs-vertical div .tab-content .credit-card-item .credit-card-dropdown-wrapper .card-item-dropdown-info a:not(:last-child) {
  border-bottom: 1px solid var(--border-color-1);
}

.dashboard-tabs-vertical div .tab-content .warning-text,
.dashboard-tabs-vertical div .tab-content .form-check-inline {
  display: flex;
  gap: 6px;
  align-items: center;
  color: var(--text-color-3);
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}

.dashboard-tabs-vertical div .tab-content .warning-text {
  margin-bottom: 10px;
}

.card-radio-button {
  display: flex;
  align-items: center;
  gap: 10px;
}

.btn-card-option {
  border: 1px solid var(--border-color-1);
  border-radius: 0;
  background: var(--background-color-2);
  display: flex;
  width: 58px;
  height: 46px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.btn-check+.btn.btn-card-option:hover {
  border: 1px solid var(--border-color-5);
  border-radius: 0;
  background: #fff;
}

.btn-check:checked+.btn,
.btn-check:checked:hover+.btn,
.btn.active,
.btn.show,
.btn:first-child:active,
:not(.btn-check)+.btn:active {
  background: #fff;
  border: 1px solid var(--border-color-5);
}

@media screen and (max-width: 768px) {
  .dashboard-tabs-vertical .nav-pills .nav-link {
    width: 58px;
  }

  .dashboard-tabs-vertical .nav-pills .nav-link span {
    display: none;
  }

  .dashboard-tabs-vertical div .nav-pills {
    padding-right: 12px;
    padding-top: 26px;
  }

  .dashboard-tabs-vertical div .tab-content {
    padding-top: 26px;
    padding-left: 12px;
  }
}

@media screen and (max-width: 500px) {
  .dashboard-tabs-vertical div .tab-content {
    border: none;
    padding: 25px 0;
  }

  .dashboard-tabs-wrapper {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
  }

  .dashboard-tabs-vertical div .nav-pills {
    height: auto;
  }

  .dashboard-tabs-vertical .dashboard-tabs-wrapper .flex-column {
    flex-direction: row !important;
    width: 100%;
  }

  .dashboard-tabs-vertical div .nav-pills {
    padding-right: 0;
    padding-top: 16px;
    padding-bottom: 16px;
  }

  .dashboard-tabs-vertical div .nav-pills {
    gap: unset;
    border-bottom: 1px solid #d6d6d6;
  }

  .dashboard-tabs-vertical div .tab-content {
    padding-left: 0px;
  }

  .dashboard-tabs-vertical div .tab-content .notification-item .notification-item-info {
    flex-direction: column;
    align-items: flex-start;
  }

  .dashboard-tabs-vertical div .tab-content .notification-item .notification-item-switch {
    align-self: flex-start;
  }

  .dashboard-tabs-vertical div .tab-content .credit-card-item .credit-card-info {
    flex-direction: column;
    gap: 3px;
  }

  .dashboard-tabs-vertical div .tab-content .credit-card-item .credit-card-info img {
    max-width: 50px;
  }

  .dashboard-tabs-vertical div .tab-content .warning-text,
  .dashboard-tabs-vertical div .tab-content .form-check-inline {
    align-items: flex-start;
  }
}

/* Dashboard Vertical Tabs End */
/*Form Fields Start*/
.form-switch .form-check-input {
  background-color: #ABC5BD;
  border-color: #ABC5BD;
  padding: 10px;
  width: 39px !important;
}

.form-check-input:checked {
  background-color: var(--background-color-1);
  border-color: var(--background-color-1);
}

.form-check-input:focus {
  box-shadow: none;
  border-color: var(--background-color-1);

}

.form-switch .form-check-input:focus {
  border-color: var(--background-color-1);
}

.form-switch .form-check-input,
.form-switch .form-check-input:focus {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%23fff'/%3e%3c/svg%3e") !important;
  background-size: 17px;
  box-shadow: none;
}

.custom-form-field {
  margin-bottom: 20px;
}

.custom-form-field label {
  color: var(--text-color-2);
  font-family: "URW DIN Arabic Demi";
  font-size: 16px;
  line-height: 24px;
  /* 150% */
}

.custom-form-field input,
.custom-form-field textarea {
  background-color: var(--background-color-2);
  border: 1px solid var(--border-color-2);

  border-radius: 0;
  color: var(--text-color-3);
  font-family: "URW DIN Arabic";
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  padding: 12px 14px;
}

.form-control:focus {
  background-color: var(--background-color-2);
}

.custom-form-field .form-control:focus {
  box-shadow: none;
  border-color: var(--border-color-2);
  color: var(--text-color-3);
}

.custom-form-field .form-control:disabled {
  background-color: var(--background-color-12);
  opacity: 1;
  color: var(--text-color-4);
}

.custom-form-field .form-input-container {
  position: relative;
}

.custom-form-field .form-input-container input[type="date"]::-webkit-inner-spin-button,
.custom-form-field .form-input-container input[type="date"]::-webkit-calendar-picker-indicator {
  /* display: none; */
  opacity: 0;
  -webkit-appearance: none;
}

.custom-form-field .form-input-container img {
  position: absolute;
  top: 50%;
  right: 14px;
  width: 20px;
  transform: translateY(-50%);
  pointer-events: none;
}

/*Form Fields End*/

/*Payment Receipt Start*/
.page-title-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
}

.page-title-wrapper h2 {
  margin-bottom: 0px;
}

.payment-receipt-wrapper {
  background-image: url('../images/zig-zag.svg');
  background-repeat: no-repeat;
  background-size: calc(100% + 4px) auto;
  background-position: bottom;
  padding-bottom: 25px;
  border-top: 2px solid var(--border-color-2);
  border-right: 2px solid var(--border-color-2);
  border-left: 2px solid var(--border-color-2);
}

.payment-receipt-wrapper .payment-receipt-header {
  background-color: var(--background-color-10);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px;
  border-bottom: 1px solid var(--border-color-2);
}

.payment-receipt-wrapper .payment-receipt-header div {
  display: flex;
  flex-direction: column;
}

.payment-receipt-wrapper .payment-receipt-header div span:nth-child(1) {
  color: var(--background-color-1);
  font-family: "URW DIN Arabic Demi";
  font-size: 22px;
  font-weight: 600;
  line-height: 22px;
  /* 100% */
  margin-bottom: 13px;
}

.payment-receipt-wrapper .payment-receipt-header div span:nth-child(2) {
  color: var(--text-color-3);
  font-family: "URW DIN Arabic";
  font-size: 14px;
  font-weight: 400;
  line-height: normal;
}

.payment-receipt-wrapper .payment-receipt-item .payment-receipt-item-details {
  padding: 18px;
}

.payment-receipt-wrapper .payment-receipt-item .payment-receipt-item-info {
  display: flex;
  justify-content: space-between;
}

.payment-receipt-wrapper .payment-receipt-item .payment-receipt-item-info div {
  color: var(--text-color-2);
  font-family: "URW DIN Arabic Demi";
  font-size: 18px;
  font-weight: 600;
  line-height: 22px;
  padding: 17px 18px;
}

.payment-receipt-wrapper .payment-receipt-item .payment-receipt-item-info table {
  border-collapse: separate;
  border-spacing: 0px;
}

.payment-receipt-wrapper .payment-receipt-item .payment-receipt-item-info table tr td {
  padding-bottom: 18px;
}

.payment-receipt-wrapper .payment-receipt-item .payment-receipt-item-info table tr:first-child td {
  padding-top: 18px;
}

.payment-receipt-wrapper .payment-receipt-item .payment-receipt-item-info table tr td:nth-child(1) {
  color: var(--text-color-3);
  font-family: "URW DIN Arabic Demi";
  font-size: 16px;
  font-weight: 500;
  line-height: normal;
  border-right: 1px solid var(--border-color-2);
  padding-left: 17px;
  width: 100%;
  min-width: 207px;
  border-left: 1px solid var(--border-color-2);
  display: flex;
  align-items: center;
  gap: 8px;
}

.payment-receipt-wrapper .payment-receipt-item .payment-receipt-item-info table tr td:nth-child(2) {
  color: var(--text-color-2);
  font-family: "URW DIN Arabic Demi";
  font-size: 16px;
  font-weight: 600;
  line-height: normal;
  padding-left: 36px;
  min-width: 219px;
}

.payment-receipt-wrapper .payment-receipt-item .payment-receipt-item-info table tr:last-child td:nth-child(1) {
  border-bottom: 1px solid var(--border-color-2);
  border-bottom-left-radius: 10px;
}

.payment-receipt-wrapper .payment-receipt-item .payment-receipt-item-info table tr:last-child td:nth-child(2) {
  border-bottom: 1px solid var(--border-color-2);
}

.payment-receipt-wrapper .payment-receipt-item .payment-receipt-item-sold-to {
  padding-top: 32px;
  padding-bottom: 16px;
  margin-bottom: 16px;
  border-bottom: 1px solid var(--border-color-1);
}

.payment-receipt-wrapper .payment-receipt-item .payment-receipt-item-sold-to span:nth-child(1) {
  color: var(--text-color-3);
  font-family: "URW DIN Arabic";
  font-size: 16px;
  font-weight: 400;
  line-height: normal;
}

.payment-receipt-wrapper .payment-receipt-item .payment-receipt-item-sold-to span:nth-child(2) {
  color: var(--text-color-2);
  font-family: "URW DIN Arabic Demi";
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}

.payment-receipt-wrapper .payment-receipt-item .payment-receipt-item-list {
  padding-bottom: 54px;
  border-bottom: 1px solid var(--border-color-1);
}

.payment-receipt-wrapper .payment-receipt-item .payment-receipt-item-list table {
  width: 100%;
  min-width: 800px;
}

.payment-receipt-wrapper .payment-receipt-item .payment-receipt-item-list table thead th {
  padding: 12px;
  border-bottom-color: var(--border-color-1);
}

.payment-receipt-wrapper .payment-receipt-item .payment-receipt-item-list table tbody td {
  padding: 19px 12px;
  color: var(--text-color-2);
  border-bottom-color: var(--border-color-1);
}

.payment-receipt-wrapper .payment-receipt-item .payment-receipt-item-list table thead {
  background: var(--background-color-1);
  color: #fff;
  font-family: "URW DIN Arabic";
  font-size: 16px;
  font-weight: 700;
  line-height: normal;
}

.payment-receipt-wrapper .payment-receipt-item .payment-receipt-item-list table tfoot td {
  padding: 8px;
  border-bottom-color: var(--border-color-1);
}

.payment-receipt-wrapper .payment-receipt-item .payment-receipt-item-list table tfoot {
  background: var(--background-color-10);
}

.payment-receipt-wrapper .payment-receipt-item .payment-receipt-item-list table td {
  color: var(--text-color-2);
  font-family: "URW DIN Arabic Demi";
  font-size: 16px;
  font-weight: 600;
  line-height: 22px;
  /* 122.222% */
}

.payment-receipt-wrapper .payment-receipt-item .payment-receipt-text {
  margin-top: 16px;
  margin-bottom: 8px;
  color: #595a5c;
  font-family: "URW DIN Arabic";
  font-size: 16px;
  font-weight: 400;
  line-height: normal;
}

.payment-receipt-wrapper .payment-receipt-item .payment-receipt-text a {
  color: var(--background-color-1);
}

@media screen and (max-width: 760px) {
  .payment-receipt-wrapper .payment-receipt-header div {
    text-align: center;
  }

  .payment-receipt-wrapper .payment-receipt-item .payment-receipt-item-info {
    flex-direction: column;
  }

  .payment-receipt-wrapper .payment-receipt-item .payment-receipt-item-info table tr td:nth-child(1) {
    border-left: none;
    border-right: none;
  }

  .payment-receipt-wrapper .payment-receipt-item .payment-receipt-item-info table tr:last-child td:nth-child(1) {
    border-bottom-left-radius: 0;
  }

  .payment-receipt-wrapper .payment-receipt-item .payment-receipt-item-info table tr:first-child td:nth-child(1),
  .payment-receipt-wrapper .payment-receipt-item .payment-receipt-item-info table tr:first-child td:nth-child(2) {
    border-top: 1px solid #ccdcd7;
  }

  .payment-receipt-wrapper .payment-receipt-item .payment-receipt-item-sold-to {
    padding-top: 0px;
  }

  .payment-receipt-wrapper .payment-receipt-header {
    flex-direction: column-reverse;
    gap: 14px;
  }

  .payment-receipt-wrapper .payment-receipt-header div span:nth-child(1) {
    margin-bottom: 5px;
  }

  .payment-receipt-wrapper .payment-receipt-header,
  .payment-receipt-wrapper .payment-receipt-item .payment-receipt-item-info div {
    padding: 18px 12px;
  }

  .payment-receipt-wrapper .payment-receipt-item .payment-receipt-item-details {
    padding: 12px;
  }

}

@media screen and (max-width: 640px) {
  .payment-receipt-wrapper .payment-receipt-item .payment-receipt-item-list {
    padding-bottom: 0px;
  }

  .payment-receipt-wrapper .payment-receipt-item .payment-receipt-item-list table {
    margin-bottom: 6px;
  }

  .payment-receipt-wrapper .payment-receipt-item .payment-receipt-item-list {
    border: 0;
  }
}

@media screen and (max-width: 500px) {
  .page-title-wrapper img {
    max-width: 10px;
  }

  .payment-receipt-wrapper .payment-receipt-item .payment-receipt-item-info table tr td:nth-child(1),
  .payment-receipt-wrapper .payment-receipt-item .payment-receipt-item-info table tr td:nth-child(2) {
    min-width: 100%;
  }

  .payment-receipt-wrapper .payment-receipt-item .payment-receipt-item-info table tr {
    display: flex;
    flex-direction: column;
  }

  .payment-receipt-wrapper .payment-receipt-item .payment-receipt-item-info table tr:first-child td:nth-child(1),
  .payment-receipt-wrapper .payment-receipt-item .payment-receipt-item-info table tr:first-child td:nth-child(2) {
    border: none;
  }

  .payment-receipt-wrapper .payment-receipt-item .payment-receipt-item-info table tr:first-child td {
    padding-top: 0px;
  }

  .payment-receipt-wrapper .payment-receipt-item .payment-receipt-item-info table tr:last-child td:nth-child(1) {
    border-bottom: 0;
  }

  .payment-receipt-wrapper .payment-receipt-item .payment-receipt-item-info table tr:first-child td:nth-child(1) {
    border-top: 1px solid #ccdcd7;
    padding-top: 18px;
  }

}

/*Payment Receipt End*/

/*Join As Trainer Start*/
.custom-form-field.text-align-end label,
.custom-form-field.text-align-end div input {
  text-align: end;
  display: block;
}

.custom-form-field .form-select {
  border-color: var(--border-color-1);
  border: 1px solid var(--border-color-2);
  border-radius: 0;
  color: var(--text-color-3);
  background-color: var(--background-color-2);
  font-family: "URW DIN Arabic";
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  padding: 12px 14px;
}

.custom-form-field .form-select option {
  color: #595a5c;
}

.custom-form-field .form-select:focus {
  box-shadow: none;
  border-color: #d6d6d6;
}

.join-as-trainer input::placeholder {
  color: #b4b5b6;
}

.join-as-trainer form .page-subtitle {
  color: var(--text-color-2);
  font-family: "URW DIN Arabic Demi";
  font-size: 22px;
  font-weight: 600;
  line-height: normal;
  text-transform: capitalize;
  margin-bottom: 0;
}

.join-as-trainer>form>h3 {
  margin-bottom: 20px !important;
}

.join-as-trainer .qualification-container {
  border-top: 1px solid var(--border-color-1);

  margin-top: 12px;
  padding-top: 32px;
}

.join-as-trainer .qualification-container .qualification-header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 22px;
}

.join-as-trainer .qualification-container .qualification-card {
  background-color: var(--background-color-2);
  border: 1px solid var(--border-color-2);

  padding: 14px;
  margin-bottom: 10px;
}

.join-as-trainer .qualification-container .qualification-card .qualification-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.join-as-trainer .qualification-container .qualification-card .qualification-card-header {
  color: var(--text-color-2);
  font-family: "URW DIN Arabic Demi";
  font-size: 18px;
  font-weight: 600;
  line-height: 24px;
  text-transform: capitalize;
  margin-bottom: 10px;
}

.join-as-trainer .qualification-container .qualification-card .qualification-card-header div {
  display: flex;
  gap: 10px;
}

.join-as-trainer .qualification-container .qualification-card .qualification-card-header div a {
  line-height: 0;
  padding: 4px;
}

.join-as-trainer .qualification-container .qualification-card .institute {
  color: var(--text-color-3);
  font-family: "URW DIN Arabic";
  font-size: 16px;
  font-weight: 500;
  line-height: normal;
  text-transform: capitalize;
}

.join-as-trainer .qualification-container .qualification-card .qualification-degree-info {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 25px;
  margin-top: 10px;
}

.join-as-trainer .qualification-container .qualification-card .qualification-degree-info div {
  display: flex;
  gap: 10px;
}

.join-as-trainer .qualification-container .qualification-card .qualification-degree-info div span {
  color: var(--text-color-3);
  font-family: "URW DIN Arabic";
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-transform: capitalize;
}

.join-as-trainer .qualification-container .qualification-card .qualification-degree-info div span:nth-child(2) {
  font-weight: 500;
}

.join-as-trainer .acknowledgment-container {
  border-top: 1px solid var(--border-color-1);
  border-bottom: 1px solid var(--border-color-1);

  margin: 32px 0px 32px 0px;
  padding: 32px 0px;
}

.join-as-trainer .acknowledgment-container div:nth-child(2) {
  margin: 20px 0px 10px 0px;
}

.join-as-trainer .acknowledgment-container div label {
  color: var(--text-color-3);
  font-family: "URW DIN Arabic";
  font-size: 14px;
  font-weight: 500;
}

.join-as-trainer .acknowledgment-container .form-check-input[type="checkbox"] {
  border-radius: 0.15em;
}

.qualification-modal .modal-content {
  background: none;
  border: none;
}

.qualification-modal .modal-dialog {
  max-width: 710px;
}

.qualification-modal .modal-content-form {
  background: var(--background-color-2);
  padding: 33px;
}

.qualification-modal .modal-content .close-modal {
  background: none;
  border: none;
  text-align: end;
  margin-bottom: 30px;
  width: 36px;
  height: 36px;
  margin-left: auto;
}

.qualification-modal .modal-content h5 {
  color: var(--text-color-2);
  border-bottom: 1px solid var(--border-color-1);
  font-family: "URW DIN Arabic Demi";
  font-size: 26px;
  font-weight: 700;
  line-height: normal;
  padding-bottom: 12px;
  text-transform: capitalize;
  margin-bottom: 33px;
}

.qualification-modal .modal-content .form-buttons {
  margin-top: 21px;
  display: flex;
  justify-content: flex-end;
  gap: 10px;
}

.qualification-modal .modal-content .custom-form-field input::placeholder,
.qualification-modal .modal-content .custom-form-field textarea::placeholder {
  color: #b4b5b6;
}

@media screen and (max-width: 500px) {
  .qualification-modal .modal-content-form {
    padding: 20px 15px;
  }

  .qualification-modal .modal-content button {
    margin-bottom: 15px;
    width: 28px;
    height: 28px;
  }
}

#documentUpload {
  position: relative;
}

.file-up {
  display: none;
}

.file-up-btn {
  background-color: var(--background-color-2);
  border: 1px solid var(--border-color-2);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
  border-radius: 0;
  color: var(--text-color-3);
  font-family: "URW DIN Arabic";
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  padding: 14px;
  text-align: center;
}

.join-as-trainer .form-buttons {
  display: flex;
  gap: 10px;
}

/*Join As Trainer End*/

@media screen and (max-width: 1170px) {
  .dashboard-main-container .dashboard-sidebar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    max-width: 280px;
    height: 100%;
    transform: translateX(-300px);
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
    z-index: 10;
  }

  .dashboard-main-container .dashboard-sidebar.open {
    transform: translateX(0);
    opacity: 1;
    visibility: visible;
  }

  .dashboard-main-container .dashboard-main-content {
    width: 100%;
  }

  .dashboard-main-container .dashboard-sidebar .sidebar-logo #closeSidebar {
    display: block;
  }

  .dashboard-assessment-card {
    flex-wrap: wrap;
  }

  .dashboard-assessment-card .dashboard-assessment-list {
    width: 100%;
    padding: 0;
    margin-bottom: 20px;
  }

  .dashboard-assessment-card .dashboard-assessment-statistics {
    width: 100%;
    padding: 0;
  }

  .dashboard-assessment-statistics .assessment-statistic::after {
    display: none;
  }
}

@media screen and (max-width: 990px) {

  .dashboard-tabs ul li a,
  .dashboard-tabs ul li a:hover {
    padding-bottom: 5px;
    font-size: 16px;
  }

  .badges-cards .badges-card-wrapper {
    width: 33.33%;
    padding-bottom: 20px;
  }
}

@media screen and (max-width: 768px) {
  .main-content-header {
    padding: 12px 15px;
  }

  .main-content-body {
    padding: 20px 15px;
  }

  .learning-path-module-body ul li .action a {
    width: unset;
    height: unset;
    line-height: unset;
    font-size: 14px;
    padding: 5px 15px;
  }
}

@media screen and (max-width: 700px) {
  .assessment-card {
    flex-direction: column;
  }

  .assessment-card .assessment-card-left {
    width: 100%;
    padding-bottom: 20px;
  }

  .assessment-card .assessment-card-right {
    width: 100%;
    padding: 5px;
    padding-top: 20px;
    border: 0;
    border-top: 1px solid #D6D6D6;
  }

  .badges-cards .badges-card-wrapper {
    width: 50%;
  }

  .survey-page .survey-container .survey-question .survey-question-head {
    font-size: 20px;
  }
}

@media screen and (max-width: 576px) {
  .theme-switch::after {
    display: none;
  }
}

@media screen and (max-width: 560px) {
  .main-content-header {
    padding: 20px;
  }

  .dashboard-user-dropdown .dropdown-toggle .user-avatar {
    margin: 0;
  }

  .dashboard-user-dropdown .dropdown-toggle .user-info {
    display: none;
  }

  .dashboard-tabs ul li a,
  .dashboard-tabs ul li a:hover {
    font-size: 14px;
  }

  .dashboard-tabs ul li:not(:last-child) a {
    margin-right: 10px;
  }

  .dashboard-welcome-card .dashboard-welcome-card-text {
    padding: 10px;
  }

  .dashboard-welcome-card .dashboard-welcome-card-text>div {
    max-width: 100%;
  }

  .dashboard-welcome-card img {
    right: 20px;
    opacity: 0.5;
  }

  .dashboard-welcome-card .dashboard-welcome-card-text::after {
    background-size: calc(100% - 1px) 100%;
  }

  .image-option .image-option-preview .image-option-preview-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .image-option .image-option-preview .image-option-preview-item .name {
    max-width: 90%;
  }
  
  .course-detail-content .course-detail-tabs .nav-pills .nav-item:not(:last-child) .nav-link {
    margin-right: 10px;
    font-size: 14px;
  }
}

@media screen and (max-width: 450px) {

  .primary-link,
  .primary-link:hover {
    font-size: 12px;
  }

  .primary-link-bg,
  .primary-link-bg:hover {
    font-size: 12px;
  }

  .primary-link-bg-sm,
  .primary-link-bg-sm:hover {
    font-size: 12px;
  }

  .primary-link-border,
  .primary-link-border:hover {
    font-size: 12px;
  }

  .primary-link img,
  .primary-link:hover img {
    width: 22px;
  }

  .primary-link-bg img,
  .primary-link-bg:hover img {
    width: 22px;
  }

  .primary-link-bg-sm img,
  .primary-link-bg-sm:hover img {
    width: 22px;
  }

  .attendance-tab .attendance-tab-head {
    flex-wrap: wrap;
    gap: 15px;
  }

  .attendance-tab .attendance-tab-head .attendance-month-filter .attendance-month-year span {
    font-size: 14px;
  }

  .attendance-tab .attendance-tab-head .attendance-month-filter .attendance-arrows a {
    width: 20px;
    height: 20px;
  }

  .attendance-tab .attendance-tab-head .attendance-week select {
    height: 30px;
    font-size: 14px;
  }

  .notes-tab .notes-tab-header {
    flex-wrap: wrap;
  }
  .notes-tab .notes-tab-header .add-note {
    width: 100%;
  }
  .notes-tab .notes-tab-header .add-filter-notes {
    width: 100%;
  }
}

.page-subtitle {
  color: var(--text-color-2);
  font-family: "URW DIN Arabic Demi";
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
  margin-bottom: 14px;
}

.custom-serch-box-wrapper {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid var(--border-color-2);
  padding-bottom: 33px;
}

.custom-serch-box-wrapper .custom-form-field {
  margin-bottom: 0;
}

.custom-serch-box-wrapper .custom-form-field:nth-child(1) {
  width: 45%;
}

.custom-serch-box-wrapper .custom-form-field:nth-child(2),
.custom-serch-box-wrapper .custom-form-field:nth-child(3),
.custom-serch-box-wrapper .custom-form-field:nth-child(4) {
  width: 15%;
}

.custom-serch-box-wrapper .search-btn button,
.custom-serch-box-wrapper .custom-form-field input,
.custom-serch-box-wrapper .custom-form-field select {
  margin-bottom: 0;
  height: 44px;
}

.custom-serch-box-wrapper .custom-form-field input::placeholder,
.custom-serch-box-wrapper .custom-form-field select::placeholder {
  color: var(--text-color-3);
  opacity: 0.6;
}

.responsive-table-wrapper {
  margin-bottom: 50px;
}

.my-request-table table {
  border-collapse: collapse;
  border-bottom: 1px solid var(--border-color-2);
  margin-top: 33px;
  margin-bottom: 6px;
}

.my-request-table table tbody tr {
  background-color: var(--background-color-2);
}

.my-request-table table thead {
  background: var(--background-color-9);
}

.my-request-table table tbody tr td {
  vertical-align: middle;
}

.my-request-table table tbody tr td .table-links a:not(:last-child) {
  margin-right: 5px;
}

.my-request-table table thead tr th,
.my-request-table table tbody tr td {
  font-family: "URW DIN Arabic";
  line-height: normal;
  text-transform: capitalize;
  padding: 14px;
}

.my-request-table table thead tr th {
  color: var(--background-color-1);
  font-size: 16px;
  font-weight: 600;
  white-space: nowrap;

}

.my-request-table table tbody tr td {
  color: var(--text-color-1);
  font-size: 14px;
  font-weight: 500;
  white-space: nowrap;
}

.my-request-table table tbody tr td:nth-child(1) {
  font-weight: 600;
}

.my-request-table table tbody tr td:nth-child(5) {
  min-width: 180px;
}

.my-request-table table tbody tr td span {
  color: var(--background-color-1);
  font-family: "URW DIN Arabic";
  font-size: 14px;
  font-weight: 500;
  background: var(--background-color-10);
  display: inline-block;
  padding: 6px;
}

.my-request-table table tbody tr td .table-links a {
  height: 100%;
  display: inline-block;
  padding: 6px 10px;
}






.modules-modal .modal-content {
  background: none;
  border: none;
}

.modules-modal .modal-dialog {
  max-width: 471px;
}

.modules-modal .modal-content-form {
  background: var(--background-color-2);
  padding: 30px;
  border-radius: 15px;
}

.modules-modal .modal-content .close-modal {
  background: none;
  border: none;
  text-align: end;
  margin-bottom: 30px;
  width: 36px;
  height: 36px;
  margin-left: auto;
}

.modules-modal .modal-content .modal-content-form .modal-content-main-heading {
  color: var(--background-color-1);
  text-align: center;
  font-family: "URW DIN Arabic";
  font-size: 28px;
  font-weight: 600;
  text-transform: capitalize;
  margin-bottom: 10px;
  line-height: normal;
}

.modules-modal .modal-content .modal-content-form .modal-content-sub-heading {
  color: var(--text-color-3);
  font-family: "URW DIN Arabic";
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  text-align: center;
}

.modules-modal .modal-content .modal-content-form label.form-label {
  margin-top: 30px;
  color: var(--text-color-1);
  font-family: "URW DIN Arabic";
  font-size: 16px;
  font-weight: 600;
  text-transform: capitalize;
}

.modules-modal .modal-content .modal-content-form input {
  border-radius: 50px;
}

.modules-modal .modal-content .modal-content-form button {
  width: 100%;
  justify-content: center;
  border-radius: 50px;
  padding: 12px 14px;
}



@media screen and (max-width: 998px) {
  .custom-serch-box-wrapper {
    flex-wrap: wrap;
    gap: 6px 0px;
  }

  .custom-serch-box-wrapper .custom-form-field:nth-child(1) {
    width: 100%;
  }
  .custom-serch-box-wrapper .custom-form-field:nth-child(2),
  .custom-serch-box-wrapper .custom-form-field:nth-child(3) {
    width: 50%;
  }
  .custom-serch-box-wrapper .custom-form-field:nth-child(3) input
  {
    border-left: 0;
  }
  [dir="rtl"] .custom-serch-box-wrapper .custom-form-field:nth-child(3) input{
    border-left: 1px solid var(--border-color-2);
    border-right: 0;
  }
  .custom-serch-box-wrapper .custom-form-field:nth-child(4) {
    flex: 1;
  }
}

/* @media screen and (max-width: 998px) {
  .custom-serch-box-wrapper .custom-form-field:nth-child(1) {
    width: 35%;
  }

  .custom-serch-box-wrapper .custom-form-field:nth-child(2),
  .custom-serch-box-wrapper .custom-form-field:nth-child(3),
  .custom-serch-box-wrapper .custom-form-field:nth-child(4) {
    width: 18%;
  }
} */

@media screen and (max-width: 500px) {
  .modules-modal .modal-content-form {
    padding: 20px 12px !important;
  }
}



/* RTL CSS */
[dir="rtl"] .me-3 {
  margin-right: unset !important;
  margin-left: 1rem !important;
}


[dir="rtl"] .dashboard-main-container .dashboard-sidebar .sidebar-logo {
  padding: 25px 25px 20px 0;
}

[dir="rtl"] .dashboard-main-container.sidebar-menu-sm .dashboard-sidebar .sidebar-logo {
  padding: 20px 0 20px 0;
}

[dir="rtl"] .dashboard-main-container .dashboard-sidebar .sidebar-nav {
  padding: 25px 0 25px 25px;
}

[dir="rtl"] .dashboard-main-container .dashboard-sidebar .sidebar-nav ul {
  padding-left: 0;
  padding-right: 25px;
}

[dir="rtl"] .dashboard-main-container .dashboard-sidebar .sidebar-nav ul li a {
  padding-right: unset;
  padding-left: 15px;
}

[dir="rtl"] .dashboard-main-container .dashboard-sidebar .sidebar-nav>ul>li>a::before {
  left: unset;
  right: -25px;
}

[dir="rtl"] .dashboard-main-container .dashboard-sidebar .sidebar-nav ul li.sidebar-dropdown .sidebar-dropdown-menu li a {
  padding: 6px 25px 6px 0;
}

[dir="rtl"] .dashboard-main-container .dashboard-sidebar .sidebar-nav ul li.sidebar-dropdown .sidebar-dropdown-menu li::after {
  left: unset;
  right: 10px;
}

[dir="rtl"] .dashboard-main-container.sidebar-menu-sm .dashboard-sidebar .sidebar-nav>ul>li>a {
  padding: 0;
}

[dir="rtl"] .dashboard-main-container.sidebar-menu-sm .dashboard-sidebar .sidebar-nav>ul>li.sidebar-dropdown .sidebar-dropdown-menu {
  left: unset;
  right: calc(100% + 10px);
}

[dir="rtl"] .dashboard-user-dropdown::after,
[dir="rtl"] .notification-dropdown::after,
[dir="rtl"] .language-change::after {
  left: unset;
  right: 0;
}

[dir="rtl"] .dashboard-user-dropdown {
  padding-right: 15px;
  padding-left: 0;
}

[dir="rtl"] .dashboard-user-dropdown .user-avatar {
  margin-right: unset;
  margin-left: 10px;
}

[dir="rtl"] .dashboard-user-dropdown .dropdown-toggle::after {
  margin-left: unset;
  margin-right: 10px;
}

[dir="rtl"] .dashboard-user-dropdown .dropdown-menu {
  text-align: right;
}

[dir="rtl"] .notification-list .notification-dropmenu-arrow {
  right: unset;
  left: 10px;
}

[dir="rtl"] .notification-dropdown .dropdown-menu {
  margin-right: unset !important;
  margin-left: -15px !important;
}

[dir="rtl"] .notification-list .notification-list-body .notification-list-item .item-text {
  text-align: right;
}

[dir="rtl"] .dashboard-main-container .dashboard-sidebar .sidebar-logo #closeSidebar {
  right: unset;
  left: 20px;
}

[dir="rtl"] .dashboard-welcome-card .overlay1 {
  left: unset;
  right: 50px;
  transform: rotate(0);
}

[dir="rtl"] .dashboard-welcome-card img {
  right: unset;
  left: 40px;
  transform: rotateY(180deg);
}

[dir="rtl"] .dashboard-welcome-card .dashboard-welcome-card-text::after {
  transform: rotate(180deg);
}

[dir="rtl"] .dashboard-welcome-card .dashboard-welcome-card-text h1 {
  padding-right: 0;
  padding-left: 20px;
}

[dir="rtl"] .total-card .icon {
  margin-right: 0;
  margin-left: 15px;
}

[dir="rtl"] .dashboard-assessment-card .dashboard-assessment-list {
  padding-right: 0;
  padding-left: 40px;
}

[dir="rtl"] .dashboard-assessment-statistics .assessment-statistic::after {
  left: unset;
  right: -20px;
}

[dir="rtl"] .statistic-percentage-list .percentage-list-item .dot {
  margin-right: 0;
  margin-left: 8px;
}

[dir="rtl"] .search-box .search-box-icon {
  left: unset;
  right: 0;
}

[dir="rtl"] .search-box input {
  padding-left: 10px;
  padding-right: 45px;
}

[dir="rtl"] .search-box select {
  padding-right: 10px;
  padding-left: 45px;
  margin-left: 10px;
  margin-right: 35px;
}

[dir="rtl"] .learning-path-module-head .module-head-content .head-content-count {
  margin-right: 0;
  margin-left: 15px;
}

[dir="rtl"] .learning-path-module-head .module-head-content .head-content-info .content-info-title h2 {
  margin-right: 0;
  margin-left: 10px;
}

[dir="rtl"] .learning-path-module-head .module-head-content .head-content-info .content-info-title .time-progress .time {
  margin-right: 0;
  margin-left: 20px;
}

[dir="rtl"] .learning-path-module-head .module-head-content .head-content-info .content-info-desc span:nth-child(1) {
  margin-right: 0;
  padding-right: 0;
  border-right: 0;
  margin-left: 10px;
  padding-left: 10px;
  border-left: 1px solid #595A5C;
}

[dir="rtl"] .learning-path-module-body ul {
  padding-left: 0;
  padding-right: 55px;
}

[dir="rtl"] .learning-path-module-body ul::after {
  left: unset;
  right: 0;
}

[dir="rtl"] .learning-path-module-body ul li::before {
  left: unset;
  right: -40px;
}

[dir="rtl"] .learning-path-module-body ul li:not(:last-child)::after {
  left: unset;
  right: -35px;
}

[dir="rtl"] .learning-path-module-body ul li .action a {
  margin-left: 0;
  margin-right: 20px;
}

[dir="rtl"] .badges-cards .badges-card .badge-icon-sm {
  text-align: right;
}

[dir="rtl"] .levels-card .level-status::after {
  right: unset;
  left: 0;
}

[dir="rtl"] .join-as-trainer .acknowledgment-container .form-check {
  padding-left: 0;
  padding-right: 1.5em;
  margin-right: 0;
}

[dir="rtl"] .join-as-trainer .acknowledgment-container .form-check-input[type="checkbox"] {
  float: right;
  margin-left: 0;
  margin-right: -1.5em;
}

[dir="rtl"] .form-select {
  background-position: left .75rem center;
}

[dir="rtl"] .custom-form-field .form-input-container input[type="date"] {
  text-align: right;
}

[dir="rtl"] .custom-form-field .form-input-container img {
  right: unset;
  left: 14px;
}

[dir="rtl"] .assessment-card .assessment-card-right {
  padding-left: 5px;
  padding-right: 40px;
  border-left: 0;
  border-right: 1px solid #D6D6D6;
}

[dir="rtl"] .assessment-card-right-cards .assessment-card-right-card {
  border-right: 0;
  border-left: 1px solid #D6D6D6;
}

[dir="rtl"] .assessment-card-right-cards .assessment-card-right-card:last-child {
  border-left: 0;
}

[dir="rtl"] .assessment-card-right-cards .assessment-card-right-card:first-child {
  padding-left: 20px;
  padding-right: 0;
}

[dir="rtl"] .assessment-attempt-container .assessment-attempt-head .timer .time {
  margin-left: 0;
  margin-right: 10px;
}

[dir="rtl"] .radio-options label .radio {
  margin-right: 0;
  margin-left: 10px;
}

[dir="rtl"] .course-detail-content .course-detail-tabs .nav-pills .nav-item:not(:last-child) .nav-link {
  margin-right: 0;
  margin-left: 15px;
}

[dir="rtl"] .notes-tab .notes-tab-header .add-filter-notes select {
  background-position: 10px 50%;
}

[dir="rtl"] .notes-tab .notes-tab-note .note-text .note-title h2 span {
  margin-left: 0;
  margin-right: 10px;
}

[dir="rtl"] .community-board .community-board-comments .comment-card .comment-card-text>h2 span {
  margin-left: 0;
  margin-right: 5px;
}

[dir="rtl"] .community-board .community-board-comments .comment-card .comment-card-text .comment-card-reply .comment-card-img::before {
  left: unset;
  right: -28px;
}

[dir="rtl"] .community-board .community-board-comments .comment-card.has-reply>.comment-card-img::after {
  left: unset;
  right: 16px;
}

[dir="rtl"] .community-board .community-board-comments .comment-card .comment-card-text {
  padding-right: 0;
  padding-left: 10px;
}

[dir="rtl"] .community-board .community-board-comments .comment-card .comment-card-text .comment-card-reply .comment-card:last-child .comment-card-img .hide-line {
  left: unset;
  right: -35px;
}

[dir="rtl"] .course-detail-modules-module .course-detail-modules-module-body .module-item:not(:last-child) .module-text .module-count::before {
  left: unset;
  right: 20px;
}

[dir="rtl"] .community-board .community-board-comments .comment-card .comment-card-text>.reply-textarea {
  padding-right: 0;
  padding-left: 10px;
}

[dir="rtl"] .dashboard-tabs-vertical div .nav-pills {
  padding: 25px 0 20px 22px;
}

[dir="rtl"] .dashboard-tabs-vertical div .tab-content {
  padding: 25px 40px 25px 0;
}

[dir="rtl"] .dashboard-tabs-vertical div .tab-content {
  border-left: 0;
  border-right: 1px solid #d6d6d6;
}

[dir="rtl"] .dashboard-tabs-vertical div .tab-content .credit-card-item .credit-card-dropdown-wrapper .dropdown-menu {
  inset: 0px auto auto 0px !important;
}

[dir="rtl"] .dashboard-tabs-vertical div .tab-content .credit-card-item .credit-card-dropdown-wrapper .card-item-dropdown-info a {
  padding: 10px 12px 10px 0;
}

[dir="rtl"] .dashboard-tabs-vertical div .tab-content .warning-text,
[dir="rtl"] .dashboard-tabs-vertical div .tab-content .form-check-inline:nth-child(2) {
  padding-left: unset;
  padding-right: 1.5em;
}

[dir="rtl"] .form-check .form-check-input {
  margin-left: unset;
  margin-right: -1.5em;
}

[dir="rtl"] .dashboard-tabs-vertical div .tab-content .warning-text {
  padding-right: 0;
}

[dir="rtl"] .form-check-inline {
  margin-right: 0;
}

[dir="rtl"] .notifications-list .notifications-item .notifications-item-text .notifications-item-icon {
  margin-right: 0;
  margin-left: 10px;
}

[dir="rtl"] .notifications-list .notifications-item.new .notifications-item-action span {
  margin-left: 0;
  margin-right: 10px;
}

[dir="rtl"] .payment-receipt-wrapper .payment-receipt-item .payment-receipt-item-info table tr td:nth-child(1) {
  padding-left: 0;
  padding-right: 17px;
}

[dir="rtl"] .payment-receipt-wrapper .payment-receipt-item .payment-receipt-item-info table tr td:nth-child(2) {
  padding-left: 0;
  padding-right: 36px;
}

[dir="rtl"] .payment-receipt-wrapper .payment-receipt-item .payment-receipt-item-info table tr:last-child td:nth-child(1) {
  border-radius: 0;
  border-bottom-right-radius: 10px;
}

[dir="rtl"] .attendance-tab .attendance-tab-head .attendance-week select {
  background-position: 10px 50%;
}

[dir="rtl"] .attendance-tab .attendance-tab-head .attendance-month-filter .attendance-arrows {
  flex-direction: row-reverse;
}

[dir="rtl"] .slide-calendar .slide-calendar-month-year {
  flex-direction: row-reverse;
}

[dir="rtl"] .slide-calendar .slide-calendar-date-slider {
  direction: ltr;
}

[dir="rtl"] .dashboard-tabs ul li:not(:last-child) a {
  margin-right: unset;
  margin-left: 20px;
}

[dir="rtl"] .my-request-table table tbody tr td .table-links a:not(:last-child) {
  margin-right: unset;
  margin-left: 5px;
}

[dir="rtl"] .custom-form-field .form-input-container input[type="date"]::-webkit-inner-spin-button,
[dir="rtl"] .custom-form-field .form-input-container input[type="date"]::-webkit-calendar-picker-indicator {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 15px;
}

@media screen and (max-width: 1170px) {
  [dir="rtl"] .dashboard-main-container .dashboard-sidebar {
    left: unset;
    right: 0;
    transform: translateX(300px);
  }

  [dir="rtl"] .dashboard-main-container .dashboard-sidebar.open {
    transform: translateX(0);
  }

  [dir="rtl"] .dashboard-assessment-card .dashboard-assessment-list {
    padding: 0;
  }
}

@media screen and (max-width: 560px) {
  [dir="rtl"] .dashboard-welcome-card img {
    left: 20px;
  }

  [dir="rtl"] .dashboard-tabs ul li:not(:last-child) a {
    margin-left: 10px;
  }

  [dir="rtl"] .course-detail-content .course-detail-tabs .nav-pills .nav-item:not(:last-child) .nav-link {
    margin-left: 15px;
  }
}

@media screen and (max-width: 500px) {
  [dir="rtl"] .dashboard-tabs-vertical div .tab-content {
    border-right: 0;
    padding: 25px 0;
  }
}

/* RTL CSS END */