@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700&display=swap");

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

body {
  /* font-family: "Poppins"; */
  /* font-family: var(--bs-font-sans-serif); */
  overflow-y: overlay;
}

.modal-open {
  overflow-y: overlay;
}

.swal2-container {
  z-index: 40005;
}

.bold-span {
  font-family: "MetropolisBold";
}

.navbar {
  z-index: 1000;
}

/* width */
::-webkit-scrollbar {
  height: 5px;
  width: 5px;
}

/* Track */
::-webkit-scrollbar-track {
  /* box-shadow: inset 0 0 5px rgba(0, 0, 0, 0); */
  border-radius: 10px;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: #fa491f;
  border-radius: 10px;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: #fa491f;
}

/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Change the white to any color */
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
  -webkit-box-shadow: 0 0 0 30px white inset !important;
}

/* Firefox */
input[type="number"] {
  -moz-appearance: textfield;
}

:root {
  /* ^^ if you change this dont forget to change the value in onscroll */
  --navbar-primary-color: transparent;
  --navbar-secondary-color: transparent;
  --navbar-profile-color: transparent;
}

.c-primary {
  color: #fa491f;
}

/* Custom CSS Starts */

.btn-classic {
  background: #435ebe;
  border: 0;
  padding: 0.4rem 0.8rem;
  color: white;
  font-weight: 400;
  border-radius: 0.4rem;
}
.btn-classic:hover {
  background: #1e2b5a;
}

.btn-profile {
  width: 50px;
  height: 50px;
  background-color: #1e2b5a;
  border-radius: 100%;
  border: none;
  cursor: pointer;
}

.note {
  font-size: 0.7rem;
  font-weight: 500;
  color: rgba(0, 0, 0, 0.5);
}

.snippet {
  font-size: 0.8rem;
  font-weight: 500;
  color: rgba(0, 0, 0, 0.5);
}

.a-style {
  color: #435ebe;
  text-decoration: none;
}

.a-style:hover {
  color: #1e2b5a;
  text-decoration: underline;
}

/* Elements */

.nav-item img {
  filter: brightness(0) invert(1);
}

.nav-item.active {
  background: linear-gradient(#ff613c, #ff613c) bottom/100% 4px no-repeat;
  border-radius: 1rem;
}

.btn-tts {
  background: var(--navbar-secondary-color);
  border: 1px solid var(--navbar-secondary-color);
  color: white;
}

.btn-tts:hover {
  background: var(--navbar-secondary-color);
  border: 1px solid var(--navbar-secondary-color);
  color: white;
}
