@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");
#blocker {
  position: fixed;
  width: 100vw;
  height: 100vh;
  z-index: 1000;
  top: 0px;
  left: 0px;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(8px);
  display: none; }

#loader {
  position: fixed;
  width: 100vw;
  height: 100vh;
  z-index: 1000;
  top: 0px;
  left: 0px;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 1001; }
  #loader li {
    display: flex;
    justify-content: center; }
  #loader #loader-progress {
    display: block;
    text-align: center;
    color: white; }
  #loader #loader-ani {
    height: 128px;
    width: 128px;
    animation: rotate 1.5s infinite linear;
    border-radius: 50%;
    border: 10px solid #ffffff18;
    border-top: 10px solid #8509FF; }
  #loader #loader-msg {
    color: white;
    padding: 20px;
    height: 60px; }

@keyframes rotate {
  0% {
    transform: rotate(0deg); }
  100% {
    transform: rotate(360deg); } }
#error-msg {
  display: none;
  width: 100%;
  color: white;
  background: rgba(0, 0, 0, 0.8);
  position: fixed;
  bottom: 0px;
  padding: 5px 10px;
  left: 0px;
  font-size: 18px;
  font-weight: 400;
  border-left: 10px solid black;
  z-index: 1001;
  line-height: 40px;
  backdrop-filter: blur(2px);
  min-height: 2rem; }
  #error-msg b {
    font-weight: 700;
    padding: 0px 0px 0px 7px; }
    #error-msg b:first-child {
      margin-left: 0px; }
  #error-msg strong {
    font-weight: 700; }

.msg-wrapper {
  position: relative;
  height: 40px; }
  .msg-wrapper .msg-item {
    height: 100%;
    position: absolute;
    left: 0;
    bottom: 0;
    display: grid;
    align-items: center;
    visibility: hidden; }

* {
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
  margin: 0;
  padding: 0;
  outline: none; }

html {
  scroll-behavior: smooth; }

body {
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  color: #111;
  overflow-x: hidden;
  overflow-y: scroll;
  min-width: 360px; }

a {
  color: inherit;
  text-decoration: none; }

ul {
  list-style: none; }

/*# sourceMappingURL=styles.css.map */
