@import url('https://fonts.googleapis.com/css2?family=Recursive:wght,CRSV,MONO@300,1,1&display=swap');

body {
  font-family: 'Recursive', monospace;
  overflow-x: hidden;
}

.login {
  max-width: 400px;
}

/* TEXT */

.text-sm {
  font-size: smaller !important;
}

.text-xs {
  font-size: x-small !important;
}

/* BUTTONS */

.btn-square {
  width: 32px;
  height: 32px;
  padding: 4px;
}

.btn-w-sm {
  width: 64px;
}

.btn-w-md {
  width: 128px;
}

.btn-w-lg {
  width: 192px;
}

.btn-w-xl {
  width: 256px;
}

/* WRAPPER & CONTENT */

#wrapper {
  display: flex;
}

#content-wrapper {
  width: 100%;
  overflow-x: hidden;  
}

#container-wrapper>div:first-child {
  height: 2.5rem !important;
}

#container-wrapper>.row {
  margin-bottom: 1.5rem !important;
}

#container-wrapper>.row:last-child {
  margin-bottom: 0rem !important;
}

#content {
  padding-top: 4rem;
  padding-right: 0rem;
  padding-bottom: 0rem;
  padding-left: 0rem;
  min-height: 100vh;
}

/* TOPBAR */

.topbar {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 4;
  height: 4rem;
  width: 100%;
  box-shadow: 0 0 2rem 0 rgba(60, 60, 60, 0.15) !important;
}

.topbar .topbar-brand {
  height: 100%;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 800;
  padding: 1.5rem 1rem;
  text-align: center;
  letter-spacing: 0.125rem;
  z-index: 5;
}

.topbar .topbar-brand .topbar-brand-icon {
  display: flex;
  align-items: center;
}

.topbar .topbar-brand .topbar-brand-icon .main-logo {
  max-height: 2.25rem;
  max-width: 10rem;
  filter: drop-shadow(0 0 1px rgba(255, 255, 255, 1));
}

.topbar .topbar-brand .topbar-brand-icon .vice-logo {
  max-height: 3rem;
}

.topbar .topbar-brand .topbar-brand-text {
  font-family: 'Bahnschrift Condensed';
  font-size: 1.35rem;
  color: #dfdfdf;
  line-height: 18px;
}

/* OPTBAR */

.optbar {
  position: sticky;
  top: 4rem;
  right: 0;
  height: 4rem;
  width: 100%;
  box-shadow: 0 0 2rem 0 rgba(60, 60, 60, 0.15) !important;
}

/* OTHERS */

input:-webkit-autofill {
  -webkit-background-clip: text;
}

::-webkit-file-upload-button {
  display: none;
}

*:focus {
  box-shadow: unset !important;
}

input[type="date"] {
  text-align: left; /* fallback */
  -webkit-text-align-last: left; /* Safari/iOS */
  text-align-last: left;
}