@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

:root {
  --gradient: linear-gradient(
    to right,
    rgb(255, 64, 62) 0%,
    rgb(255, 129, 27) 100%
  );
  --gradient-sec: linear-gradient(
    to right,
    rgb(57, 26, 166) 0%,
    rgb(6, 163, 245) 100%
  );
  --primary: #06D6A0;
  --secondary: #232b76 !important;
  --primary-hover: #12786c;
  --primary-dark: #051f1c;
  --body-color: #8ea5c8;
  --border-color: #cfdbed;
  --body-bg: #F8FFE5;
  --font-family-base: Poppins, sans-serif;
  --grey: #f4f6fa;
  --bg-image: "";
  --input-bg: #fff;
  --card-bg: #fff;
  --border-radius-base: 8px;
  --font-family-title: Poppins, sans-serif;
  --title: #1a2943;
  --body-img: url(../images/background/bglight.png);
  --headings-font-weight: 600;
  --headings-font-weight2: 400;
  --headings-font-weight3: 300;
}

:root {
  --bs-gray-100: #f8f9fa;
  --bs-gray-200: #e9ecef;
  --bs-gray-300: #dee2e6;
  --bs-gray-400: #ced4da;
  --bs-gray-500: #adb5bd;
  --bs-gray-600: #6c757d;
  --bs-gray-700: #495057;
  --bs-gray-800: #343a40;
  --bs-gray-900: #212529;
  --bs-primary: #06D6A0;
  --bs-secondary: #232b76;
  --bs-success: #11b011;
  --bs-info: #00aeff;
  --bs-warning: #ffbb69;
  --bs-danger: #eb5757;
  --bs-light: #f5f5f5;
  --bs-dark: #212529;
  --bs-primary-rgb: 226, 76, 107;
  --bs-secondary-rgb: 18, 42, 76;
  --bs-success-rgb: 17, 176, 17;
  --bs-info-rgb: 0, 174, 255;
  --bs-warning-rgb: 255, 187, 105;
  --bs-danger-rgb: 235, 87, 87;
  --bs-light-rgb: 245, 245, 245;
  --bs-dark-rgb: 33, 37, 41;
  --bs-white-rgb: 255, 255, 255;
  --bs-black-rgb: 0, 0, 0;
  --bs-body-color-rgb: 142, 165, 200;
  --bs-body-bg-rgb: 255, 255, 255;
  --bs-font-sans-serif: system-ui, -apple-system, "Segoe UI", Roboto,
    "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif,
    "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --bs-font-monospace: SFMono-Regular, Menlo, Monaco, Consolas,
    "Liberation Mono", "Courier New", monospace;
  --bs-gradient: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.15),
    rgba(255, 255, 255, 0)
  );
  --bs-body-font-family: Poppins, sans-serif;
  --bs-body-font-size: 1rem;
  --bs-body-font-weight: 400;
  --bs-body-line-height: 1.6;
  --bs-body-color: #8ea5c8;
  --bs-body-bg: #ffffff;
}

:root {
  --primary: #06D6A0;
  --primary-hover: #cba75e;
  --secondary: #391140;
  --secondary-hover: #b56074;
  --alternative: #fff0e6;
  --alternative-hover: #fff0e6;
  --danger: #ffe6ee;
  --danger-hover: #ffe6ee;
  --link: #11ace1;
  --gray-500: #4d4d4d;
  --gray-400: #606060;
  --gray-300: #a1a1a1;
  --gray-200: #a9a9a9;
  --gray-100: #dddddd;
  --white: #ffffff;
  --black: #000000;
}

.font-primary {
  font-family: "Poppins", sans-serif;
}

body.RTL .font-primary {
  font-family: "Alexandria", sans-serif;
}

.font-secondary {
  font-family: "Abril Fatface", cursive;
}

body.RTL .font-secondary {
  font-family: "Alexandria", sans-serif;
}

.position-relative {
  position: relative;
}

.position-absolute {
  position: absolute;
}

body {
  margin: 0;
  font-family: "Poppins", sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scrollbar-width: thin;
  scrollbar-color: var(--primary) #ddd;
  /* background-image: url("./assets/images/background.jpg"); */
  background-position: center;
  height: auto;
  background-repeat: no-repeat;
  background-size: cover;
  background-color: var(--body-bg)  !important;
}

code {
  font-family: source-code-pro, Menlo, Monaco, Consolas, "Courier New",
    monospace;
}

html {
  scroll-behavior: smooth;
}

body.fixed {
  overflow: hidden;
}

body.RTL {
  direction: rtl;
  font-family: "Alexandria", sans-serif;
}

body.RTL p,
body.RTL li {
  line-height: 2.4;
}

#root {
  overflow: hidden;
}

.text-RTL {
  direction: rtl;
  font-family: "Alexandria", sans-serif;
}

.text-LTR {
  direction: ltr !important;
  font-family: "Roboto", sans-serif;
}

.LTR {
  direction: ltr !important;
}

#loader {
  background: var(--primary);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  display: none;
}

#loader.active {
  display: block;
}

body::-webkit-scrollbar {
  width: 12px;
}

body::-webkit-scrollbar-track {
  background: #ddd;
}

body::-webkit-scrollbar-thumb {
  background-color: var(--primary);
  border-radius: 20px;
  border: 3px solid #ddd;
}

* {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.cursor-pointer {
  cursor: pointer;
}

.decoration-none {
  text-decoration: none;
}

.text-center {
  text-align: center;
}

.text-right {
  text-align: right;
}

.text-left {
  text-align: left;
}

.RTL .text-right {
  text-align: left;
}

.RTL .text-left {
  text-align: right;
}

/* For RTL */

.RTL .ml-0 {
  margin-right: 0 !important;
}

.RTL .ml-1 {
  margin-left: 0 !important;
  margin-right: 0.25rem !important;
}

.RTL .ml-2 {
  margin-left: 0 !important;
  margin-right: 0.5rem !important;
}

.RTL .ml-3 {
  margin-left: 0 !important;
  margin-right: 1rem !important;
}

.RTL .ml-4 {
  margin-left: 0 !important;
  margin-right: 1.5rem !important;
}

.RTL .ml-5 {
  margin-left: 0 !important;
  margin-right: 3rem !important;
}

.RTL .mr-0 {
  margin-left: 0 !important;
}

.RTL .mr-1 {
  margin-right: 0 !important;
  margin-left: 0.25rem !important;
}

.RTL .mr-2 {
  margin-right: 0 !important;
  margin-left: 0.5rem !important;
}

.RTL .mr-3 {
  margin-right: 0 !important;
  margin-left: 1rem !important;
}

.RTL .mr-4 {
  margin-right: 0 !important;
  margin-left: 1.5rem !important;
}

.RTL .mr-5 {
  margin-right: 0 !important;
  margin-left: 3rem !important;
}

.RTL .pl-0 {
  padding-right: 0 !important;
}

.RTL .pl-1 {
  padding-left: 0 !important;
  padding-right: 0.25rem !important;
}

.RTL .pl-2 {
  padding-left: 0 !important;
  padding-right: 0.5rem !important;
}

.RTL .pl-3 {
  padding-left: 0 !important;
  padding-right: 1rem !important;
}

.RTL .pl-4 {
  padding-left: 0 !important;
  padding-right: 1.5rem !important;
}

.RTL .pl-5 {
  padding-left: 0 !important;
  padding-right: 3rem !important;
}

.RTL .pr-0 {
  padding-left: 0 !important;
}

.RTL .pr-1 {
  padding-left: 0.25rem !important;
  padding-right: 0 !important;
}

.RTL .pr-2 {
  padding-left: 0.5rem !important;
  padding-right: 0 !important;
}

.RTL .pr-3 {
  padding-left: 1rem !important;
  padding-right: 0 !important;
}

.RTL .pr-4 {
  padding-left: 1.5rem !important;
  padding-right: 0 !important;
}

.RTL .pr-5 {
  padding-left: 3rem !important;
  padding-right: 0 !important;
}

.w-100 {
  max-width: 100% !important;
  width: 100% !important;
}

.w-95 {
  max-width: 95% !important;
  width: 100% !important;
}

.w-90 {
  max-width: 90% !important;
  width: 100% !important;
}

.w-85 {
  max-width: 85% !important;
  width: 100% !important;
}

.w-80 {
  max-width: 80% !important;
  width: 100% !important;
}

.w-75 {
  max-width: 75% !important;
  width: 100% !important;
}

.w-70 {
  max-width: 70% !important;
  width: 100% !important;
}

.w-65 {
  max-width: 65% !important;
  width: 100% !important;
}

.w-60 {
  max-width: 60% !important;
  width: 100% !important;
}

.w-55 {
  max-width: 55% !important;
  width: 100% !important;
}

.w-50 {
  max-width: 50% !important;
  width: 100% !important;
}

.w-45 {
  max-width: 45% !important;
  width: 100% !important;
}

.w-40 {
  max-width: 40% !important;
  width: 100% !important;
}

.w-35 {
  max-width: 35% !important;
  width: 100% !important;
}

.w-30 {
  max-width: 30% !important;
  width: 100% !important;
}

.w-25 {
  max-width: 25% !important;
  width: 100% !important;
}

.w-20 {
  max-width: 20% !important;
  width: 100% !important;
}

.w-15 {
  max-width: 15% !important;
  width: 100% !important;
}

.w-10 {
  max-width: 10% !important;
  width: 100% !important;
}

.w-5 {
  max-width: 5% !important;
  width: 100% !important;
}

.w-0 {
  max-width: 0% !important;
  width: 100% !important;
}

.m-0 {
  margin: 0px !important;
}

.ml-0 {
  margin-left: 0px !important;
}

.mt-0 {
  margin-top: 0px !important;
}

.mr-0 {
  margin-right: 0px !important;
}

.mb-0 {
  margin-bottom: 0px !important;
}

.d-none {
  display: none !important;
}

.d-flex {
  display: flex !important;
}

.d-block {
  display: block !important;
}

.d-inline {
  display: inline !important;
}

.d-grid {
  display: grid !important;
}

.d-inline-block {
  display: inline-block !important;
}

.d-inline-flex {
  display: inline-flex !important;
}

.vertical-align-middle {
  vertical-align: middle;
}

.flex-row {
  flex-direction: row !important;
}

.flex-column {
  flex-direction: column !important;
}

.flex-auto {
  flex: auto !important;
}

.align-items-center {
  align-items: center !important;
}

.justify-between {
  justify-content: space-between !important;
}

.justify-center {
  justify-content: center !important;
}

.justify-start {
  justify-content: start !important;
}

.justify-end {
  justify-content: end !important;
}

.justify-evenly {
  justify-content: space-evenly;
}

.flex-wrap {
  flex-wrap: wrap !important;
}

.fs-10 {
  font-size: 10px;
}

.fs-12 {
  font-size: 12px;
}

.fs-14 {
  font-size: 14px;
}

.fs-16 {
  font-size: 16px;
}

.fs-18 {
  font-size: 18px;
}

.fs-20 {
  font-size: 20px;
}

.fs-22 {
  font-size: 22px;
}

.fs-24 {
  font-size: 24px;
}

.fs-26 {
  font-size: 26px;
}

.fs-28 {
  font-size: 28px;
}

.fs-30 {
  font-size: 30px;
}

.fs-32 {
  font-size: 32px;
}

.fs-34 {
  font-size: 34px;
}

.fs-36 {
  font-size: 36px;
}

.fs-38 {
  font-size: 38px;
}

.fw-300 {
  font-weight: 300;
}

.fw-400 {
  font-weight: 400;
}

.fw-500 {
  font-weight: 500;
}

.fw-600 {
  font-weight: 600;
}

.fw-700 {
  font-weight: 700;
}

.text-primary {
  color: var(--primary) !important;
}

.text-secondary {
  color: var(--secondary) !important;
}

.text-white {
  color: var(--white);
}

.text-gray-500 {
  color: var(--gray-500) !important;
}

.text-gray-400 {
  color: var(--gray-400) !important;
}

.text-gray-300 {
  color: var(--gray-300) !important;
}

.text-gray-200 {
  color: var(--gray-200) !important;
}

.text-gray-100 {
  color: var(--gray-100) !important;
}

body .wrapper {
  max-width: 1200px;
  padding-left: 25px;
  padding-right: 25px;
  margin: 0 auto;
}

.card {
  border: 0 solid var(--border-color);
  margin-bottom: 30px;
  border-radius: 16px;
  box-shadow: 0px 3px 9px #00000029;
  background: var(--card-bg);
}

@media (max-width: 1450px) {
  body .wrapper {
    width: 80%;
  }
}
@media (max-width: 500px) {
  body .wrapper {
    width: 100%;
    padding-left: 15px;
    padding-right: 15px;
  }
}
