@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;500&display=swap");

/*============ Almarai Font ============*/
@font-face {
  font-family: "ReadexPro";
  src: url("../font/ReadexPro-Regular.ttf") format("truetype");
  font-weight: 300;
  font-style: normal;
}
@font-face {
  font-family: "ReadexPro-Bold";
  src: url("../font/ReadexPro-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
}

:root {
  /*========== Colors ==========*/
  --white-color: hsl(0, 0%, 100%);
  --black-color: hsl(0, 0%, 0%);
  --accent-I: #de9afb;
  --primary-I: #5c6bc2;
  --primary-II: #4975f9;
  --heading-I: #202020;
  --text-I: #686868;
  --light: #f6f6f9;
  --primary: #1976d2;
  --primary-I: #cfe8ff;
  --light-primary: #cfe8ff;
  --grey: #eee;
  --dark-grey: #aaaaaa;
  --dark: #363949;
  --danger: #d32f2f;
  --light-danger: #fecdd3;
  --warning: #fbc02d;
  --light-warning: #fff2c6;
  --success: #388e3c;
  --light-success: #bbf7d0;

  /*=========== Gradient ===========*/
  --linear-light: linear-gradient(
    261deg,
    rgba(111, 138, 218, 1) 11%,
    rgba(80, 97, 191, 1) 54%
  );

  /*========== Width ==========*/
  --container_width: 50px;

  /*========== Border ==========*/
  --xs: 2px;
  --sm: 4px;
  --md: 8px;
  --lg: 12px;
  --xl: 16px;
  --xxl: 20px;
  --xxxl: 30px;
  --rounded: 50%;
  /*========== Font and typography ==========*/
  --body-font: "ReadexPro", poppins, sans-serif;
  --heading-font: "ReadexPro-Bold", Poppins, sans-serif;
  --h1-font-size: 1.75rem;
  --normal-font-size: 1rem;
  --small-font-size: 0.8rem;
  /*========== Font weight ==========*/
  --font-medium: 500;

  /*========== Shadow ==========*/
  --shadow-l: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}

/*=============== Start Global ===============*/

.bx {
  font-size: 1.7rem;
}

td {
    white-space: normal !important;
}

a {
  text-decoration: none !important;
}

li {
  list-style: none;
}

ul,
ol {
  padding: 0;
}

html {
  overflow-x: hidden;
}

body {
  position: relative;
  display: flex;
  flex-direction: column;
  padding-block: 5rem !important;
  background: white;
  overflow-x: hidden;
  min-height: 100svh;
  height: unset !important;
}

footer {
  width: 100%;
  align-self: end;
}

#login-page {
  padding-block: 0 !important;
}

* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

input {
  border: none;
  outline: none;
  font-size: var(--small-font-size);
  font-family: var(--body-font);
}

button {
  border: none;
  outline: none;
  cursor: pointer;
  font-family: var(--body-font);
  font-size: var(--normal-font-size);
}

a {
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--dark);
  font-family: ReadexPro-Bold, sans-serif;
}

div {
  font-family: "ReadexPro" !important;
  color: var(--dark);
}

h1 {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 5px;
  width: 100%;
  color: #fff;
  font-family: "Mona Sans";
  letter-spacing: 1px;
}

h4 {
  font-size: 0.9rem;
}

h5 {
  font-size: 0.7rem;
}

h6 {
  font-size: 16px;
}

p {
  font-size: 18px;
  font-family: var(--body-font);
  line-height: 1.3;
}

span {
  font-family: var(--body-font);
  font-size: 14px;
  line-height: 1.1;
}

/* Main Elemnts */

.main-btn {
  color: white;
  padding-block: 8px;
  padding-inline: 24px;
  font-size: 16px;
  background: var(--primary);
  border-radius: 4px;
}

.danger-btn {
  color: white;
  padding-block: 8px;
  padding-inline: 24px;
  font-size: 16px;
  background: var(--danger);
  border-radius: 4px;
}

.success-btn {
  color: white;
  padding-block: 8px;
  padding-inline: 24px;
  font-size: 16px;
  background: var(--success);
  border-radius: 4px;
}

.yellow-btn {
  color: white;
  padding-block: 8px;
  padding-inline: 24px;
  font-size: 16px;
  background: yellowgreen;
  border-radius: 4px;
}

.orange-btn {
  color: white;
  padding-block: 8px;
  padding-inline: 24px;
  font-size: 16px;
  background: orange;
  border-radius: 4px;
}

.info-btn {
  color: white;
  padding-block: 8px;
  padding-inline: 24px;
  font-size: 16px;
  background: #0dcbf1;
  border-radius: 4px;
}

.main-btn:hover {
  background-color: var(--primary-II);
}

.rounded-8 {
  border-radius: 8px;
}

.rounded-4 {
  border-radius: 4px;
}

.rounded-2 {
  border-radius: 2px;
}

.w-700 {
  width: 700px;
}

@media (max-width: 768px) {
  .w-700 {
    width: 100%;
  }
}
