@import url("globals.ec9f46ea931f.css");
@import url("menu.107166130c37.css");
@import url("card.e571086fe556.css");
@import url("list.594892544c55.css");
@import url("typography.1c251f89496f.css");
@import url("buttons.1ad1fcf36d20.css");
@import url("forms.b5c97f5bcdb2.css");

/**
UI Containers
*/

.container {
  max-width: 120rem;
  margin-left: auto;
  margin-right: auto;
  padding: 2rem;
}

.accordion-heading {
  font-family: "worksans";
  font-size: 1.2rem;
  border-bottom: 2px solid var(--font-white);
  padding-left: 0.5rem;
}

.accordion-panel {
  padding: 1rem 0;
  animation: fadein 0.35s ease-in;
}

@keyframes fadein {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

.accordion__button:before {
  display: inline-block;
  content: "";
  height: 10px;
  width: 10px;
  margin-right: 12px;
  border-bottom: 4px solid currentColor;
  border-right: 4px solid currentColor;
  transform: rotate(-45deg);
}

.accordion__button[aria-expanded="true"]::before,
.accordion__button[aria-selected="true"]::before {
  transform: rotate(45deg);
}

.background-image {
  background: url("../images/bb_background.b6d6fe7a32d5.png") no-repeat center center fixed;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
}

[data-title]:hover:after {
  opacity: 1;
  transition: all 0.1s ease 0.5s;
  visibility: visible;
  width: 20rem;
}
[data-title]:after {
  content: attr(data-title);
  background-color: var(--card-color);
  color: var(--font-white);
  font-size: 0.7rem;
  line-height: 0.7rem;
  position: absolute;
  padding: 5px;
  bottom: -1.6em;
  border-radius: 0.3rem;
  left: 130%;
  white-space: wrap;
  box-shadow: 1px 1px 1px #222222;
  opacity: 0;
  z-index: 99999;
  visibility: hidden;
}
[data-title] {
  position: relative;
  font-family: "worksans";
}

.flex-centered {
  display: flex;
  justify-content: center;
  align-items: center;
}

.flex-column {
  display: flex;
  flex-direction: column;
}

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

.gap-1 {
  gap: 0.5rem;
}

.gap-2 {
  gap: 1rem;
}

.justify-between {
  justify-content: space-between;
}

.justify-left {
  justify-content: flex-left;
}

.justify-right {
  justify-content: flex-right;
}

.large-button {
  font-size: 4rem;
}

.transform-fix {
  transform: translateY(-0.25rem);
}

td.login-input > input {
  border: none !important;
  height: 3rem;
  width: 15rem;
  padding: 0 calc(3rem / 2);
  background-color: white;
}

.hide-scrollbar::-webkit-scrollbar {
  display: none;
}

/* Hide scrollbar for IE, Edge and Firefox */
.hide-scrollbar {
  -ms-overflow-style: none; /* IE and Edge */
  scrollbar-width: none; /* Firefox */
}

.login-container {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  align-content: center;
  margin-left: 55vw;
  width: max-content;
  max-width: 99vw;
}

.login-button {
  width: 15rem;
  background-color: var(--main-bg-color);
  color: var(--font-white);
  height: 3rem;
  border: none;
}

.login-background {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

.login-window {
  position: static;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  padding: 11vh 0 0 0;
}

.main-window {
  position: static;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  padding: 11vh 5rem 0 7rem;
  overflow-x: auto;
}

.margin-auto {
  margin: auto;
}

.navbar {
  background: url("../images/bb_background.b6d6fe7a32d5.png") no-repeat left center fixed;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
  background-position: 0 -10rem;
  display: flex;
  background-color: rgb(46, 50, 53);
}

.language-button {
  color: var(--font-white);
  text-decoration: none !important; /* Remove button underline on hover. */
}

.navbar-item {
  display: flex;
  align-items: center;
  font-size: 1.2rem;

  @media screen and (min-width: 768px) {
    font-size: 1.5rem;
  }
}

.navbar-logo {
  height: 8rem;
  @media screen and (max-width: 768px) {
    height: 5rem;
  }
}

.nav-link {
  color: var(--font-white);
  text-decoration: none;
}
.nav-link:hover {
  color: var(--font-highlight);
}

.order-list-wrapper {
  width: 100%;
  height: 49vh;
  overflow: hidden;
}

.order-list-container {
  height: 49vh;
  box-sizing: border-box;
  width: calc(100% + 30px);
  padding-right: 30px;
  overflow-y: scroll;
  overflow-x: hidden;
}

.order-item-card {
  background-color: var(--card-color);
  border-radius: 5px;
  margin: 0.5rem 0;
  padding: 1.2rem 2rem 0.8rem 2rem;
  min-width: fit-content;
}

.order-title {
  cursor: pointer;
}
.order-title:hover {
  text-decoration: underline;
}

.prevent-select {
  -webkit-user-select: none; /* Safari */
  -ms-user-select: none; /* IE 10 and IE 11 */
  user-select: none; /* Standard syntax */
}

.shadowed-light {
  box-shadow: 3px 5px 0px 0px var(--shadow-light);
  -webkit-box-shadow: 3px 5px 0px 0px var(--shadow-light);
  -moz-box-shadow: 3px 5px 0px 0px var(--shadow-light);
}

.shadowed-dark {
  box-shadow: 3px 5px 0px 0px var(--shadow-dark);
  -webkit-box-shadow: 3px 5px 0px 0px var(--shadow-dark);
  -moz-box-shadow: 3px 5px 0px 0px var(--shadow-dark);
}

.special-divider {
  border: 1px dashed var(--font-white);
  margin: 0.5rem 0 1rem 0;
  transform: skew(-45deg);
}

.status-icon {
  height: 5rem;
  width: 5rem;
  text-align: center;
  border-radius: 50%;
  line-height: 0.8rem;
  font-size: 0.6rem;
}

.worksans-font {
  font-family: "worksans";
  font-size: 1rem;
  line-height: 1rem;
}

.some-button {
  border: none;
  height: 2.5rem;
  padding: 0 calc(2rem / 2);
  display: inline-flex;
  padding: 0 1.5rem;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  white-space: nowrap;
  -webkit-user-select: none; /* Safari */
  -ms-user-select: none; /* IE 10 and IE 11 */
  user-select: none; /* Standard syntax */
  cursor: pointer;
}

.some-button-nobackground {
  border: none;
  height: 2.5rem;
  background: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  -webkit-user-select: none; /* Safari */
  -ms-user-select: none; /* IE 10 and IE 11 */
  user-select: none; /* Standard syntax */
}

.some-button-nobackground:hover {
  text-decoration: underline;
}

.reader-comment {
  padding: 1rem;
  overflow: auto;
  border-radius: var(--border-radius);
}

.vertical-centered {
  display: flex;
  align-items: center;
}

.horizontal-centered {
  display: flex;
  justify-content: center;
}

/* unrevised below this line */

hr {
  margin: 0.5rem 0;
}

label {
  font-weight: 400;
}

.text-italic {
  font-style: italic;
}

.transparent-background {
  background-color: transparent;
}

.transparent-table td {
  background-color: transparent !important;
}
.transparent-table td:first-child {
  padding-left: 0;
}

.notification-menu {
  width: max-content;
  height: auto;
  opacity: 1;
  position: absolute;
  top: 17px;
  right: 42px;
  border-radius: 1rem 0px 1rem 1rem;
  padding: 1rem 1.5rem;
  background-color: #fff;
  box-shadow:
    0 4px 8px 0 rgba(0, 0, 0, 0.2),
    0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

.notification-menu {
  min-height: 5vh;
  z-index: 10;
}
.notification-itemlist {
  overflow-y: scroll;
  height: 60vh;
  width: 25rem;
  border-top: 1px solid var(--font-black);
  border-bottom: 1px solid var(--font-black);
}

.notification-text {
  color: var(--font-gray);
  font-size: 0.8rem;
  word-break: normal;
}

.notification-timestamp {
  color: var(--font-gray);
  font-size: 0.7rem;
  margin-left: auto;
}

.notification-title {
  text-decoration: underline;
  margin-bottom: 0.5rem;
}

.notification-unread {
  color: var(--font-black);
}

.notification-unread-bold {
  color: var(--font-black);
  font-weight: bold;
}

.notification-menu h2 {
  font-size: 1rem;
  color: var(--font-black);
}
.notification-menu h2 span {
  color: #f00;
}
.notification-item {
  display: flex;
  flex-direction: column;
  border-bottom: 1px solid #eee;
  padding: 0.5rem;
  cursor: pointer;
}
.notification-item:hover {
  background-color: #eee;
}
.notification-item img {
  display: block;
  width: 50px;
  height: 50px;
  margin-right: 9px;
  border-radius: 50%;
  margin-top: 2px;
}
.notification-item .notification-text h4 {
  color: var(--font-black);
  font-size: 1rem;
  margin-top: 3px;
}
.notification-icon {
  color: var(--main-bg-color);
  cursor: pointer;
  font-size: 1.5rem;
  transition: color 0.3s;
}

.notification-icon:hover {
  color: var(--light-bg-color);
}

.small-button {
  display: inline-flex;
  border: none;
  border-radius: 5px;
  background-color: #ffffff;
  color: black;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 0.8em;
}
.small-button:hover {
  -webkit-box-shadow: 0px 0px 6px 1px rgba(255, 255, 255, 0.5);
  -moz-box-shadow: 0px 0px 6px 1px rgba(255, 255, 255, 0.5);
  box-shadow: 0px 0px 6px 1px rgba(255, 255, 255, 0.5);
  color: rgb(39, 39, 39);
}

.button-disabled {
  color: rgb(58, 58, 58);
  background-color: #aaa;
}

.centered {
  align-items: center;
  justify-items: center;
}

.dropdown {
  display: flex;
  flex-direction: column;
  min-width: max-content;
}

.extra-info-label {
  font-size: 0.8rem;
  line-height: 0.8rem;
}

.flex-even {
  display: flex;
  justify-content: space-between;
}

.mr-small {
  margin-right: 0.5rem;
}

.mr-medium {
  margin-right: 1rem;
}

.ml-small {
  margin-left: 0.5rem;
}

.ml-medium {
  margin-left: 1rem;
}

.mb-small {
  margin-bottom: 0.2rem;
}

.mb-medium {
  margin-bottom: 0.5rem;
}

.mb-large {
  margin-bottom: 2rem;
}

.mh-small {
  margin-left: 0.5rem;
  margin-right: 0.5rem;
}

.mh-large {
  margin-left: 2rem;
  margin-right: 2rem;
}

.mv-small {
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
}

.pr-small {
  padding-right: 0.5rem;
}

.pr-medium {
  padding-right: 1.5rem;
}

.pl-zero {
  padding-left: 0 !important;
}

.pl-small {
  padding-left: 0.5rem;
}

.pl-medium {
  padding-left: 1.5rem;
}

.pt-small {
  padding-top: 0.5rem;
}

/* Backgrounds */
.bg-light {
  background-color: var(--light-bg-color);
}
.bg-gray {
  background-color: var(--gray-bg-color);
}
.bg-main {
  background-color: var(--main-bg-color);
}

.reader-maybe-input::placeholder {
  text-align: center;
  font-weight: bold;
  padding-top: 1rem;
}

.width-50 {
  width: 50%;
  min-width: fit-content;
}

.width-full {
  width: 100%;
}

.order-area {
  max-width: 60rem;
}

.no-wrap {
  flex-wrap: nowrap;
}

.fa-stack[data-count]:after {
  position: absolute;
  right: 0%;
  top: 1%;
  content: attr(data-count);
  font-size: 60%;
  padding: 0.6em;
  border-radius: 999px;
  line-height: 0.75em;
  color: white;
  background: rgb(255, 0, 0);
  text-align: center;
  min-width: 2em;
}

/* Toggle-button styles */
/* The switch - the box around the slider */
.switch {
  position: relative;
  display: inline-block;
  width: 30px;
  height: 17px;
}

/* Hide default HTML checkbox */
.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

/* The slider */
.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.slider:before {
  position: absolute;
  content: "";
  height: 13px;
  width: 13px;
  left: 2px;
  bottom: 2px;
  background-color: white;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

/* Rounded sliders */
.slider.round {
  border-radius: 17px;
}

.slider.round:before {
  border-radius: 50%;
}
