@charset "UTF-8";
.global-header {
  display: block;
  width: 100%;
  background: #212121;
}
.global-header .home-link {
  display: inline-block;
  margin-left: 28px;
  padding: 8px;
}
.global-header .navbar-search-loading {
  position: absolute;
  right: 24px;
  top: 4px;
}
.global-header .fringe {
  height: 48px;
  background: #006064;
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-between;
  align-items: center;
  padding: 0 24px;
  color: #fafafa;
}
.global-header .fringe input[type="checkbox"],
.global-header .fringe input[type="checkbox"] + span {
  color: #fafafa;
}
.global-header .fringe .search {
  background: #fff;
  border: none;
  border-radius: 4px;
  opacity: 0.9;
  margin-right: 16px;
}
.global-header .fringe .search:focus {
  opacity: 1;
}
.global-header .content {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  height: 96px;
  padding: 0 24px;
  box-sizing: border-box;
}
.global-header .content .logo {
  width: 280px;
}
.global-header .content .nav .nav-item {
  display: inline-block;
}
.global-header .content .nav .nav-item .nav-link {
  font-size: 15px;
  color: #fafafa;
  opacity: 0.65;
  display: inline-block;
  padding: 4px 8px;
  cursor: pointer;
}
.global-header .content .nav .nav-item .nav-link:hover {
  opacity: 1;
}
.global-header .content .nav .nav-item .current .nav-link {
  cursor: default;
  opacity: 1;
}

.global-footer {
  margin: 24px 0 0 0;
  text-align: center;
}
.global-footer p {
  margin: 8px 0;
  color: #757575;
  font-size: 18px;
}
.global-footer .quick-about {
  font-size: 20px;
  color: #616161;
}

input[type="text"],
textarea,
select {
  height: 32px;
  padding: 0 18px;
  border-radius: 0;
  box-sizing: border-box;
  width: 240px;
  outline: none;
  font-size: 15px;
  border: none;
  background: #fff;
}

textarea {
  height: auto;
}
textarea:not(.resizable) {
  resize: none;
}

.field label {
  display: block;
  margin-bottom: 6px;
}
.field input[type="text"],
.field textarea,
.field select {
  border: none;
  border-bottom: 2px solid #bdbdbd;
}
.field input[type="text"]:focus,
.field textarea:focus,
.field select:focus {
  border-bottom-color: #006064;
}

.btn {
  border: none;
  background: transparent;
  appearance: none;
  font-size: 15px;
  color: #fafafa;
  display: inline-block;
  padding: 8px 12px;
}
.btn:not([disabled]):hover {
  background-color: rgba(0, 0, 0, 0.1);
  border-radius: 4px;
  cursor: pointer;
}
.btn.light {
  color: #006064;
}

input[type="checkbox"],
input[type="radio"] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: transparent;
  border: none;
  font-family: "Material Icons";
  font-size: 24px;
  position: relative;
  top: 6px;
  outline: none !important;
}
input[type="checkbox"],
input[type="checkbox"] + span,
input[type="radio"],
input[type="radio"] + span {
  color: #006064;
}
input[type="checkbox"]:checked::before,
input[type="radio"]:checked::before {
  content: "check_box";
}
input[type="checkbox"]:not(:checked)::before,
input[type="radio"]:not(:checked)::before {
  content: "check_box_outline_blank";
}
input[type="checkbox"][type="radio"]:checked::before,
input[type="radio"][type="radio"]:checked::before {
  content: "radio_button_checked";
}
input[type="checkbox"][type="radio"]:not(:checked)::before,
input[type="radio"][type="radio"]:not(:checked)::before {
  content: "radio_button_unchecked";
}

.checkbox-label {
  user-select: none;
}

form.disabled {
  pointer-events: none;
  transition: opacity 2s ease;
  opacity: 0.2;
}

.grid-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px 24px;
  width: 640px;
  margin: 80px auto 24px auto;
}
.grid-form textarea,
.grid-form select,
.grid-form input[type="text"] {
  width: 100%;
}
.grid-form .span-2 {
  grid-column: 1 / span 2;
}
.grid-form .submit-container {
  text-align: right;
}
.grid-form + .grid-form {
  margin: 64px auto 24px auto;
}

h1,
.h1 {
  color: #616161;
  margin: 0 0 36px 0;
  font-size: 28px;
}

h2,
.h2 {
  margin: 48px 0 24px 0;
  color: #757575;
  font-size: 22px;
}

p,
.p {
  margin: 18px auto;
  line-height: 140%;
  color: #424242;
}

.max-w {
  max-width: 860px;
  margin: auto;
}

li > p {
  margin-top: 8px;
  margin-bottom: 8px;
}

.center {
  text-align: center;
}

a.external {
  color: #1565c0;
}
a.external::after {
  font-family: "Material Icons";
  content: "open_in_new";
  color: #1565c0;
  margin-left: 4px;
  position: relative;
  top: 3px;
}

ul.bullet li {
  display: flex;
  flex-direction: row;
}
ul.bullet li p {
  margin-left: 0;
}
ul.bullet li::before {
  content: "•";
  color: #9e9e9e;
  font-size: 24px;
  margin-right: 12px;
  position: relative;
  top: 3px;
}

.picture-grid {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 8px;
  margin: 24px 0;
}
.picture-grid > * {
  width: 100%;
}

.example-search-query {
  font-weight: 400;
  color: #757575;
}

.search-view-container {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  min-height: 100%;
  background: #fff;
  padding: 48px 56px;
  box-sizing: border-box;
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  transition: all 250ms cubic-bezier(0.215, 0.61, 0.355, 1);
}
.search-view-container:not(.open) {
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  opacity: 0;
  pointer-events: none;
}
.search-view-container .search-view .search-result {
  transition: opacity 500ms cubic-bezier(0.215, 0.61, 0.355, 1);
  opacity: 1;
}
.search-view-container .search-view.search-loading .search-result {
  pointer-events: none;
  opacity: 0.25;
}

.no-items {
  text-align: center;
  font-weight: 300;
  color: #424242;
  font-size: 26px;
  margin: 64px 0;
}

.articles .search-loading {
  margin: 24px auto;
}
.articles .search-result .img-container {
  position: relative;
}
.articles .search-result .img-container .magnifier {
  opacity: 0;
}
.articles .search-result .img-container:hover .magnifier {
  opacity: 1;
}
.articles .search-result .magnifier {
  pointer-events: none;
  width: 360px;
  height: 360px;
  position: absolute;
  transition: opacity 150ms ease-in-out;
  left: 75%;
  top: 75%;
  z-index: 999;
  transform: translateY(-50%);
  padding: 8px;
  padding: 4px;
  background: #fafafa;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.15);
}
.articles .search-result .magnifier img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.articles .search-result .article-image {
  object-fit: cover;
  width: 80px;
  height: 80px;
  margin-right: 12px;
}
.articles .search-result .mpn {
  background: #eeeeee;
  color: #424242;
  padding: 8px 24px;
  width: 100%;
}
.articles .search-result .row {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  margin: 4px 0;
}
.articles .search-result .text-content {
  width: 100%;
  display: grid;
  grid-template-columns: 2fr 2fr 2fr 2fr 2fr;
}
.articles .search-result .text-content .cell {
  position: relative;
  padding: 8px;
}
.articles .search-result .text-content .cell .ic-info {
  font-size: 18px;
  top: 3px;
  position: relative;
  color: #757575;
}
.articles .search-result .text-content .cell p {
  margin: 8px 0;
}
.articles .search-result .text-content .cell p:empty {
  visibility: hidden;
}
.articles .search-result .text-content .cell p:empty::before {
  content: "|";
}
.articles .search-result .text-content .cell .tp-row {
  display: flex;
  flex-direction: row;
}
.articles .search-result .text-content .cell .tp-row p {
  margin: 0;
  position: relative;
  bottom: -6px;
  margin-left: 6px;
  color: #757575;
}
.articles .search-result input[name="quantity"] {
  width: 86px;
}
.articles .search-result input[name="target-price"] {
  width: 96px;
}
.articles .search-result textarea[name="comment"] {
  width: 96px;
}
.articles .search-result .field {
  padding: 0 8px;
}

#global-notification {
  position: fixed;
  left: 50%;
  bottom: 18px;
  padding: 18px 24px;
  background: #006064;
  color: #fafafa;
  border-radius: 6px;
  transition: all 250ms cubic-bezier(0.455, 0.03, 0.515, 0.955);
  opacity: 0;
  transform: translate(-50%, 0);
  box-shadow: 0 0 16px rgba(0, 0, 0, 0.075);
  pointer-events: none;
}
#global-notification.visible {
  opacity: 1;
  pointer-events: all;
}

.task-indicator {
  border: 4px solid transparent;
  border-top-color: #006064;
  width: 48px;
  height: 48px;
  box-sizing: border-box;
  border-radius: 50%;
  animation: indicator-spin 500ms linear infinite;
}
.task-indicator.tiny {
  border-width: 2px;
  width: 24px;
  height: 24px;
}

@keyframes indicator-spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(359deg);
  }
}
.tooltip-trigger + .tooltip {
  position: absolute;
  bottom: 0;
  transform: translate(24px, 100%);
  right: 0;
  opacity: 0;
  transition: opacity 150ms ease;
  white-space: nowrap;
  background: #f1f1f1;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.075);
  padding: 8px 16px;
  pointer-events: none;
  z-index: 999;
}
.tooltip-trigger + .tooltip p {
  margin: 0;
}
.tooltip-trigger:hover + .tooltip {
  pointer-events: all;
  opacity: 1;
}

.modal-container {
  pointer-events: none;
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  opacity: 0;
  background: rgba(0, 0, 0, 0.75);
  overflow-y: auto;
  z-index: 99;
}
.modal-container .modal {
  position: relative;
}
.modal-container .modal .close-btn {
  position: absolute;
  top: 24px;
  right: 24px;
  text-decoration: none;
  color: #757575;
  opacity: 0.75;
}
.modal-container .modal .close-btn:hover {
  opacity: 1;
}
.modal-container .modal a {
  color: #0277bd;
}
.modal-container .modal-section.hidden {
  display: none !important;
}
.modal-container,
.modal-container .modal {
  transition: all 250ms cubic-bezier(0.455, 0.03, 0.515, 0.955);
}
.modal-container.visible,
.modal-container.visible .modal {
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}
.modal-container .modal {
  position: absolute;
  left: 50%;
  width: 100vw;
  box-sizing: border-box;
  padding: 36px 48px;
  margin: 15vh 0;
  max-width: 480px;
  border-radius: 4px;
  transform: translateX(-50%);
  background: #eee;
}
.modal-container.visible {
  opacity: 1;
  pointer-events: all;
}

body.has-modal {
  overflow: hidden;
}

.currency-chooser {
  position: absolute;
  top: -8px;
  left: 24px;
  transform: translate(-100%, -100%);
  transition: top 150ms cubic-bezier(0.215, 0.61, 0.355, 1),
    opacity 150ms cubic-bezier(0.215, 0.61, 0.355, 1);
  background: #fafafa;
  padding: 6px 0;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.075);
}
.currency-chooser:not(.visible) {
  opacity: 0;
  pointer-events: none;
  top: 8px;
}
.currency-chooser .item {
  width: 64px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  padding: 8px 16px;
  display: block;
  font-size: 15px;
  text-align: right;
}
.currency-chooser .item:hover {
  cursor: pointer;
  background: #eee;
}

.currency-chooser-trigger {
  display: inline-block;
  padding: 6px;
  border-radius: 4px;
}
.currency-chooser-trigger:hover {
  background: #eee;
  cursor: pointer;
}

.order-confirm .status .material-icons {
  position: relative;
  top: 5px;
}
.order-confirm .status.confirmed,
.order-confirm .status.confirmed * {
  color: #43a047;
}
.order-confirm .status.rejected,
.order-confirm .status.rejected * {
  color: #e53935;
}
.order-confirm .images {
  display: flex;
  flex-basis: 20%;
  gap: 6px;
}
.order-confirm .images .image {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.order-confirm .images .image .task-indicator {
  position: absolute;
  z-index: 10;
}
.order-confirm .images .image img {
  min-height: 80px;
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.05);
}
.order-confirm .images .image img:hover {
  box-shadow: 0 0 24px rgba(0, 0, 0, 0.25);
}
.order-confirm .images .image,
.order-confirm .images .image *:not(.task-indicator) {
  width: 100%;
}
.order-confirm .confirm-form {
  margin: 24px 0;
}
.order-confirm .confirm-form .field {
  margin: 18px 0;
}

#modal-pic .modal {
  max-width: unset;
  width: calc(100vw - 48px);
  padding: 24px;
  min-height: 120px;
  /* make dismissable by clicking */
  pointer-events: none;
}
#modal-pic .modal img {
  width: 100%;
}

* {
  margin: 0;
  padding: 0;
  font-family: "Roboto", sans-serif;
}

html,
body {
  min-height: 100vh;
}

body {
  display: flex;
  flex-direction: column;
  background: #eee;
  overflow-y: scroll;
  min-width: 800px;
}

.notice {
  color: #c62828;
}

.page-container {
  width: calc(100vw - 256px);
  min-width: 768px;
  margin: auto;
  background: #fff;
  box-shadow: 0 2px 80px rgba(0, 0, 0, 0.15);
  margin-top: 48px;
  flex-grow: 1;
  padding: 48px 56px;
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  display: flex;
  flex-direction: column;
  position: relative;
}
.page-container .content {
  width: 100%;
  flex-grow: 1;
  /* covered by the search view. */
}
.page-container .content.covered {
  display: none;
}

a {
  text-decoration: none;
}

ul {
  list-style: none;
}

.example-search-section {
  margin-top: 48px;
}

.cart-item-indicator {
  position: absolute;
  top: -1px;
  right: -1px;
  width: 10px;
  height: 10px;
  background: #cddc39;
  border-radius: 50%;
  pointer-events: none;
  animation: cart-item-indicator-flash 1.25s ease infinite;
}

@keyframes cart-item-indicator-flash {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(6.5);
    opacity: 0;
  }
  51% {
    transform: scale(0.1);
  }
  0% {
    transform: scale(1);
    opacity: 1;
  }
}

/*# sourceMappingURL=styles.css.map */

.dropdown-holder {
  color: white;
  font-weight: bold;
  position: relative;
}

.dropdown {
  display: none;
  position: absolute;
  background: white;
  padding: 10px;
  top: 15px;
  left: 0;
  z-index: 99;
  border-radius: 10px;
}

.dropdown li {
  padding: 5px;
}

.dropdown li:not(:last-of-type) {
  border-bottom: 1px solid grey;
}

.dropdown li a {
  color: black;
}

.dropdown li a:hover {
  color: #006064;
}

.dropdown li a.logout {
  font-weight: bold !important;
}

.dropdown-holder:hover > .dropdown,
.dropdown:hover {
  display: block;
}
