@font-face {
  font-family: Lato-Regular;
  src: url(../fonts/Lato/Lato-Regular.ttf);
}
@font-face {
  font-family: Lato-Bold;
  src: url(../fonts/Lato/Lato-Bold.ttf);
}

:root {
  --primary-color: #041228;
  --primary-font-color: #fff;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  height: 100%;
  overflow-y: overlay;
  /* font-family: "Roboto Mono", sans-serif !important; */
  /* font-family: "Poppins", sans-serif !important; */
  font-family: "Lato-Regular", sans-serif !important;
}

#page #content {
  padding-left: 2rem !important;
  padding-right: 2rem !important;
}

.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: var(--primary-color);
  border-radius: 10px;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: var(--primary-color);
}

/* 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: var(--primary-color);
}

/* 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: var(--primary-color);
  text-decoration: underline;
}
