
@font-face {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 400;
  src: url('fonts/Poppins-Regular.woff2') format('woff2');
}

@font-face {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 700;
  src: url('fonts/Poppins-Bold.woff2') format('woff2');
}
@font-face {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 500;
  src: url('fonts/Poppins-Medium.woff2') format('woff2');
}

@font-face {
  font-family: 'Candal';
  src: url('fonts/Candal-Regular.woff2') format('woff2');
  font-weight: normal;
  font-style: normal;
}

html, body, * {
  font-family: 'Poppins', sans-serif !important;
  font-weight: 400 !important;
  -webkit-font-smoothing: antialiased;
}

:root {
  --body-bg: #000000;
  /* --base-red: #FE002E; */
  --base-red: #C4001D;
  --header-size: 32px;
  --header-weight: 600;

  --base-gradient: #C4001D;

  --base-line: #C4001D;
/* --base-gradient:linear-gradient(90deg, #B80021 0%, #E6002A 45%, #FE002E 100%); */
}

body {
  font-family: "Poppins", sans-serif;
  width: 100vw;
  height: 100vh;
  margin: 0;
  padding: 0;
  overflow: hidden;
  background-color: var(--body-bg);
}

* {
  box-sizing: border-box;
  outline: none;
}

#error-screen {
  display: none;
  width: 100%;
  height: 100%;
  align-items: center;
  justify-content: center;
  background: var(--body-bg);
  padding: 2rem;
}

#error-screen .content {
  display: flex;
  justify-content: center;
}

#error-screen .content .logo {
  width: 40%;
}

#error-screen .content .logo img {
  width: 100%;
}

#error-screen .content .details {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

#error-screen .content .details .code {
  font-size: 10rem;
  font-weight: bold;
  color: #fff;
}

#error-screen .content .details .text {
  font-size: 3rem;
  color: #fff;
  text-align: center;
}

#console {
  width: 50%;
  height: 50%;
  color: #fff;
  padding: 25px;
  position: absolute;
  z-index: 300;
  overflow: auto;
}

.common-toast-alert {
  position: fixed;
  bottom: 150px;
  left: 50%;
  transform: translateX(-50%);
  background-color: rgba(0, 0, 0, 0.7);
  color: #fff;
  padding: 15px 30px;
  border-radius: 5px;
  font-size: 2rem;
  z-index: 1000;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
  pointer-events: none;
}
