:root {
  --navbtn-width: 2rem;
  --burger_color: rgb(255, 255, 255);
  --navbtn-height: calc(var(--navbtn-width) * 0.8);
  --rectangle_height: calc(var(--navbtn-width) * 0.1);
  --rectangle_radius: calc(var(--navbtn-width) * 0.04);
  --translate: calc(var(--navbtn-width) * 0.17);
  --transition: 0.65s;
}

.fancy-burger {
  position: relative;
  width: var(--navbtn-width);
  height: var(--navbtn-height);
  border: none;
  background: transparent;
  outline: none;
  cursor: pointer;
}

.rectangle {
  position: absolute;
  height: var(--rectangle_height);
  background: var(--burger_color);
  border-radius: var(--rectangle_radius);
  transition: transform var(--transition);
}

.rectangle--small {
  width: calc(var(--navbtn-width) / 2);
}

.rectangle--top {
  top: 0;
  left: 0;
  transform-origin: top left;
}

.rectangle--middle {
  top: 50%;
  left: 0;
  width: var(--navbtn-width);
  transform: translateY(-50%);
}

.rectangle--bottom {
  bottom: 0;
  right: 0;
  transform-origin: bottom right;
}

.rectangle--top.open {
  transform: translateX(var(--translate)) rotate(45deg);
}

.rectangle--middle.open {
  transform: translateY(-50%) rotate(-45deg);
}

.rectangle--bottom.open {
  transform: translateX(calc(var(--translate) * -1)) rotate(45deg);
}

.glass-container {
  gap: 20px;
  border-radius: 5px;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  background-color: rgba(0, 0, 0, 0.7);
  border: 1px rgba(255, 255, 255, 0.4) solid;
  border-bottom: 1px rgba(40, 40, 40, 0.35) solid;
  border-right: 1px rgba(40, 40, 40, 0.35) solid;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

#breadcrumbs-one {
  background: none;
  border-radius: 5px;
  overflow: hidden;
  width: 100%;
}

#breadcrumbs-one li {
  float: left;
}

#breadcrumbs-one a {
  font-size: 14px;
  padding: 0.4em 1em 0.4em 2em;
  float: left;
  text-decoration: none;
  color: #444;
  position: relative;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.5);
  background-color: #ddd;
  background-image: linear-gradient(to right, #f5f5f5, #ddd);
}

#breadcrumbs-one li:first-child a {
  padding-left: 1em;
  border-radius: 5px 0 0 5px;
}

#breadcrumbs-one a:hover {
  background: #fff;
}

#breadcrumbs-one a::after,
#breadcrumbs-one a::before {
  content: "";
  position: absolute;
  top: 50%;
  margin-top: -1.5em;
  border-top: 1.5em solid transparent;
  border-bottom: 1.5em solid transparent;
  border-left: 1em solid;
  right: -1em;
}

#breadcrumbs-one a::after {
  z-index: 2;
  border-left-color: #ddd;
}

#breadcrumbs-one a::before {
  border-left-color: #ccc;
  right: -1.1em;
  z-index: 1;
}

#breadcrumbs-one a:hover::after {
  border-left-color: #fff;
}

#breadcrumbs-one .current,
#breadcrumbs-one .current:hover {
  font-weight: bold;
  background: none;
}

#breadcrumbs-one .current::after,
#breadcrumbs-one .current::before {
  content: normal;
}

.text-muted-dark {
  color: "#cccccc !important";
}

.datepicker-container {
  z-index: 9999 !important;
}

.glass-container-client {
  text-align: center;
  width: 300px;
  height: 300px;
  position: absolute;
  top: 50%;
  left: 25vw;
  transform: translate(-50%, -50%);
}
.glass-container-client .loginblock {
  width: 100%;
  max-width: 600px;
  display: inline-block;
  padding: 20px;
  border-radius: 3px;
}
.glass-container-client .loginblock div {
  margin-top: 10px;
}
.glass-container-client .loginblock h2 {
  color: white;
}

.dropdown-menu {
  animation-name: containerfade;
  animation-duration: 0.5s;
  animation-fill-mode: forwards;
}

.notificationdiv, .helpmenudiv {
  position: absolute;
  top: 110%;
  right: 20%;
  min-width: 30vw;
  color: rgba(0, 0, 0, 0.755);
  background-color: #ededed;
  border-radius: 5px;
  box-shadow: 0px 5px 26px -3px rgba(0, 0, 0, 0.82);
  -webkit-box-shadow: 0px 5px 26px -3px rgba(0, 0, 0, 0.82);
  -moz-box-shadow: 0px 5px 26px -3px rgba(0, 0, 0, 0.82);
  animation-name: containerfade;
  animation-duration: 0.5s;
  animation-fill-mode: forwards;
}

.nclose, .helpclose {
  font-size: 2rem;
  cursor: pointer;
}

.generic_footer {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100%;
  background-color: rgb(43, 43, 43);
  color: rgb(233, 233, 233);
  text-align: center;
  height: 18px;
  font-size: 12px;
  font-weight: thin;
}

.authenticated_footer {
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
  align-items: center;
  padding: 0.5em;
  position: fixed;
  left: 3vw;
  bottom: 0.1vh;
  width: 10vw;
  border-radius: 25px;
  background-color: none;
  color: rgb(233, 233, 233);
  text-align: center;
  height: 9vh;
  font-size: 1em;
  font-weight: thin;
  font-family: "NunitoSans", sans-serif;
}
.authenticated_footer div button, .authenticated_footer div ul {
  background-color: #eeeeee;
  box-shadow: 0px 0px 26px 0px rgba(0, 0, 0, 0.75);
  -webkit-box-shadow: 0px 0px 26px 0px rgba(0, 0, 0, 0.75);
  -moz-box-shadow: 0px 0px 26px 0px rgba(0, 0, 0, 0.75);
}
.authenticated_footer div button {
  border-radius: 30px;
  border: none;
}
.authenticated_footer div ul li {
  font-size: 1em;
}
.authenticated_footer div ul li a {
  font-size: 1em !important;
  font-weight: normal;
}

#usenamedisplay_btn {
  cursor: pointer;
}

.spinner {
  z-index: 2500;
  display: none;
  content: "";
  box-sizing: border-box;
  position: fixed;
  top: 50%;
  left: 50%;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  animation: d7-1 0.75s infinite linear alternate, d7-2 1.5s infinite linear;
}

@keyframes d7-1 {
  0%, 20% {
    box-shadow: 30px 0 0 3px, 10px 0 0 3px, -10px 0 0 3px, -30px 0 0 3px;
  }
  60%, 100% {
    box-shadow: 12px 0 0 3px, 14px 0 0 6px, -14px 0 0 6px, -12px 0 0 3px;
  }
}
@keyframes d7-2 {
  0%, 25% {
    transform: rotate(0);
  }
  50%, 100% {
    transform: rotate(0.5turn);
  }
}
.pmodal {
  display: none; /* Hidden by default */
  position: fixed; /* Stay in place */
  z-index: 1; /* Sit on top */
  top: 7%;
  width: 840px; /* Full width */
  height: -moz-fit-content;
  height: fit-content; /* Full height */
  overflow: auto; /* Enable scroll if needed */
  background-color: #f1f1f1;
  padding: 20px;
  border-radius: 5px;
  animation-name: containerfade;
  animation-duration: 0.5s;
  animation-fill-mode: forwards;
  box-shadow: 0px 5px 26px -3px rgba(0, 0, 0, 0.82);
  -webkit-box-shadow: 0px 5px 26px -3px rgba(0, 0, 0, 0.82);
  -moz-box-shadow: 0px 5px 26px -3px rgba(0, 0, 0, 0.82);
}

/* The Close Button */
.pclose {
  color: #aaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
}

.pclose:hover,
.pclose:focus {
  color: black;
  text-decoration: none;
  cursor: pointer;
}

.button-36 {
  background-image: linear-gradient(92.88deg, #455EB5 9.16%, #5643CC 43.89%, #673FD7 64.72%);
  border-radius: 8px;
  border-style: none;
  box-sizing: border-box;
  color: #FFFFFF;
  cursor: pointer;
  flex-shrink: 0;
  font-family: "Inter UI", "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
  font-size: 16px;
  font-weight: 500;
  height: 4rem;
  padding: 0 1.6rem;
  text-align: center;
  text-shadow: rgba(0, 0, 0, 0.25) 0 3px 8px;
  transition: all 0.5s;
  -moz-user-select: none;
       user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
}

.button-36:hover {
  box-shadow: rgba(80, 63, 205, 0.5) 0 1px 30px;
  transition-duration: 0.1s;
}

@media (min-width: 768px) {
  .button-36 {
    padding: 0 2.6rem;
  }
}
.btn-return {
  background-image: linear-gradient(to right, #870000 0%, #190A05 51%, #870000 100%);
}

.btn-return {
  margin: 10px;
  padding: 15px 45px;
  text-align: center;
  transition: 0.5s;
  background-size: 200% auto;
  color: white;
  box-shadow: 0 0 20px #eee;
  border-radius: 10px;
  display: block;
}

.btn-return:hover {
  background-position: right center; /* change the direction of the change here */
  color: #fff;
  text-decoration: none;
}

.btn-new {
  background-image: linear-gradient(to right, #314755 0%, #26a0da 51%, #314755 100%);
}

.btn-new {
  margin: 10px;
  padding: 15px 45px;
  text-align: center;
  transition: 0.5s;
  background-size: 200% auto;
  color: white;
  box-shadow: 0 0 20px #eee;
  border-radius: 10px;
  display: block;
}

.btn-new:hover {
  background-position: right center; /* change the direction of the change here */
  color: #fff;
  text-decoration: none;
}

.btn-dash {
  background-image: linear-gradient(to right, #283c86 0%, #45a247 51%, #283c86 100%);
}

.btn-dash {
  margin: 10px;
  padding: 15px 45px;
  text-align: center;
  transition: 0.5s;
  background-size: 200% auto;
  color: white;
  box-shadow: 0 0 20px #eee;
  border-radius: 10px;
  display: block;
}

.btn-dash:hover {
  background-position: right center; /* change the direction of the change here */
  color: #fff;
  text-decoration: none;
}

.shortcut {
  width: 12vw;
  border-radius: 15px;
  background-image: linear-gradient(to right, #403B4A 0%, #4781be 51%, #403B4A 100%);
  box-shadow: 15px 15px 41px #9cabc2, -15px -15px 41px #363636;
  text-align: center;
  cursor: pointer;
  padding: 5px;
  transition: 0.5s;
  background-size: 200% auto;
  color: white;
  box-shadow: 0 0 20px #eee;
  border-radius: 10px;
  display: block;
}
.shortcut h1, .shortcut h4 {
  color: white;
  overflow-wrap: break-word;
}

.shortcut:hover {
  background-position: right center; /* change the direction of the change here */
  color: #fff;
  text-decoration: none;
}
.shortcut:hover h1, .shortcut:hover h4 {
  text-shadow: 0 0 10px white;
}

.shortcutcontainer {
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
  align-content: center;
}

.btn-primary, .btn-primary:visited {
  border: none !important;
}

.btn-primary:active {
  background-color: #2893d1 !important;
  border: #ebe4f3 !important;
}

.btn-outline-light {
  border: none !important;
  color: white !important;
}

.btn-outline-light:hover {
  background-color: #535b61 !important;
  border: #102d41 !important;
  color: white !important;
}

.btn-light:hover {
  background-color: #535b61 !important;
  color: white !important;
}

@keyframes containerfade {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes alertfade {
  0% {
    opacity: 0;
    display: none;
    top: 3em;
  }
  10% {
    opacity: 1;
    top: 3em;
  }
  20% {
    opacity: 1;
    top: 3em;
  }
  80% {
    opacity: 1;
    top: 3em;
  }
  90% {
    opacity: 1;
    top: 3em;
  }
  100% {
    opacity: 0;
    display: none;
    z-index: -100;
    top: -100vh;
  }
}
@keyframes simpleupdatedivdropin {
  0% {
    max-height: 0;
    opacity: 0;
    transition: max-height 0.1s ease;
  }
  100% {
    max-height: 500px;
    opacity: 1;
  }
}
* {
  box-sizing: border-box;
}

.searchbox {
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
  align-items: center;
  padding: 6px;
}

h4 {
  color: #242423;
}

.navbar {
  grid-area: navbar-area;
}

.btn-primary, .btn-outline-light, .btn-sm {
  width: 90%;
  max-width: 200px;
}

.btn {
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
  margin: 2px;
}

.btn:active {
  position: relative;
  top: 1px;
}

.btn-success {
  background-color: #017c78 !important;
  border: none !important;
}

.btn-warning {
  background-color: #e4f49a !important;
  border: none !important;
}

.btn-danger {
  background-color: #900C3F !important;
  border: none !important;
}

.btn-danger:hover {
  background-color: #be1053 !important;
  border: none !important;
}

.accordion-button:not(.collapsed) {
  color: #0e1111;
  background-color: #c9e2e6;
}

.btn-light {
  border: none !important;
}

select:focus,
textarea:focus,
input[type=text]:focus,
input[type=password]:focus,
input[type=datetime]:focus,
input[type=datetime-local]:focus,
input[type=date]:focus,
input[type=month]:focus,
input[type=time]:focus,
input[type=week]:focus,
input[type=number]:focus,
input[type=email]:focus,
input[type=url]:focus,
input[type=search]:focus,
input[type=tel]:focus,
input[type=color]:focus,
.uneditable-input:focus {
  border-color: rgba(71, 160, 170, 0.8) !important;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.075) inset, 0 0 8px rgba(71, 160, 170, 0.8) !important;
  outline: 0 none;
}

.accordion-button:focus {
  border-color: rgba(71, 160, 170, 0.8) !important;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.075) inset, 0 0 8px rgba(71, 160, 170, 0.8) !important;
  outline: 0 none;
}

.loginparent {
  text-align: center;
  width: 400px;
  position: absolute;
  top: 50%;
  left: 70%;
  transform: translate(-50%, -50%);
}
.loginparent .loginblock {
  width: 100%;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
  max-width: 600px;
  display: inline-block;
  padding: 20px;
  border-radius: 3px;
}
.loginparent .loginblock div {
  margin-top: 10px;
}
.loginparent .loginblock h2 {
  color: white;
}

.loginblock .form-control {
  margin-top: 10px;
  margin-bottom: 10px;
  padding: 10px;
}

.loginscreen {
  z-index: -10;
  width: 100%;
  height: 100%;
  -o-object-fit: scale-down;
     object-fit: scale-down;
  margin: auto;
  position: fixed;
  right: 0;
  top: 0;
  -o-object-fit: contain;
  object-fit: contain;
}

.loginhead {
  z-index: 2;
  margin: auto;
  position: fixed;
  left: 5vw;
  top: 80vh;
  color: white;
  font-family: "Nunito Sans", sans-serif;
  text-shadow: 3px 3px 14px #161616;
}

body {
  margin: 0;
  display: grid;
  grid-template-columns: auto; /* sidebar is replaced with dropdown menu */
  grid-template-rows: 60px auto;
  grid-template-areas: "navbar-area" "main-area";
}

.sidebar {
  position: sticky;
  position: -webkit-sticky;
  min-height: 100vh;
}
.sidebar ul {
  max-height: 100vh;
  position: sticky;
}

.nav-link {
  margin-left: 2px;
}

.nav-item-selected {
  border: 1px solid #e0e0e0;
  border-radius: 3px;
}

.main {
  grid-area: main-area;
  overflow: visible;
}

.topcontainer {
  margin: auto;
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  align-items: center;
  align-self: center;
  padding: 10px;
}
.topcontainer div {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  width: 100%;
  text-align: center;
  align-content: center;
  margin-top: 2px;
  margin-bottom: 2px;
}

.adminbuttoncontainer {
  display: flex;
  flex-direction: column;
  justify-content: middle;
  align-items: center;
}

.adminbuttons {
  width: 95%;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: middle;
}

.formcontainer {
  margin: auto;
  width: 98%;
  display: flex;
  flex-direction: column;
  align-items: left;
  align-self: center;
  background-color: rgb(255, 255, 255);
  border-radius: 10px;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  box-shadow: rgba(0, 0, 0, 0.3) 2px 8px 8px;
  border: 1px rgba(255, 255, 255, 0.4) solid;
  border-bottom: 1px rgba(40, 40, 40, 0.35) solid;
  border-right: 1px rgba(40, 40, 40, 0.35) solid;
  animation-name: containerfade;
  animation-duration: 0.5s;
  animation-fill-mode: forwards;
}
.formcontainer p {
  color: #242423;
  font-size: 18px;
}

.simpleupdatecontainer {
  margin: auto;
  width: 80%;
  display: flex;
  flex-direction: column;
  align-items: left;
  align-self: center;
  background-color: #f1f1f1;
  border-radius: 5px;
  animation-name: simpleupdatedivdropin;
  animation-duration: 0.5s;
  animation-fill-mode: forwards;
}
.simpleupdatecontainer p {
  color: #242423;
  font-size: 18px;
}

.buttoncontainer {
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
}
.buttoncontainer button {
  margin: 10px;
}

.topdivwithbtn {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}
.topdivwithbtn div p a {
  width: 100%;
}

.topdivwithdetailsbtn {
  display: flex;
  flex-direction: row;
  align-items: top;
  justify-content: space-between;
}
.topdivwithdetailsbtn div p a {
  width: 100%;
}

label {
  color: #242423;
}

.inline-img {
  float: right;
  margin-bottom: 10px;
  margin-left: 20px;
  border-radius: 4px;
  margin-top: 8px;
  max-width: 200px;
}

@keyframes alertfade {
  0% {
    width: 2em;
  }
  10% {
    width: min(90vw, 60em);
  }
  90% {
    width: min(90vw, 60em);
  }
  100% {
    width: 2em;
    display: none;
  }
}
.alertmsg {
  position: absolute;
  top: 15px;
  padding: 1rem;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  color: rgb(231, 231, 231);
  border-radius: 2rem;
  border: 1.5px solid rgba(255, 255, 255, 0.25);
  box-shadow: 0 4px 32px 0 rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(12px) saturate(160%);
  -webkit-backdrop-filter: blur(12px) saturate(160%);
  z-index: 15 !important;
  left: 0;
  right: 0;
  width: min(80vw, 60em);
  margin-left: auto;
  margin-right: auto;
  animation-name: alertfade;
  animation-duration: 5.1s;
  animation-fill-mode: forwards;
  max-height: 3em;
}
.alertmsg div {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.alertmsg .msg {
  padding: 0 1rem;
  white-space: nowrap;
  overflow: hidden;
  animation: fadein;
  animation-duration: 0.6s;
  animation-fill-mode: forwards;
}
.alertmsg .button {
  margin: 0.4rem 0;
}

.errormsg {
  background: rgba(139, 19, 19, 0.9);
}

.successmsg {
  background: rgba(37, 14, 131, 0.9);
}

.warningmsg {
  background-color: #a47808;
}

#messages {
  animation-name: containerfade;
  animation-fill-mode: forwards;
  animation-duration: 5s;
  animation-play-state: paused;
}

.alertsuccess {
  background: rgba(2, 70, 41, 0.9);
  color: rgb(232, 232, 232);
}

.alerterror {
  background: rgba(139, 19, 19, 0.9);
  color: rgb(232, 232, 232);
}

.alertclose {
  z-index: 10;
  color: rgb(177, 176, 176);
}

.alertclose:hover,
.alertclose:focus {
  color: black;
  text-decoration: none;
  cursor: pointer;
}

nav .navbar-nav {
  display: none;
}

.navbar-brand a {
  color: rgb(233, 233, 233) !important;
}

.navbar-toggler-icon, .navbar-toggler {
  color: rgb(233, 233, 233) !important;
}

.navbar-collapse {
  float: right;
}

#addstockbulkform {
  display: none;
}

.detailscontainer {
  display: none;
}

.tablewrapper {
  font-size: 14px;
  overflow-x: auto;
  min-width: 100%;
  table-layout: fixed;
}

.simpletable {
  width: 100%;
  overflow: hidden;
  border-radius: 3px;
}
.simpletable td, .simpletable th {
  min-width: 100px;
  padding: 2px;
}
.simpletable tr:nth-child(even) {
  background-color: #ececec;
}
.simpletable tr:nth-child(odd) {
  background-color: #ffffff;
}
.simpletable tr:hover {
  background-color: #ddd;
}
.simpletable th {
  padding-top: 12px;
  padding-bottom: 12px;
  background-color: #b4caba;
  color: white;
}

.productbox {
  border: 2px solid grey !important;
}

.productbox:focus {
  outline: none;
  border-color: #10cfbc;
  box-shadow: 0 0 15px #10cfbc;
}

.simpletable th, tr, td {
  color: #242423;
  margin: 2px 0;
  align-self: center;
  text-align: center;
  border: 1px solid #b1b1b1;
}
.simpletable th td div, tr td div, td td div {
  text-align: center;
}
.simpletable th a, tr a, td a {
  list-style: none;
  text-decoration: none;
  color: inherit;
}
.simpletable th th, tr th, td th {
  align-self: center;
}

.form-switch {
  display: flex;
  flex-direction: row;
  align-items: center;
}

#addstockdiv {
  display: none;
}

.flexibleflex {
  display: flex;
  flex-direction: row;
}

.form-check-input {
  clear: left;
}

.form-switch.form-switch-sm {
  margin-bottom: 0.5rem; /* JUST FOR STYLING PURPOSE */
}
.form-switch.form-switch-sm .form-check-input {
  height: 1rem;
  width: calc(1rem + 0.75rem);
  border-radius: 2rem;
}

.form-switch.form-switch-md {
  margin-bottom: 1rem; /* JUST FOR STYLING PURPOSE */
}
.form-switch.form-switch-md .form-check-input {
  height: 1.5rem;
  width: calc(2rem + 0.75rem);
  border-radius: 3rem;
}

.form-switch.form-switch-lg {
  margin-bottom: 1.5rem; /* JUST FOR STYLING PURPOSE */
}
.form-switch.form-switch-lg .form-check-input {
  height: 2rem;
  width: calc(3rem + 0.75rem);
  border-radius: 4rem;
}

.form-switch.form-switch-xl {
  margin-bottom: 2rem; /* JUST FOR STYLING PURPOSE */
}
.form-switch.form-switch-xl .form-check-input {
  height: 2.5rem;
  width: calc(4rem + 0.75rem);
  border-radius: 5rem;
}

.mobileonly {
  display: none;
}

@media screen and (max-width: 600px) {
  .notificationdiv, .helpmenudiv {
    right: -10vw;
    width: 85vw;
  }
}
.right-col-reponsive {
  padding-left: 0 !important;
  padding-right: 0.75rem !important;
}
.right-col-reponsive .formcontainer {
  margin-left: 0 !important;
  margin-right: 0.25em !important;
}

@media screen and (max-width: 950px) {
  .inline-img {
    max-width: 30vw;
  }
  .right-col-reponsive {
    padding-left: 1em !important;
    padding-right: 0em !important;
  }
  .right-col-reponsive .formcontainer {
    margin-left: 0.25rem !important;
    margin-right: 0.25em !important;
  }
  .tablewrapper {
    width: 1rem;
  }
  .flexibleflex {
    display: flex;
    flex-direction: column;
    align-items: left;
  }
  .shortcutcontainer {
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: center;
  }
  .shortcut {
    width: 70vw;
    margin: 5px;
  }
  #usernamedisplay {
    float: right;
  }
  .desktoponly {
    display: none;
  }
  .mobileonly {
    display: block;
  }
  .nav-link {
    margin-left: 6px;
  }
  .simpleupdatecontainer {
    width: 100%;
  }
  .sidebar {
    display: none;
  }
  nav .navbar-nav {
    display: block;
  }
  .loginblock {
    width: 80%;
  }
  .topcontainer {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 10px;
    width: 80vw;
  }
  .formcontainer {
    width: 96%;
  }
  body {
    margin: 0;
    display: grid;
    grid-template-columns: auto;
    grid-template-rows: auto auto;
    grid-template-areas: "navbar-area" "main-area";
  }
  .adminbuttons {
    width: 95%;
    display: flex;
    flex-direction: column;
    justify-content: middle;
    align-items: center;
  }
  .loginparent {
    left: 50%;
  }
  .loginhead {
    top: 70vh;
  }
  .buttonlist {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
  }
  .buttonlist button {
    margin: 5px;
  }
  .buttonlist a {
    margin: 5px;
  }
}
@media screen and (max-width: 480px) {
  .authenticated_footer {
    left: 60vw;
    transform: translate(-50%, 0%);
  }
}/*# sourceMappingURL=style.css.map */