.alert-dismissable,
.alert-dismissible {
  padding-right: 65px;
}
.alert-dismissable .close,
.alert-dismissible .close {
  position: relative;
  top: -2px;
  right: -21px;
  color: inherit;
}
.alert-success {
  background-color: #dff0d8;
  border-color: #d6e9c6;
  color: #3c763d;
  padding: 20px; /* Increased padding for larger appearance */
  font-size: 18px; /* Larger font size for text within the alert */
  width: 100%; /* Optional: Adjust width as needed */
  height: auto; /* Adjust height automatically based on content, or set a specific height */
  margin: 0 auto; /* Center the alert box if width is less than 100% */
  border-radius: 5px; /* Optional: Add rounded corners */
}
.alert-success hr {
  border-top-color: #c9e2b3;
}
.alert-success .alert-link {
  color: #2b542c;
}
.alert-info {
  background-color: #d9edf7;
  border-color: #bce8f1;
  color: #31708f;
}
.alert-info hr {
  border-top-color: #a6e1ec;
}
.alert-info .alert-link {
  color: #245269;
}
.alert-warning {
  background-color: #fcf8e3;
  border-color: #faebcc;
  color: #8a6d3b;
  padding: 20px; /* Increased padding for larger appearance */
  font-size: 18px; /* Larger font size for text within the alert */
  width: 100%; /* Optional: Adjust width as needed */
  height: auto; /* Adjust height automatically based on content, or set a specific height */
  margin: 0 auto; /* Center the alert box if width is less than 100% */
  border-radius: 5px; /* Optional: Add rounded corners */
}
.alert-warning hr {
  border-top-color: #f7e1b5;
}
.alert-warning .alert-link {
  color: #66512c;
}
.alert-danger {
  background-color: #f2dede;
  border-color: #ebccd1;
  color: #a94442;
}
.alert-danger hr {
  border-top-color: #e4b9c0;
}
.alert-danger .alert-link {
  color: #843534;
}

* {
  box-sizing: border-box;
  font-family: Inter, Sans-Serif;
}
*:focus {
  outline: 1px solid #f00;
}

body {
  font-size: 16px;
  margin: 0;
}
body > #loader {
  position: fixed;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #000;
  background-color: #fff;
  z-index: 100;
  opacity: 1;
  transition: opacity 400ms ease-in-out;
}
body > #loader > .spinner {
  width: 60px;
  height: 60px;
  margin-bottom: 1rem;
  background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" height="60" width="60" viewBox="0 0 512 512"><path class="fa-secondary" fill="%23eeeeee" d="M346.5 120.2c-12.5 12.5-12.5 32.8 0 45.3s32.8 12.5 45.3 0L437 120.2c12.5-12.5 12.5-32.8 0-45.3s-32.8-12.5-45.3 0l-45.3 45.3zM384 256c0 17.7 14.3 32 32 32h64c17.7 0 32-14.3 32-32s-14.3-32-32-32H416c-17.7 0-32 14.3-32 32zM256 384c-17.7 0-32 14.3-32 32v64c0 17.7 14.3 32 32 32s32-14.3 32-32V416c0-17.7-14.3-32-32-32zm135.8-37.5c-12.5-12.5-32.8-12.5-45.3 0s-12.5 32.8 0 45.3L391.8 437c12.5 12.5 32.8 12.5 45.3 0s12.5-32.8 0-45.3l-45.3-45.3zM75 437c12.5 12.5 32.8 12.5 45.3 0l45.3-45.3c12.5-12.5 12.5-32.8 0-45.3s-32.8-12.5-45.3 0L75 391.8c-12.5 12.5-12.5 32.8 0 45.3z"/><path class="fa-primary" fill="%23ff0000" d="M256 0c-17.7 0-32 14.3-32 32V96c0 17.7 14.3 32 32 32s32-14.3 32-32V32c0-17.7-14.3-32-32-32zM0 256c0 17.7 14.3 32 32 32H96c17.7 0 32-14.3 32-32s-14.3-32-32-32H32c-17.7 0-32 14.3-32 32zM120.2 75C107.7 62.5 87.5 62.5 75 75s-12.5 32.8 0 45.3l45.3 45.3c12.5 12.5 32.8 12.5 45.3 0s12.5-32.8 0-45.3L120.2 75z"/></svg>');
  background-repeat: no-repeat;
  animation: spin 4s linear infinite, pulse 500ms ease infinite alternate;
}
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes pulse {
  0% {
    scale: 100%;
  }
  100% {
    scale: 85%;
  }
}
body > #loader::after {
  content: "Loading...";
}
body.ready > #loader {
  opacity: 0;
}