.modern-disabled {
  background-color: transparent;
  color: black;
}
.modern-disabled:not(:hover) {
  opacity: 0.5;
}
.modern-limit-reached {
  background-color: #0084c8;
  color: white;
}
.modern-limit-reached .IconQuestionCircle {
  color: white;
}
.modern-limit-passed {
  background-color: #dc0000;
  color: white;
}
.modernCard {
  border-radius: 3px;
  border: 1px solid transparent;
}
.modernCard .overlay {
  position: absolute;
  opacity: 1;
  left: 0;
  right: 0;
  bottom: 0;
  height: 5px;
  transform-origin: bottom left;
  transition: transform 0.3s, background-color 0.3s;
  pointer-events: none;
  background: #0084c8;
}
.modernCard:not(.overLimit).disabled {
  background-color: transparent;
  color: black;
}
.modernCard:not(.overLimit).disabled:not(:hover) {
  opacity: 0.5;
}
.modernCard:not(.overLimit):not(.disabled) {
  background: white;
}
.modernCard:not(.overLimit):not(.disabled).cannotOrder {
  background-color: #0084c8;
  color: white;
}
.modernCard:not(.overLimit):not(.disabled).cannotOrder .IconQuestionCircle {
  color: white;
}
.modernCard:not(.overLimit):not(.disabled).cannotOrder .overlay {
  display: none;
}
.modernCard.overLimit {
  background-color: #dc0000;
  color: white;
}
.modernCard.overLimit .overlay {
  display: none;
}
.modernClickableCard {
  border-radius: 3px;
  border: 1px solid transparent;
  cursor: pointer;
}
.modernClickableCard .overlay {
  position: absolute;
  opacity: 1;
  left: 0;
  right: 0;
  bottom: 0;
  height: 5px;
  transform-origin: bottom left;
  transition: transform 0.3s, background-color 0.3s;
  pointer-events: none;
  background: #0084c8;
}
.modernClickableCard:not(.overLimit).disabled {
  background-color: transparent;
  color: black;
}
.modernClickableCard:not(.overLimit).disabled:not(:hover) {
  opacity: 0.5;
}
.modernClickableCard:not(.overLimit):not(.disabled) {
  background: white;
}
.modernClickableCard:not(.overLimit):not(.disabled).cannotOrder {
  background-color: #0084c8;
  color: white;
}
.modernClickableCard:not(.overLimit):not(.disabled).cannotOrder .IconQuestionCircle {
  color: white;
}
.modernClickableCard:not(.overLimit):not(.disabled).cannotOrder .overlay {
  display: none;
}
.modernClickableCard.overLimit {
  background-color: #dc0000;
  color: white;
}
.modernClickableCard.overLimit .overlay {
  display: none;
}
.modernClickableCard:hover {
  border-color: #0084c8;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.navSized {
  padding: 2rem/2;
  line-height: 2rem;
}
.compressed {
  font-family: sans-serif;
  font-size: 80%;
}
.unPadded {
  padding: 0;
  margin: 0;
}
.linkStyle {
  font: inherit;
  appearance: none;
  border: none;
  background: none;
  cursor: pointer;
  color: #005c94;
  font-weight: bold;
}
.linkStyle:not(:hover) {
  text-decoration: none;
}
.linkStyle:hover {
  text-decoration: underline;
}
.linkStyle > .Icon {
  width: 2em;
  vertical-align: middle;
}
@media print {
  .linkStyle {
    color: black;
    text-decoration: none;
  }
}
.linkStyle[disabled] {
  opacity: 0.5;
  text-decoration: line-through;
  cursor: not-allowed;
}
.noFlexGrow {
  flex-grow: 0;
}
.std-input-look {
  width: auto;
  background-color: white;
  font: inherit;
  border-radius: 3px;
  box-shadow: none;
  border: 1px solid #dfdbdb;
}
.std-input-look:hover:not([disabled]),
.std-input-look:focus-within {
  border-color: #0084c8;
  outline: none;
}
.std-input-size {
  height: 60px;
  line-height: 20px;
  padding: 19px 20px;
  white-space: nowrap;
}
.std-textarea-size {
  margin: 0;
  min-height: 180px;
  padding: 19px 20px;
  line-height: 20px;
}
.content .button,
.button {
  font-family: sans-serif;
  font-size: 16px;
  text-transform: uppercase;
  appearance: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: white;
  text-align: center;
  border: none;
  cursor: pointer;
  font-weight: 700;
  border-radius: 3px;
  box-shadow: 0 2px 0 #64a800;
  text-shadow: 0 0 5px rgba(0, 0, 0, 0.21);
  transition: transform 0.2s, box-shadow 0.2s;
  background-color: #93d200;
  margin: 0.5em 0;
  line-height: 40px;
  padding: 0 20px;
}
.content .button span,
.button span {
  font: inherit;
}
.content .button > i:not(.square):first-child,
.button > i:not(.square):first-child,
.content .button > svg:not(.square):first-child,
.button > svg:not(.square):first-child {
  margin-right: 0.7em;
}
.content .button > i:not(.square):last-child,
.button > i:not(.square):last-child,
.content .button > svg:not(.square):last-child,
.button > svg:not(.square):last-child {
  margin-left: 0.7em;
}
.content .button.square,
.button.square {
  text-align: center;
  min-width: 40px;
  display: flex;
  min-height: 40px;
}
.content .button:not([disabled]):hover,
.button:not([disabled]):hover,
.content .button:not([disabled]):focus,
.button:not([disabled]):focus,
.content .button:not([disabled]):focus-within,
.button:not([disabled]):focus-within {
  background-color: #6f9f00;
  text-decoration: none;
  outline: none;
}
.content .button:not([disabled]):active:hover,
.button:not([disabled]):active:hover {
  transform: translate(0, 2px);
  box-shadow: 0 0 0 #64a800;
}
.content .button.fullWidth,
.button.fullWidth {
  width: 100%;
}
.content .button.red,
.button.red {
  background-color: #dc0000;
  box-shadow: 0 2px 0 #b50000;
}
.content .button.red:not([disabled]):hover,
.button.red:not([disabled]):hover,
.content .button.red:not([disabled]):focus,
.button.red:not([disabled]):focus,
.content .button.red:not([disabled]):focus-within,
.button.red:not([disabled]):focus-within {
  background-color: #a90000;
  outline: none;
}
.content .button.red:not([disabled]):active:hover,
.button.red:not([disabled]):active:hover {
  box-shadow: 0 0 0 #b50000;
}
.content .button.white,
.button.white {
  background: white;
  box-shadow: 0 1px 0 #444;
  color: #444;
  text-shadow: none;
  border: 1px solid #444;
}
.content .button.white[disabled],
.button.white[disabled] {
  background-color: transparent;
  box-shadow: 0 0 0 #dadada;
  color: #00000021;
  border: 1px solid #0000001a;
  text-shadow: none;
}
.content .button.white:not([disabled]):hover,
.button.white:not([disabled]):hover,
.content .button.white:not([disabled]):focus,
.button.white:not([disabled]):focus,
.content .button.white:not([disabled]):focus-within,
.button.white:not([disabled]):focus-within {
  background: #fff;
  color: #222;
  outline: none;
}
.content .button.white:not([disabled]):active:hover,
.button.white:not([disabled]):active:hover {
  transform: translate(0, 1px);
  box-shadow: 0 0 0 #444;
}
.content .button.onLightBackground,
.button.onLightBackground {
  color: #333;
  text-shadow: none;
}
.content .button[disabled],
.button[disabled],
.content .button[disabled]:hover,
.button[disabled]:hover,
.content .button[disabled]:active:hover,
.button[disabled]:active:hover,
.content .button[disabled]:focus,
.button[disabled]:focus,
.content .button[disabled]:focus-within,
.button[disabled]:focus-within {
  cursor: initial;
  transform: none;
  background-color: #bdbdbd;
  box-shadow: 0 2px 0 #989898;
  text-shadow: 0 0 5px rgba(0, 0, 0, 0.12);
  outline: none;
}
.content .button.small,
.button.small {
  line-height: 25px;
  font-size: 14px;
  padding: 0 5px;
}
.button-wrapper {
  position: relative;
  padding-right: 40px;
  height: 42px;
}
.button-wrapper > .button {
  margin: 0;
  width: 100%;
  text-align: left;
  justify-content: flex-start;
}
.button-wrapper > .button.main {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
.button-wrapper > .dropDown {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  padding: 0;
  width: 40px;
  height: 40px;
  position: absolute;
  right: 0;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-left: 1px solid rgba(0, 0, 0, 0.1);
}
.button-wrapper > .dropDown svg {
  margin: 0;
}
.button-wrapper.closed {
  overflow: hidden;
}
.button-wrapper.closed > .other-actions {
  visibility: hidden;
  pointer-events: none;
}
.button-wrapper.opened {
  overflow: visible;
  z-index: 10;
}
.button-wrapper.opened > .dropDown i.fa {
  transform: rotate(180deg);
}
.button-wrapper > .other-actions {
  display: flex;
  flex-direction: column;
}
.button-wrapper > .other-actions > .button {
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  justify-content: flex-start;
  text-align: left;
  margin: 0;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}
.button-wrapper > .other-actions > .button:not(:last-child) {
  box-shadow: none;
  border-radius: 0;
}
.select-css {
  display: block;
  font-size: 16px;
  font-family: sans-serif;
  color: #444;
  line-height: 20px;
  padding: 9px 50px 9px 9px;
  max-width: 100%;
  margin: 0;
  border: 1px solid #dfdbdb;
  box-shadow: none;
  border-radius: 3px;
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  background-color: #fff;
  padding-right: 60px !important;
  background-repeat: no-repeat, repeat;
  background-position: right 0.7em top 50%, 0 0;
  background-size: 33px auto, 100%;
  flex-grow: 1;
  /* Disabled styles */
}
.select-css::-ms-expand {
  display: none;
}
.select-css:hover,
.select-css:focus {
  border-color: #0084c8;
  outline: none;
  color: #222;
}
.select-css option {
  font-weight: normal;
  line-height: 20px;
}
.select-css:disabled,
.select-css[aria-disabled='true'] {
  color: graytext;
  opacity: 0.8;
  pointer-events: none;
}
.select-css.startBlock {
  border-radius: 3px 0 0 3px;
  margin-right: -1px;
}
.select-css.endBlock {
  border-radius: 0 3px 3px 0;
}
.select-css.startBlock:hover,
.select-css.endBlock:hover,
.select-css.startBlock:focus,
.select-css.endBlock:focus {
  z-index: 1;
  position: relative;
}
.InvoiceRender {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  line-height: 20px;
}
.InvoiceRender,
.InvoiceRender * {
  box-sizing: border-box;
}
.InvoiceRender p {
  margin: 5px 0;
}
.InvoiceRender header {
  display: grid;
  flex-grow: 1;
  flex-shrink: 1;
  grid-template-columns: 1fr 1fr;
  grid-template-areas: "seller week" "seller client" "date client";
}
.InvoiceRender header > p,
.InvoiceRender header h3,
.InvoiceRender header h4 {
  grid-column: span 2;
}
.InvoiceRender header > div:first-child {
  grid-area: week;
  text-align: right;
  margin-bottom: 1em;
}
.InvoiceRender header > div:nth-child(2) {
  grid-area: seller;
}
.InvoiceRender header > div:nth-child(3) {
  grid-area: client;
}
.InvoiceRender header > p:nth-child(4) {
  grid-area: date;
}
.InvoiceRender table {
  width: 100%;
  margin: 20px 0;
}
.InvoiceRender table th:not(:first-child),
.InvoiceRender table td:not(:first-child) {
  text-align: right;
  white-space: nowrap;
}
.InvoiceRender table th:first-child,
.InvoiceRender table td:first-child {
  white-space: normal;
  text-align: left;
}
.InvoiceRender .stamps-container {
  flex-grow: 1;
}
.InvoiceRender .stamps-container .stamp {
  position: relative;
  z-index: 1;
  border: 1px solid black;
  border-radius: 4px;
  margin: 10px;
  line-height: 20px;
  padding: 10px 20px;
  display: inline-block;
  background: rgba(255, 255, 255, 0.8);
}
@media print {
  .InvoiceRender {
    width: 19cm;
    min-height: 26.7cm;
    page-break-inside: avoid;
  }
}
@media screen {
  .InvoiceRender {
    height: 100%;
  }
}
.InvoiceRender footer {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
* {
  box-sizing: border-box;
}
.adminStyle {
  background: repeating-linear-gradient(45deg, transparent, transparent 2px, #00568a 2px, #00568a 4px), repeating-linear-gradient(-45deg, #005c94, #005c94 2px, #00568a 2px, #00568a 4px);
  background-color: #005c94;
  color: #fff;
  text-shadow: none;
  box-shadow: none;
  border: none;
}
@media screen {
  body {
    font-family: sans-serif;
    padding: 0;
    margin: 0;
    min-height: 100vh;
    background: white;
    position: relative;
  }
  body .balance.positive {
    color: #93d200 !important;
  }
  body .balance.negative {
    color: #dc0000 !important;
  }
  body #MainForm {
    margin-bottom: 0;
    padding: 80px 0;
  }
  body #MainForm .max-width-wrap {
    max-width: 800px;
    margin: 0 auto;
  }
  body #MainForm > section {
    color: #333;
  }
  body #MainForm > section#MainContent > .max-width-wrap {
    padding: 20px;
    line-height: 20px;
  }
  body #MainForm > section#MainContent > .max-width-wrap .wysiwyg-content img {
    max-width: 100%;
    height: auto;
  }
  body #MainForm > section#MainContent > .max-width-wrap > p,
  body #MainForm > section#MainContent > .max-width-wrap > ul > li {
    padding: 0;
    margin: 20px 0;
  }
  body #MainForm > section#MainContent > .max-width-wrap h2 {
    line-height: 20px;
    font-size: 20px;
    margin: 20px 0 20px 0;
    font-weight: normal;
    color: #666;
  }
  body #MainForm > section#MainContent > .max-width-wrap h2 a {
    margin-left: 10px;
    text-decoration: underline;
  }
  body #MainForm > section#MainContent > .max-width-wrap a.anchor {
    display: block;
    position: relative;
    top: -80px;
    visibility: hidden;
  }
  body #MainForm > section#MainContent > .max-width-wrap .order-actions {
    margin: -40px -10px 40px -10px;
  }
  body #MainForm > section#MainContent > .max-width-wrap .order-actions > a {
    display: inline-block;
    padding: 10px;
  }
  body #MainForm > header,
  body #MainForm > footer {
    position: fixed;
    margin: 0;
    left: 0;
    right: 0;
    background: white;
    height: 80px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.15);
    z-index: 2;
  }
  body #MainForm > header > .max-width-wrap,
  body #MainForm > footer > .max-width-wrap {
    display: flex;
    align-items: center;
    padding: 0 20px;
    height: 80px;
  }
  body #MainForm > header .button,
  body #MainForm > footer .button {
    line-height: 20px;
    padding: 10px 20px;
  }
  body #MainForm > header .grey-link,
  body #MainForm > footer .grey-link {
    display: flex;
    text-transform: uppercase;
    align-items: center;
    justify-content: center;
    min-width: 80px;
    height: 80px;
    margin: 0 -20px;
    color: #525252;
    flex-shrink: 0;
    text-decoration: none;
    font-size: 16px;
  }
  body #MainForm > header .grey-link:hover,
  body #MainForm > footer .grey-link:hover {
    background: #f4f4f4;
    color: black;
  }
  body #MainForm > header .grey-link > .Icon,
  body #MainForm > footer .grey-link > .Icon {
    margin: 0 20px;
  }
  body #MainForm > header .grey-link > .Icon + span,
  body #MainForm > footer .grey-link > .Icon + span {
    margin-left: 0;
  }
  body #MainForm > header .grey-link > span,
  body #MainForm > footer .grey-link > span {
    margin: 0 20px;
  }
  body #MainForm > header {
    top: 0;
  }
  body #MainForm > header > .max-width-wrap {
    position: relative;
    display: flex;
    padding: 0;
    font-size: 24px;
    padding: 0 20px;
  }
  body #MainForm > header > .max-width-wrap h1 {
    flex-grow: 1;
    height: 60px;
    line-height: 20px;
    font-size: inherit;
    margin: 0;
    font-weight: normal;
    display: flex;
    align-items: center;
    justify-content: flex-start;
  }
  body #MainForm > header > .max-width-wrap h1 a {
    color: inherit;
  }
  body #MainForm > header > .max-width-wrap h1 a:hover {
    color: #0084c8;
  }
  body #MainForm > header > .max-width-wrap strong.balance {
    margin-left: 0.5em;
    font-weight: bold;
    font-size: 80%;
    position: relative;
    bottom: 0.2em;
  }
  body #MainForm > header > .max-width-wrap #authSwitcher {
    opacity: 0;
    display: block;
    position: absolute;
    right: 0;
    z-index: 3;
    border: 1px solid #dada;
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
    border-radius: 5px;
    top: -200%;
  }
  body #MainForm > header > .max-width-wrap:hover a[e2e='settingsLink'] + #authSwitcher,
  body #MainForm > header > .max-width-wrap:focus-within a[e2e='settingsLink'] + #authSwitcher {
    top: 100%;
  }
  body #MainForm > header > .max-width-wrap h1 + #authSwitcher {
    top: 20px;
  }
  body #MainForm > footer {
    bottom: 0;
  }
  body #MainForm > footer > .max-width-wrap {
    justify-content: space-between;
  }
  body #MainForm > footer > .max-width-wrap > label {
    line-height: 40px;
    padding: 20px 0;
    color: #666;
    display: block;
  }
  body #MainForm > footer > .max-width-wrap > label input[type='checkbox'] {
    margin-right: 10px;
    vertical-align: middle;
  }
  body #MainForm > footer > .max-width-wrap > button[type='submit'] {
    white-space: nowrap;
    margin: 0;
  }
  .delivery-point-description {
    background: white;
    margin: 0 0 40px 0;
    border-radius: 4px;
    overflow: hidden;
    position: relative;
  }
  .delivery-point-description p {
    margin: 0;
    padding: 10px 0;
    line-height: 20px;
  }
  .delivery-point-description.is-disabled {
    background: #e6e6e6;
    color: #999;
  }
  .delivery-point-description.is-disabled input[type='radio'] {
    opacity: 0.2;
  }
  .delivery-point-description.has-radio {
    padding: 20px 40px 0 20px;
    border: 1px solid #e1e1e1;
  }
  .delivery-point-description.has-radio p {
    padding-left: 40px;
  }
  .delivery-point-description.admin-only {
    background: repeating-linear-gradient(45deg, transparent, transparent 2px, #00568a 2px, #00568a 4px), repeating-linear-gradient(-45deg, #005c94, #005c94 2px, #00568a 2px, #00568a 4px);
    background-color: #005c94;
    color: #fff;
    text-shadow: none;
    box-shadow: none;
    border: none;
  }
  .delivery-point-description > label {
    font-weight: bold;
    line-height: 20px;
    padding-top: 10px;
    padding-bottom: 10px;
  }
  .delivery-point-description > label input[type='radio'] {
    margin: 0 10px;
    width: 20px;
    height: 20px;
    line-height: 20px;
    vertical-align: middle;
  }
  .delivery-point-description .delivery-point-name-wrapper {
    line-height: 40px;
    font-weight: bold;
  }
  .delivery-point-description a.googleMapsImageWraper {
    display: block;
    background-color: #f0eee9;
    background-position: center;
    max-width: 120px;
    max-height: 120px;
  }
  .OrderStepProductsPick .product-list {
    margin: -20px;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  }
  .OrderStepProductsPick .product-list .product {
    padding: 20px 20px 20px 100px;
    min-height: 80px;
    position: relative;
  }
  .OrderStepProductsPick .product-list .product > .imageWrap {
    width: 80px;
    height: 80px;
    position: absolute;
    left: 20px;
    top: 20px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
  }
  .OrderStepProductsPick .product-list .product > .imageWrap img.bio-logo {
    position: absolute;
    left: 0;
    bottom: 0;
    height: 18px;
  }
  .OrderStepProductsPick .product-list .product > .product-name-row {
    display: flex;
    line-height: 20px;
    margin-left: 20px;
    min-height: 40px;
    align-items: center;
    justify-content: space-between;
    font-weight: bold;
  }
  .OrderStepProductsPick .product-list .product > select,
  .OrderStepProductsPick .product-list .product > .select-placeholder {
    display: block;
    height: 40px;
    margin-left: 20px;
    width: calc(100% - 20px);
  }
  .OrderStepProductsPick .product-list .product > select {
    background-image: url('/svgs/selectDown.min.svg');
  }
  .OrderStepProductsPick .product-list .product > .select-placeholder {
    line-height: 40px;
  }
  .OrderStepProductsPick .product-list .product > select.has-qte {
    background-color: #0084c8;
    color: white;
    background-image: url('/svgs/selectDown.white.min.svg');
  }
  .OrderStepProductsPick .product-list .product > select.has-qte.admin-only {
    background: repeating-linear-gradient(45deg, transparent, transparent 2px, #00568a 2px, #00568a 4px), repeating-linear-gradient(-45deg, #005c94, #005c94 2px, #00568a 2px, #00568a 4px);
    background-color: #005c94;
    color: #fff;
    text-shadow: none;
    box-shadow: none;
    border: none;
  }
  .OrderStepProductsPick .product-list .product > .wrapper.typeQteAsked {
    display: block;
    height: 40px;
    margin-left: 20px;
    width: calc(100% - 20px);
    display: flex;
    align-items: center;
    flex-wrap: wrap;
  }
  .OrderStepProductsPick .product-list .product > .wrapper.typeQteAsked input.typeQteAsked-input {
    align-self: stretch;
    padding: 0 5px;
    flex-grow: 1;
    margin-right: 5px;
    min-width: 80px;
  }
  .OrderStepProductsPick .product-list .product > .wrapper.typeQteAsked input.typeQteAsked-input.has-qte {
    background-color: #0084c8;
    color: white;
  }
  .OrderStepProductsPick .product-list .product option.admin-only {
    background: repeating-linear-gradient(45deg, transparent, transparent 2px, #00568a 2px, #00568a 4px), repeating-linear-gradient(-45deg, #005c94, #005c94 2px, #00568a 2px, #00568a 4px);
    background-color: #005c94;
    color: #fff;
    text-shadow: none;
    box-shadow: none;
    border: none;
  }
  .OrderStepProductsPick .product-list .product option:not(.admin-only) {
    background-color: white;
    color: #333;
  }
  .OrderStepProductsPick .product-list .product .outOfStock {
    background: #f0f0f0;
    color: #bfb7b7;
    padding: 0 20px;
  }
  .OrderStepProductsPick .product-list .product.stocks-problems select {
    background: orange;
  }
  .OrderStepProductsPick .product-list .product > .product-comment {
    margin: 0 0 0 20px;
    opacity: 0.8;
    text-align: justify;
    font-size: 12px;
    float: right;
  }
  .OrderStepProductsPick .product-list .category {
    grid-column: 1/-1;
    padding: 0 20px;
  }
  .OrderStepProductsPick .quick-comment,
  .OrderStepProductsPick .delivery-adress {
    margin: 60px 0;
  }
  .OrderStepProductsPick .quick-comment label,
  .OrderStepProductsPick .delivery-adress label {
    display: block;
    font-weight: bold;
    line-height: 20px;
    padding: 10px 0;
    color: #333;
  }
  .OrderStepProductsPick .quick-comment textarea,
  .OrderStepProductsPick .delivery-adress textarea {
    padding: 20px;
    width: 100%;
  }
  .messages {
    margin-top: -20px;
    margin-bottom: 40px;
  }
  .messages .message {
    padding: 10px 20px;
    line-height: 20px;
    margin: 0;
    background: #f4f4f4;
  }
  .messages .message.admin-only {
    background: repeating-linear-gradient(45deg, transparent, transparent 2px, #00568a 2px, #00568a 4px), repeating-linear-gradient(-45deg, #005c94, #005c94 2px, #00568a 2px, #00568a 4px);
    background-color: #005c94;
    color: #fff;
    text-shadow: none;
    box-shadow: none;
    border: none;
  }
  .messages .message.error {
    background: #dc0000;
    color: white;
  }
  .messages .message.running {
    animation: message-progress 40s linear infinite;
    background-image: repeating-linear-gradient(45deg, #f4f4f4 0, #f4f4f4 10px, #fff 10px, #fff 20px);
    background-size: 300%;
  }
  @keyframes message-progress {
    0% {
      background-position-x: 100%;
    }
    100% {
      background-position-x: -100%;
    }
  }
  .button.admin-only {
    background: repeating-linear-gradient(45deg, transparent, transparent 2px, #00568a 2px, #00568a 4px), repeating-linear-gradient(-45deg, #005c94, #005c94 2px, #00568a 2px, #00568a 4px);
    background-color: #005c94;
    color: #fff;
    text-shadow: none;
    box-shadow: none;
    border: none;
  }
  .button.admin-only:hover {
    background: repeating-linear-gradient(45deg, transparent, transparent 2px, #00568a 2px, #00568a 4px), repeating-linear-gradient(-45deg, #005c94, #005c94 2px, #00568a 2px, #00568a 4px);
    background-color: #005c94;
    color: #fff;
    text-shadow: none;
    box-shadow: none;
    border: none;
  }
  .basket-comment {
    margin-top: 20px;
    opacity: 0.8;
  }
  .client-settings-form label {
    display: block;
    line-height: 20px;
    margin-bottom: 20px;
  }
  .client-settings-form label.check-box-wrapper {
    padding-left: 30px;
    position: relative;
  }
  .client-settings-form label.check-box-wrapper input {
    width: 20px;
    height: 20px;
    position: absolute;
    top: 8px;
    left: -4px;
  }
  .client-settings-form label.check-box-wrapper strong {
    padding: 10px 0;
    line-height: 20px;
    display: block;
  }
  .client-settings-form label.check-box-wrapper .comment {
    margin: 0;
    padding: 0;
  }
  .client-settings-form label.text-input-wrapper strong {
    display: block;
    line-height: 40px;
  }
  .client-settings-form label.text-input-wrapper input {
    display: block;
    line-height: 40px;
    padding: 0 10px;
    width: 100%;
  }
  .client-settings-form .comment {
    margin-top: -10px;
    color: #999;
    margin-bottom: 20px;
  }
  .client-settings-form .history-item-label {
    max-width: 470px;
    text-align: left !important;
    width: 100%;
  }
  .popular-products-list {
    display: grid;
    column-gap: 20px;
    row-gap: 20px;
    grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
  }
  .popular-products-list > div {
    background-color: white;
  }
  .popular-products-list > div > .image-wrap {
    height: 60px;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
  }
  .popular-products-list > div > .product-name {
    line-height: 20px;
    padding-top: 10px;
    text-align: center;
  }
}
@media screen and (max-width: 450px) {
  body:not(.e2e) body #MainForm > header .grey-link > span,
  body:not(.e2e) body #MainForm > footer .grey-link > span {
    display: none;
  }
}
@media screen and (min-width: 450px) {
  body #MainForm > header .grey-link > span + icon,
  body #MainForm > footer .grey-link > span + icon {
    margin-left: 0;
  }
}
@media screen and (max-height: 600px) {
  body #MainForm > header {
    position: absolute;
  }
}
@media screen and (max-width: 800px) {
  body #MainForm > header > .max-width-wrap {
    font-size: 18px;
  }
}
@media screen and (max-width: 600px) {
  body:not(.e2e) body #MainForm > footer > .max-width-wrap > label.checkbox-use-favorite-dp {
    display: none;
  }
}
@media screen and (max-width: 620px) {
  .delivery-point-description a.googleMapsImageWraper {
    bottom: 0;
    left: 0;
    right: 0;
    height: 120px;
    position: absolute;
  }
  .delivery-point-description.has-map {
    padding-bottom: 160px;
  }
}
@media screen and (min-width: 620px) {
  .delivery-point-description a.googleMapsImageWraper {
    float: right;
    width: 120px;
    height: 120px;
  }
}
@media screen and (max-width: 380px) {
  .OrderStepProductsPick .product-list .product > .product-comment {
    margin-left: -80px;
    margin-top: 10px;
  }
}
@media screen and (min-width: 800px) {
  .split-page {
    display: flex;
    margin: 0 -20px;
  }
  .split-page > div {
    padding: 0 20px;
    width: 50%;
    flex-grow: 0;
  }
}
@media screen and (max-width: 800px) {
  .split-page > div:first-child {
    margin-bottom: 40px;
  }
}
@media print {
  body {
    font-family: sans-serif;
  }
  #MainForm header,
  #MainForm footer,
  #MainForm .message,
  #MainForm a[href],
  #MainForm .CommentRenderer {
    display: none;
  }
}
@media screen {
  .table-wrap {
    overflow-x: auto;
    width: 100%;
  }
}
.table-wrap table {
  border-collapse: collapse;
}
@media screen {
  .table-wrap table {
    width: auto;
    min-width: 100%;
  }
}
@media print {
  .table-wrap table {
    width: 100%;
  }
}
.table-wrap table th,
.table-wrap table td {
  text-align: left;
  line-height: 20px;
  padding: 10px 20px;
}
.table-wrap table th:not(:first-child),
.table-wrap table td:not(:first-child) {
  text-align: right;
}
.table-wrap table tr th:first-child,
.table-wrap table tr td:first-child {
  padding-left: 0;
}
.table-wrap table tr th:last-child,
.table-wrap table tr td:last-child {
  padding-right: 0;
}
svg path {
  fill: currentColor;
}
.OrderStepConfirmation section#MainContent > .max-width-wrap > * {
  margin-bottom: 80px;
}
.OrderStepConfirmation section#MainContent > .max-width-wrap table th:not(:first-child) {
  font-weight: normal;
}
@media screen and (min-width: 450px) {
  .OrderStepConfirmation section#MainContent > .max-width-wrap .order-total-info {
    background: #f4f4f4;
    padding: 20px;
    position: relative;
    margin-top: -40px;
  }
  .OrderStepConfirmation section#MainContent > .max-width-wrap .order-total-info:after {
    content: '';
    display: block;
    border: 30px solid;
    position: absolute;
    right: 0;
    top: -60px;
    pointer-events: none;
    border-color: transparent transparent #f4f4f4 transparent;
  }
}
.OrderStepConfirmation section#MainContent > .max-width-wrap a.inline-edit-link {
  margin-left: 5px;
}
.OrderStepConfirmation section#MainContent > .max-width-wrap a.inline-edit-link .Icon {
  margin: 0 5px;
}
.OrderStepConfirmation section#MainContent > .max-width-wrap a.inline-edit-link,
.OrderStepConfirmation section#MainContent > .max-width-wrap a.inline-edit-link:visited {
  color: #005c94;
}
.OrderStepConfirmation section#MainContent > .max-width-wrap a.inline-edit-link:hover,
.OrderStepConfirmation section#MainContent > .max-width-wrap a.inline-edit-link:active,
.OrderStepConfirmation section#MainContent > .max-width-wrap a.inline-edit-link:focus {
  color: #0084c8;
  text-decoration: underline;
}
.CommentRenderer {
  margin-top: 40px;
}
.CommentRenderer .comment {
  margin-bottom: 40px;
}
.CommentRenderer .comment .meta {
  line-height: 20px;
  padding: 10px 0;
  font-weight: bold;
}
.CommentRenderer .comment .content {
  line-height: 20px;
  padding: 20px;
}
.CommentRenderer .comment.comment-log .content {
  background: #f4f4f4;
}
@media (min-width: 800px) {
  .CommentRenderer .comment.comment-log,
  .CommentRenderer .comment.comment-form:not(:first-child) {
    width: 80%;
  }
}
@media (max-width: 800px) {
  .CommentRenderer .comment.comment-log,
  .CommentRenderer .comment.comment-form:not(:first-child) {
    width: calc(100% - 20px);
  }
}
.CommentRenderer .comment.comment-log.by-me,
.CommentRenderer .comment.comment-form:not(:first-child).by-me {
  margin-left: auto;
}
.CommentRenderer .comment.comment-log.by-them,
.CommentRenderer .comment.comment-form:not(:first-child).by-them {
  margin-right: auto;
}
.CommentRenderer .comment.comment-form .content {
  outline: none !important;
  width: 100%;
  height: 110px;
}
.CommentRenderer .comment.comment-form .button-wrap {
  text-align: right;
  margin-top: 5px;
}
@media screen {
  textarea,
  input[type='text'],
  input[type='email'] {
    border: 1px solid #cecccc;
    display: block;
    resize: none;
    background: #fdfdfd;
    box-shadow: inset 0px 3px 3px rgba(0, 0, 0, 0.1);
    font: inherit;
    color: inherit;
    border-radius: 3px;
  }
  textarea:focus,
  input[type='text']:focus,
  input[type='email']:focus {
    background: white;
    border-color: #0084c8;
  }
}
@media screen {
  .shaking {
    display: block;
    transform-origin: center center;
    animation: shake 0.4s ease-in-out;
  }
  @keyframes shake {
    20% {
      transform: translate(6px, -5px) rotate(1.5deg);
    }
    40% {
      transform: translate(-4px, 8px) rotate(-0.5deg);
    }
    60% {
      transform: translate(0px, -3px) rotate(-2deg);
    }
    80% {
      transform: translate(6px, 5px) rotate(1.5deg);
    }
    0%,
    100% {
      transform: translate(0, 0) rotate(0);
    }
  }
}
@media screen {
  /**
 * Extracted from: SweetAlert
 * Modified by: Istiak Tridip
 */
  .ConfirmationAnimation {
    min-height: 300px;
  }
  .ConfirmationAnimation .success-animation-wrapper {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
  .ConfirmationAnimation .success-animation-wrapper > p {
    max-width: 400px;
    margin: 0px auto 40px auto;
    text-align: center;
    color: #6c6c6c;
    line-height: 20px;
  }
  .ConfirmationAnimation .success-animation-wrapper .success-checkmark {
    width: 80px;
    height: 115px;
    margin: 0 auto;
  }
  .ConfirmationAnimation .success-animation-wrapper .success-checkmark .check-icon {
    width: 80px;
    height: 80px;
    position: relative;
    border-radius: 50%;
    box-sizing: content-box;
    border: 4px solid #93d200;
  }
  .ConfirmationAnimation .success-animation-wrapper .success-checkmark .check-icon::before {
    top: 3px;
    left: -2px;
    width: 30px;
    transform-origin: 100% 50%;
    border-radius: 100px 0 0 100px;
  }
  .ConfirmationAnimation .success-animation-wrapper .success-checkmark .check-icon::after {
    top: 0;
    left: 30px;
    width: 60px;
    transform-origin: 0 50%;
    border-radius: 0 100px 100px 0;
    animation: rotate-circle 4.25s ease-in;
  }
  .ConfirmationAnimation .success-animation-wrapper .success-checkmark .check-icon::before,
  .ConfirmationAnimation .success-animation-wrapper .success-checkmark .check-icon::after {
    content: '';
    height: 100px;
    position: absolute;
    background: #ffffff;
    transform: rotate(-45deg);
  }
  .ConfirmationAnimation .success-animation-wrapper .success-checkmark .check-icon .icon-line {
    height: 5px;
    background-color: #93d200;
    display: block;
    border-radius: 2px;
    position: absolute;
    z-index: 10;
  }
  .ConfirmationAnimation .success-animation-wrapper .success-checkmark .check-icon .icon-line.line-tip {
    top: 46px;
    left: 14px;
    width: 25px;
    transform: rotate(45deg);
    animation: icon-line-tip 0.75s;
  }
  .ConfirmationAnimation .success-animation-wrapper .success-checkmark .check-icon .icon-line.line-long {
    top: 38px;
    right: 8px;
    width: 47px;
    transform: rotate(-45deg);
    animation: icon-line-long 0.75s;
  }
  .ConfirmationAnimation .success-animation-wrapper .success-checkmark .check-icon .icon-circle {
    top: -4px;
    left: -4px;
    z-index: 10;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    position: absolute;
    box-sizing: content-box;
    border: 4px solid #a0c60e;
  }
  .ConfirmationAnimation .success-animation-wrapper .success-checkmark .check-icon .icon-fix {
    top: 8px;
    width: 5px;
    left: 26px;
    z-index: 1;
    height: 85px;
    position: absolute;
    transform: rotate(-45deg);
    background-color: #ffffff;
  }
  @keyframes rotate-circle {
    0% {
      transform: rotate(-45deg);
    }
    5% {
      transform: rotate(-45deg);
    }
    12% {
      transform: rotate(-405deg);
    }
    100% {
      transform: rotate(-405deg);
    }
  }
  @keyframes icon-line-tip {
    0% {
      width: 0;
      left: 1px;
      top: 19px;
    }
    54% {
      width: 0;
      left: 1px;
      top: 19px;
    }
    70% {
      width: 50px;
      left: -8px;
      top: 37px;
    }
    84% {
      width: 17px;
      left: 21px;
      top: 48px;
    }
    100% {
      width: 25px;
      left: 14px;
      top: 45px;
    }
  }
  @keyframes icon-line-long {
    0% {
      width: 0;
      right: 46px;
      top: 54px;
    }
    65% {
      width: 0;
      right: 46px;
      top: 54px;
    }
    84% {
      width: 55px;
      right: 0px;
      top: 35px;
    }
    100% {
      width: 47px;
      right: 8px;
      top: 38px;
    }
  }
}
@media screen {
  #MainForm.basket-required .product:not(.basket),
  #MainForm.minimum-required .outOfMinimum {
    opacity: 0.2;
    filter: saturate(0%);
  }
}
@media screen {
  .noPrint.orderList {
    background: #eee !important;
    margin-bottom: 40px;
    overflow-x: auto;
  }
  .noPrint.orderList > .max-width-wrap {
    padding: 0;
    overflow-x: visible !important;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin: 0;
  }
  .noPrint.orderList > .max-width-wrap > * {
    margin-bottom: 0;
    white-space: nowrap;
  }
  .noPrint.orderList > .max-width-wrap > .order {
    line-height: 40px;
    padding: 20px;
    text-decoration: none;
    color: #333;
  }
  .noPrint.orderList > .max-width-wrap > .order.cancelled {
    text-decoration: line-through;
  }
  .noPrint.orderList > .max-width-wrap > .order:hover {
    background: rgba(255, 255, 255, 0.5);
  }
  .noPrint.orderList > .max-width-wrap > span.order,
  .noPrint.orderList > .max-width-wrap > span.order:hover {
    background: white;
  }
  .noPrint.orderList > .max-width-wrap > .button {
    margin-left: 20px;
  }
}
#sumup-card {
  min-height: 400px;
  position: relative;
}
#sumup-card #placeholder-loading-card {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 1.5em;
  text-align: center;
  opacity: 0.5;
}
#sumup-card .sumup-payment-widget-theme[data-sumup-id='widget__container'] {
  padding: 0;
  margin: 0 0;
  max-width: none;
}
.nowrap {
  white-space: nowrap;
}
.left {
  text-align: left !important;
}
.right {
  text-align: right !important;
}
#CGV-checkbox-wrap {
  margin: 80px 0;
  display: block;
  text-align: center;
}
body:not([data-has-email]):not([data-has-phonenumber]) .requires-email-or-phonenumber,
body:not([data-allowmailing]) .requires-allow-mailing,
body:not([data-has-email]) .requires-email,
body:not([data-has-phonenumber]) .requires-phonenumber {
  display: none;
}
@media screen and (min-width: 800px) {
  .OrderFormPaymentForm .split-on-desktop {
    display: flex;
    align-items: flex-start;
    gap: 40px;
  }
}
.OrderFormPaymentForm .spaceit > * {
  margin-bottom: 40px;
}
.name-price-comment {
  margin-bottom: 40px;
  position: relative;
}
.name-price-comment span.name {
  font-weight: bold;
  background: white;
  padding-right: 10px;
  position: relative;
  z-index: 1;
}
.name-price-comment span.price {
  float: right;
}
.name-price-comment span.price > span {
  font-weight: bold;
  padding-left: 10px;
  background: white;
  z-index: 1;
  position: relative;
}
@media (min-width: 300px) {
  .name-price-comment span.price::after {
    content: '';
    display: block;
    position: absolute;
    top: 10px;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.05);
    height: 1px;
  }
}
@media (min-width: 500px) {
  .name-price-comment div.comment {
    padding-right: 80px;
  }
}
.products-list-preview {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
}
.products-list-preview .imageWrap {
  display: block;
  height: 80px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  border-radius: 5px;
  margin: 5px;
}
.categoryLinks-container {
  display: block;
  margin-bottom: 40px;
}
@media print {
  .categoryLinks-container {
    display: none;
  }
}
@media screen and (max-width: 1300px) {
  .categoryLinks-container {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
  }
  .categoryLinks-container strong {
    flex-basis: 100%;
  }
  .categoryLinks-container > *[href] {
    flex-grow: 1;
    flex-shrink: 0;
    text-align: center;
    white-space: nowrap;
    display: inline-block;
    line-height: 40px;
    border-radius: 5px;
    background: rgba(0, 0, 0, 0.05);
    color: #333;
    text-decoration: none;
    padding: 0 10px;
    border: 1px solid #00000012;
  }
  .categoryLinks-container > *[href]:hover {
    color: black;
  }
}
@media screen and (min-width: 1300px) {
  .categoryLinks-container {
    position: fixed;
    left: calc((100vw - 800px - 2 * 250px) / 4);
    top: 80px;
    bottom: 80px;
    overflow: auto;
    width: 250px;
  }
  .categoryLinks-container > * {
    display: block;
    padding: 10px;
  }
}
a.relative-anchor {
  position: relative;
  top: -80px;
}
a.link-to-top {
  margin-top: 20px;
  float: right;
  text-decoration: none;
  display: block;
  line-height: 40px;
  border-radius: 5px;
  background: rgba(0, 0, 0, 0.05);
  color: #333;
  padding: 0 10px;
  border: 1px solid #00000012;
}
a.link-to-top:hover {
  color: black;
}
a.link-to-top:hover {
  background: rgba(0, 0, 0, 0.1);
}
@media print {
  a.link-to-top {
    display: none;
  }
}
@media screen and (min-width: 1300px) {
  a.link-to-top {
    display: none;
  }
}
