@import url("google-api-fonts.css");
/* Root Variables */
:root {
  --color-primary: #5f6dec;
  /* --color-primary: #56f80b; */
  --color-danger: #ff7782;
  --color-success: #41f1b6;
  --color-warning: #ffbb55;
  --color-white: #fff;
  --color-info-dark: #7d8da1;
  --color-info-light: #dce1eb;
  --color-dark: #363949;
  --color-light: rgba(132, 139, 200, 0.18);
  --color-primary-variant: #111e88;
  --color-dark-variant: #677483;
  --color-background: #f6f6f9;

  --card-border-radius: 0.5rem;
  --border-radius-1: 0.4rem;
  --border-radius-2: 0.8rem;
  --border-radius-3: 1.2rem;

  --card-padding: 0.7rem;
  --padding: 1rem;

  --box-shadow: 0 2rem 3rem var(--color-light);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px !important;
  font-family: "Baloo 2", cursive !important;
}

*::-webkit-scrollbar {
  display: none; /* For Chrome and Other Browsers */
  -ms-overflow-style: none; /* IE and Edge */
  scrollbar-width: none; /* Firefox */
}

/* Cursor Blinking Error */
*:not(input) {
  -webkit-touch-callout: none; /* iOS Safari */
  -webkit-user-select: none; /* Safari */
  -khtml-user-select: none; /* Konqueror HTML */
  -moz-user-select: none; /* Old versions of Firefox */
  -ms-user-select: none; /* Internet Explorer/Edge */
  user-select: none;
}

body {
  height: 100vh;
  font-size: 0.88rem;
  background: var(--color-background);
  overflow-x: hidden;
  color: var(--color-dark);
}

a {
  color: var(--color-dark);
  text-decoration: none;
}

img {
  display: block;
  width: 100%;
  height: 100%;
}

h1 {
  font-weight: 800;
  font-size: 1.8rem;
}
h2 {
  font-size: 1.4rem;
}
h3 {
  font-size: 0.87rem;
}
h4 {
  font-size: 0.8rem;
}
h5 {
  font-size: 0.77rem;
}
h6 {
  font-size: 00.77rem;
}
small {
  font-size: 0.75rem;
}

p {
  color: var(--color-dark-variant);
}

b {
  color: var(--color-dark);
}

.primary {
  color: var(--color-primary);
}
.danger {
  color: var(--color-danger);
}
.success {
  color: var(--color-success);
}
.warning {
  color: var(--color-warning);
}

.container {
  display: grid;
  width: 100%;
  /* gap: 1rem; */
  grid-template-columns: 14rem auto 23rem;
}

/* Loading Screen CSS */
#loading {
  display: none;
}

.loading-wrapper {
  position: fixed;
  top: 0%;
  left: 0%;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex !important;
  justify-content: center;
  z-index: 9999999999;
  align-items: center;
  display: none;
}

.lds-dual-ring {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: absolute;
  width: 50vw;
  height: 200px;
  margin: 0 auto;
  box-shadow: var(--box-shadow);
  padding: 2rem;
  background-color: #fff;
  border-radius: 1rem;
}

.lds-dual-ring::before {
  content: " ";
  display: block;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 6px solid #fff;
  border-color: limegreen transparent lightgreen transparent;
  animation: lds-dual-ring 800ms ease infinite;
}
.card {
  background-color: white;
  border-radius: var(--card-border-radius) !important;
  padding: var(--card-padding);
  box-shadow: var(--box-shadow);
  margin-bottom: 10px;
  margin-left: 10px;
  margin-right: 10px;
}

@keyframes lds-dual-ring {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}
