@media only screen and (min-width: 822px) {
  :root {
    --responsive--aligndefault-width: min(calc(100vw - 8 * var(--global--spacing-horizontal)), 940px) !important;
    --responsive--alignwide-width: min(calc(100vw - 8 * var(--global--spacing-horizontal)), 1240px) !important;
  }
}

.tingle-modal * {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.tingle-modal {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1000;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  visibility: hidden;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  overflow: hidden;
  -webkit-overflow-scrolling: touch;
  background: rgba(0, 0, 0, 0.9);
  opacity: 0;
  cursor: url("data:image/svg+xml,%3Csvg width='19' height='19' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M15.514.535l-6.42 6.42L2.677.536a1.517 1.517 0 00-2.14 0 1.517 1.517 0 000 2.14l6.42 6.419-6.42 6.419a1.517 1.517 0 000 2.14 1.517 1.517 0 002.14 0l6.419-6.42 6.419 6.42a1.517 1.517 0 002.14 0 1.517 1.517 0 000-2.14l-6.42-6.42 6.42-6.418a1.517 1.517 0 000-2.14 1.516 1.516 0 00-2.14 0z' fill='%23FFF' fill-rule='nonzero'/%3E%3C/svg%3E"), auto;
}

@supports ((-webkit-backdrop-filter: blur(12px)) or (backdrop-filter: blur(12px))) {
  .tingle-modal {
    -webkit-backdrop-filter: blur(12px);
            backdrop-filter: blur(12px);
  }
}

/* confirm and alerts
  -------------------------------------------------------------- */
.tingle-modal--confirm .tingle-modal-box {
  text-align: center;
}

/* modal
  -------------------------------------------------------------- */
.tingle-modal--noOverlayClose {
  cursor: default;
}

.tingle-modal--noClose .tingle-modal__close {
  display: none;
}

.tingle-modal__close {
  position: fixed;
  top: 2.5rem;
  right: 2.5rem;
  z-index: 1000;
  padding: 0;
  width: 2rem;
  height: 2rem;
  border: none;
  background-color: transparent;
  color: #fff;
  cursor: pointer;
}

.tingle-modal__close svg * {
  fill: currentColor;
}

.tingle-modal__closeLabel {
  display: none;
}

.tingle-modal__close:hover {
  color: #fff;
}

.tingle-modal-box {
  position: relative;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin-top: auto;
  margin-bottom: auto;
  width: 60%;
  border-radius: 4px;
  background: #fff;
  opacity: 1;
  cursor: auto;
  will-change: transform, opacity;
}

.tingle-modal-box__content {
  padding: 3rem 3rem;
}

.tingle-modal-box__footer {
  padding: 1.5rem 2rem;
  width: auto;
  border-bottom-right-radius: 4px;
  border-bottom-left-radius: 4px;
  background-color: #f5f5f5;
  cursor: auto;
}

.tingle-modal-box__footer::after {
  display: table;
  clear: both;
  content: "";
}

.tingle-modal-box__footer--sticky {
  position: fixed;
  bottom: -200px;
  /* TODO : find a better way */
  z-index: 10001;
  opacity: 1;
  -webkit-transition: bottom .3s ease-in-out .3s;
  transition: bottom .3s ease-in-out .3s;
}

/* state
  -------------------------------------------------------------- */
.tingle-enabled {
  position: fixed;
  right: 0;
  left: 0;
  overflow: hidden;
}

.tingle-modal--visible .tingle-modal-box__footer {
  bottom: 0;
}

.tingle-modal--visible {
  visibility: visible;
  opacity: 1;
}

.tingle-modal--visible .tingle-modal-box {
  -webkit-animation: scale 0.2s cubic-bezier(0.68, -0.55, 0.265, 1.55) forwards;
          animation: scale 0.2s cubic-bezier(0.68, -0.55, 0.265, 1.55) forwards;
}

.tingle-modal--overflow {
  overflow-y: scroll;
  padding-top: 8vh;
}

/* btn
  -------------------------------------------------------------- */
.tingle-btn {
  display: inline-block;
  margin: 0 .5rem;
  padding: 1rem 2rem;
  border: none;
  background-color: grey;
  -webkit-box-shadow: none;
          box-shadow: none;
  color: #fff;
  vertical-align: middle;
  text-decoration: none;
  font-size: inherit;
  font-family: inherit;
  line-height: normal;
  cursor: pointer;
  -webkit-transition: background-color .4s ease;
  transition: background-color .4s ease;
}

.tingle-btn--primary {
  background-color: #3498db;
}

.tingle-btn--danger {
  background-color: #e74c3c;
}

.tingle-btn--default {
  background-color: #34495e;
}

.tingle-btn--pull-left {
  float: left;
}

.tingle-btn--pull-right {
  float: right;
}

/* responsive
  -------------------------------------------------------------- */
@media (max-width: 540px) {
  .tingle-modal {
    top: 0px;
    display: block;
    padding-top: 60px;
    width: 100%;
  }
  .tingle-modal-box {
    width: auto;
    border-radius: 0;
  }
  .tingle-modal-box__content {
    overflow-y: scroll;
  }
  .tingle-modal--noClose {
    top: 0;
  }
  .tingle-modal--noOverlayClose {
    padding-top: 0;
  }
  .tingle-modal-box__footer .tingle-btn {
    display: block;
    float: none;
    margin-bottom: 1rem;
    width: 100%;
  }
  .tingle-modal__close {
    top: 0;
    right: 0;
    left: 0;
    display: block;
    width: 100%;
    height: 60px;
    border: none;
    background-color: #2c3e50;
    -webkit-box-shadow: none;
            box-shadow: none;
    color: #fff;
  }
  .tingle-modal__closeLabel {
    display: inline-block;
    vertical-align: middle;
    font-size: 1.6rem;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
  }
  .tingle-modal__closeIcon {
    display: inline-block;
    margin-right: .8rem;
    width: 1.6rem;
    vertical-align: middle;
    font-size: 0;
  }
}

/* animations
  -------------------------------------------------------------- */
@-webkit-keyframes scale {
  0% {
    opacity: 0;
    -webkit-transform: scale(0.9);
            transform: scale(0.9);
  }
  100% {
    opacity: 1;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
@keyframes scale {
  0% {
    opacity: 0;
    -webkit-transform: scale(0.9);
            transform: scale(0.9);
  }
  100% {
    opacity: 1;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

.flatpickr-calendar {
  background: transparent;
  opacity: 0;
  display: none;
  text-align: center;
  visibility: hidden;
  padding: 0;
  -webkit-animation: none;
  animation: none;
  direction: ltr;
  border: 0;
  font-size: 14px;
  line-height: 24px;
  border-radius: 5px;
  position: absolute;
  width: 307.875px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -ms-touch-action: manipulation;
  touch-action: manipulation;
  background: #fff;
  -webkit-box-shadow: 1px 0 0 #e6e6e6, -1px 0 0 #e6e6e6, 0 1px 0 #e6e6e6, 0 -1px 0 #e6e6e6, 0 3px 13px rgba(0, 0, 0, 0.08);
  box-shadow: 1px 0 0 #e6e6e6, -1px 0 0 #e6e6e6, 0 1px 0 #e6e6e6, 0 -1px 0 #e6e6e6, 0 3px 13px rgba(0, 0, 0, 0.08);
}

.flatpickr-calendar.open, .flatpickr-calendar.inline {
  opacity: 1;
  max-height: 640px;
  visibility: visible;
}

.flatpickr-calendar.open {
  display: inline-block;
  z-index: 99999;
}

.flatpickr-calendar.animate.open {
  -webkit-animation: fpFadeInDown 300ms cubic-bezier(0.23, 1, 0.32, 1);
  animation: fpFadeInDown 300ms cubic-bezier(0.23, 1, 0.32, 1);
}

.flatpickr-calendar.inline {
  display: block;
  position: relative;
  top: 2px;
}

.flatpickr-calendar.static {
  position: absolute;
  top: calc(100% + 2px);
}

.flatpickr-calendar.static.open {
  z-index: 999;
  display: block;
}

.flatpickr-calendar.multiMonth .flatpickr-days .dayContainer:nth-child(n+1) .flatpickr-day.inRange:nth-child(7n+7) {
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
}

.flatpickr-calendar.multiMonth .flatpickr-days .dayContainer:nth-child(n+2) .flatpickr-day.inRange:nth-child(7n+1) {
  -webkit-box-shadow: -2px 0 0 #e6e6e6,5px 0 0 #e6e6e6;
  box-shadow: -2px 0 0 #e6e6e6,5px 0 0 #e6e6e6;
}

.flatpickr-calendar .hasWeeks .dayContainer, .flatpickr-calendar .hasTime .dayContainer {
  border-bottom: 0;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}

.flatpickr-calendar .hasWeeks .dayContainer {
  border-left: 0;
}

.flatpickr-calendar.hasTime .flatpickr-time {
  height: 40px;
  border-top: 1px solid #e6e6e6;
}

.flatpickr-calendar.noCalendar.hasTime .flatpickr-time {
  height: auto;
}

.flatpickr-calendar:before, .flatpickr-calendar:after {
  position: absolute;
  display: block;
  pointer-events: none;
  border: solid transparent;
  content: '';
  height: 0;
  width: 0;
  left: 22px;
}

.flatpickr-calendar.rightMost:before, .flatpickr-calendar.arrowRight:before, .flatpickr-calendar.rightMost:after, .flatpickr-calendar.arrowRight:after {
  left: auto;
  right: 22px;
}

.flatpickr-calendar.arrowCenter:before, .flatpickr-calendar.arrowCenter:after {
  left: 50%;
  right: 50%;
}

.flatpickr-calendar:before {
  border-width: 5px;
  margin: 0 -5px;
}

.flatpickr-calendar:after {
  border-width: 4px;
  margin: 0 -4px;
}

.flatpickr-calendar.arrowTop:before, .flatpickr-calendar.arrowTop:after {
  bottom: 100%;
}

.flatpickr-calendar.arrowTop:before {
  border-bottom-color: #e6e6e6;
}

.flatpickr-calendar.arrowTop:after {
  border-bottom-color: #fff;
}

.flatpickr-calendar.arrowBottom:before, .flatpickr-calendar.arrowBottom:after {
  top: 100%;
}

.flatpickr-calendar.arrowBottom:before {
  border-top-color: #e6e6e6;
}

.flatpickr-calendar.arrowBottom:after {
  border-top-color: #fff;
}

.flatpickr-calendar:focus {
  outline: 0;
}

.flatpickr-wrapper {
  position: relative;
  display: inline-block;
}

.flatpickr-months {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.flatpickr-months .flatpickr-month {
  background: transparent;
  color: rgba(0, 0, 0, 0.9);
  fill: rgba(0, 0, 0, 0.9);
  height: 34px;
  line-height: 1;
  text-align: center;
  position: relative;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  overflow: hidden;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.flatpickr-months .flatpickr-prev-month, .flatpickr-months .flatpickr-next-month {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  text-decoration: none;
  cursor: pointer;
  position: absolute;
  top: 0;
  height: 34px;
  padding: 10px;
  z-index: 3;
  color: rgba(0, 0, 0, 0.9);
  fill: rgba(0, 0, 0, 0.9);
}

.flatpickr-months .flatpickr-prev-month.flatpickr-disabled, .flatpickr-months .flatpickr-next-month.flatpickr-disabled {
  display: none;
}

.flatpickr-months .flatpickr-prev-month i, .flatpickr-months .flatpickr-next-month i {
  position: relative;
}

.flatpickr-months .flatpickr-prev-month.flatpickr-prev-month, .flatpickr-months .flatpickr-next-month.flatpickr-prev-month {
  /*
      /*rtl:begin:ignore*/
  left: 0;
}

/*
      /*rtl:begin:ignore*/
/*
      /*rtl:end:ignore*/
.flatpickr-months .flatpickr-prev-month.flatpickr-next-month, .flatpickr-months .flatpickr-next-month.flatpickr-next-month {
  /*
      /*rtl:begin:ignore*/
  right: 0;
}

/*
      /*rtl:begin:ignore*/
/*
      /*rtl:end:ignore*/
.flatpickr-months .flatpickr-prev-month:hover, .flatpickr-months .flatpickr-next-month:hover {
  color: #959ea9;
}

.flatpickr-months .flatpickr-prev-month:hover svg, .flatpickr-months .flatpickr-next-month:hover svg {
  fill: #f64747;
}

.flatpickr-months .flatpickr-prev-month svg, .flatpickr-months .flatpickr-next-month svg {
  width: 14px;
  height: 14px;
}

.flatpickr-months .flatpickr-prev-month svg path, .flatpickr-months .flatpickr-next-month svg path {
  -webkit-transition: fill .1s;
  transition: fill .1s;
  fill: inherit;
}

.numInputWrapper {
  position: relative;
  height: auto;
}

.numInputWrapper input, .numInputWrapper span {
  display: inline-block;
}

.numInputWrapper input {
  width: 100%;
}

.numInputWrapper input::-ms-clear {
  display: none;
}

.numInputWrapper input::-webkit-outer-spin-button, .numInputWrapper input::-webkit-inner-spin-button {
  margin: 0;
  -webkit-appearance: none;
}

.numInputWrapper span {
  position: absolute;
  right: 0;
  width: 14px;
  padding: 0 4px 0 2px;
  height: 50%;
  line-height: 50%;
  opacity: 0;
  cursor: pointer;
  border: 1px solid rgba(57, 57, 57, 0.15);
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.numInputWrapper span:hover {
  background: rgba(0, 0, 0, 0.1);
}

.numInputWrapper span:active {
  background: rgba(0, 0, 0, 0.2);
}

.numInputWrapper span:after {
  display: block;
  content: "";
  position: absolute;
}

.numInputWrapper span.arrowUp {
  top: 0;
  border-bottom: 0;
}

.numInputWrapper span.arrowUp:after {
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-bottom: 4px solid rgba(57, 57, 57, 0.6);
  top: 26%;
}

.numInputWrapper span.arrowDown {
  top: 50%;
}

.numInputWrapper span.arrowDown:after {
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 4px solid rgba(57, 57, 57, 0.6);
  top: 40%;
}

.numInputWrapper span svg {
  width: inherit;
  height: auto;
}

.numInputWrapper span svg path {
  fill: rgba(0, 0, 0, 0.5);
}

.numInputWrapper:hover {
  background: rgba(0, 0, 0, 0.05);
}

.numInputWrapper:hover span {
  opacity: 1;
}

.flatpickr-current-month {
  font-size: 135%;
  line-height: inherit;
  font-weight: 300;
  color: inherit;
  position: absolute;
  width: 75%;
  left: 12.5%;
  padding: 7.48px 0 0 0;
  line-height: 1;
  height: 34px;
  display: inline-block;
  text-align: center;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.flatpickr-current-month span.cur-month {
  font-family: inherit;
  font-weight: 700;
  color: inherit;
  display: inline-block;
  margin-left: .5ch;
  padding: 0;
}

.flatpickr-current-month span.cur-month:hover {
  background: rgba(0, 0, 0, 0.05);
}

.flatpickr-current-month .numInputWrapper {
  width: 6ch;
  width: 7ch\0;
  display: inline-block;
}

.flatpickr-current-month .numInputWrapper span.arrowUp:after {
  border-bottom-color: rgba(0, 0, 0, 0.9);
}

.flatpickr-current-month .numInputWrapper span.arrowDown:after {
  border-top-color: rgba(0, 0, 0, 0.9);
}

.flatpickr-current-month input.cur-year {
  background: transparent;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  color: inherit;
  cursor: text;
  padding: 0 0 0 .5ch;
  margin: 0;
  display: inline-block;
  font-size: inherit;
  font-family: inherit;
  font-weight: 300;
  line-height: inherit;
  height: auto;
  border: 0;
  border-radius: 0;
  vertical-align: initial;
  -webkit-appearance: textfield;
  -moz-appearance: textfield;
  appearance: textfield;
}

.flatpickr-current-month input.cur-year:focus {
  outline: 0;
}

.flatpickr-current-month input.cur-year[disabled], .flatpickr-current-month input.cur-year[disabled]:hover {
  font-size: 100%;
  color: rgba(0, 0, 0, 0.5);
  background: transparent;
  pointer-events: none;
}

.flatpickr-current-month .flatpickr-monthDropdown-months {
  appearance: menulist;
  background: transparent;
  border: none;
  border-radius: 0;
  box-sizing: border-box;
  color: inherit;
  cursor: pointer;
  font-size: inherit;
  font-family: inherit;
  font-weight: 300;
  height: auto;
  line-height: inherit;
  margin: -1px 0 0 0;
  outline: none;
  padding: 0 0 0 .5ch;
  position: relative;
  vertical-align: initial;
  -webkit-box-sizing: border-box;
  -webkit-appearance: menulist;
  -moz-appearance: menulist;
  width: auto;
}

.flatpickr-current-month .flatpickr-monthDropdown-months:focus, .flatpickr-current-month .flatpickr-monthDropdown-months:active {
  outline: none;
}

.flatpickr-current-month .flatpickr-monthDropdown-months:hover {
  background: rgba(0, 0, 0, 0.05);
}

.flatpickr-current-month .flatpickr-monthDropdown-months .flatpickr-monthDropdown-month {
  background-color: transparent;
  outline: none;
  padding: 0;
}

.flatpickr-weekdays {
  background: transparent;
  text-align: center;
  overflow: hidden;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: 28px;
}

.flatpickr-weekdays .flatpickr-weekdaycontainer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

span.flatpickr-weekday {
  cursor: default;
  font-size: 90%;
  background: transparent;
  color: rgba(0, 0, 0, 0.54);
  line-height: 1;
  margin: 0;
  text-align: center;
  display: block;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  font-weight: bolder;
}

.dayContainer, .flatpickr-weeks {
  padding: 1px 0 0 0;
}

.flatpickr-days {
  position: relative;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  width: 307.875px;
}

.flatpickr-days:focus {
  outline: 0;
}

.dayContainer {
  padding: 0;
  outline: 0;
  text-align: left;
  width: 307.875px;
  min-width: 307.875px;
  max-width: 307.875px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  display: inline-block;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  -ms-flex-pack: justify;
  justify-content: space-around;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  opacity: 1;
}

.dayContainer + .dayContainer {
  -webkit-box-shadow: -1px 0 0 #e6e6e6;
  box-shadow: -1px 0 0 #e6e6e6;
}

.flatpickr-day {
  background: none;
  border: 1px solid transparent;
  border-radius: 150px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  color: #393939;
  cursor: pointer;
  font-weight: 400;
  width: 14.2857143%;
  -ms-flex-preferred-size: 14.2857143%;
  flex-basis: 14.2857143%;
  max-width: 39px;
  height: 39px;
  line-height: 39px;
  margin: 0;
  display: inline-block;
  position: relative;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}

.flatpickr-day.inRange, .flatpickr-day.prevMonthDay.inRange, .flatpickr-day.nextMonthDay.inRange, .flatpickr-day.today.inRange, .flatpickr-day.prevMonthDay.today.inRange, .flatpickr-day.nextMonthDay.today.inRange, .flatpickr-day:hover, .flatpickr-day.prevMonthDay:hover, .flatpickr-day.nextMonthDay:hover, .flatpickr-day:focus, .flatpickr-day.prevMonthDay:focus, .flatpickr-day.nextMonthDay:focus {
  cursor: pointer;
  outline: 0;
  background: #e6e6e6;
  border-color: #e6e6e6;
}

.flatpickr-day.today {
  border-color: #959ea9;
}

.flatpickr-day.today:hover, .flatpickr-day.today:focus {
  border-color: #959ea9;
  background: #959ea9;
  color: #fff;
}

.flatpickr-day.selected, .flatpickr-day.startRange, .flatpickr-day.endRange, .flatpickr-day.selected.inRange, .flatpickr-day.startRange.inRange, .flatpickr-day.endRange.inRange, .flatpickr-day.selected:focus, .flatpickr-day.startRange:focus, .flatpickr-day.endRange:focus, .flatpickr-day.selected:hover, .flatpickr-day.startRange:hover, .flatpickr-day.endRange:hover, .flatpickr-day.selected.prevMonthDay, .flatpickr-day.startRange.prevMonthDay, .flatpickr-day.endRange.prevMonthDay, .flatpickr-day.selected.nextMonthDay, .flatpickr-day.startRange.nextMonthDay, .flatpickr-day.endRange.nextMonthDay {
  background: #569ff7;
  -webkit-box-shadow: none;
  box-shadow: none;
  color: #fff;
  border-color: #569ff7;
}

.flatpickr-day.selected.startRange, .flatpickr-day.startRange.startRange, .flatpickr-day.endRange.startRange {
  border-radius: 50px 0 0 50px;
}

.flatpickr-day.selected.endRange, .flatpickr-day.startRange.endRange, .flatpickr-day.endRange.endRange {
  border-radius: 0 50px 50px 0;
}

.flatpickr-day.selected.startRange + .endRange:not(:nth-child(7n+1)), .flatpickr-day.startRange.startRange + .endRange:not(:nth-child(7n+1)), .flatpickr-day.endRange.startRange + .endRange:not(:nth-child(7n+1)) {
  -webkit-box-shadow: -10px 0 0 #569ff7;
  box-shadow: -10px 0 0 #569ff7;
}

.flatpickr-day.selected.startRange.endRange, .flatpickr-day.startRange.startRange.endRange, .flatpickr-day.endRange.startRange.endRange {
  border-radius: 50px;
}

.flatpickr-day.inRange {
  border-radius: 0;
  -webkit-box-shadow: -5px 0 0 #e6e6e6,5px 0 0 #e6e6e6;
  box-shadow: -5px 0 0 #e6e6e6,5px 0 0 #e6e6e6;
}

.flatpickr-day.flatpickr-disabled, .flatpickr-day.flatpickr-disabled:hover, .flatpickr-day.prevMonthDay, .flatpickr-day.nextMonthDay, .flatpickr-day.notAllowed, .flatpickr-day.notAllowed.prevMonthDay, .flatpickr-day.notAllowed.nextMonthDay {
  color: rgba(57, 57, 57, 0.3);
  background: transparent;
  border-color: transparent;
  cursor: default;
}

.flatpickr-day.flatpickr-disabled, .flatpickr-day.flatpickr-disabled:hover {
  cursor: not-allowed;
  color: rgba(57, 57, 57, 0.1);
}

.flatpickr-day.week.selected {
  border-radius: 0;
  -webkit-box-shadow: -5px 0 0 #569ff7,5px 0 0 #569ff7;
  box-shadow: -5px 0 0 #569ff7,5px 0 0 #569ff7;
}

.flatpickr-day.hidden {
  visibility: hidden;
}

.rangeMode .flatpickr-day {
  margin-top: 1px;
}

.flatpickr-weekwrapper {
  float: left;
}

.flatpickr-weekwrapper .flatpickr-weeks {
  padding: 0 12px;
  -webkit-box-shadow: 1px 0 0 #e6e6e6;
  box-shadow: 1px 0 0 #e6e6e6;
}

.flatpickr-weekwrapper .flatpickr-weekday {
  float: none;
  width: 100%;
  line-height: 28px;
}

.flatpickr-weekwrapper span.flatpickr-day, .flatpickr-weekwrapper span.flatpickr-day:hover {
  display: block;
  width: 100%;
  max-width: none;
  color: rgba(57, 57, 57, 0.3);
  background: transparent;
  cursor: default;
  border: none;
}

.flatpickr-innerContainer {
  display: block;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  overflow: hidden;
}

.flatpickr-rContainer {
  display: inline-block;
  padding: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.flatpickr-time {
  text-align: center;
  outline: 0;
  display: block;
  height: 0;
  line-height: 40px;
  max-height: 40px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.flatpickr-time:after {
  content: "";
  display: table;
  clear: both;
}

.flatpickr-time .numInputWrapper {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  width: 40%;
  height: 40px;
  float: left;
}

.flatpickr-time .numInputWrapper span.arrowUp:after {
  border-bottom-color: #393939;
}

.flatpickr-time .numInputWrapper span.arrowDown:after {
  border-top-color: #393939;
}

.flatpickr-time.hasSeconds .numInputWrapper {
  width: 26%;
}

.flatpickr-time.time24hr .numInputWrapper {
  width: 49%;
}

.flatpickr-time input {
  background: transparent;
  -webkit-box-shadow: none;
  box-shadow: none;
  border: 0;
  border-radius: 0;
  text-align: center;
  margin: 0;
  padding: 0;
  height: inherit;
  line-height: inherit;
  color: #393939;
  font-size: 14px;
  position: relative;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-appearance: textfield;
  -moz-appearance: textfield;
  appearance: textfield;
}

.flatpickr-time input.flatpickr-hour {
  font-weight: bold;
}

.flatpickr-time input.flatpickr-minute, .flatpickr-time input.flatpickr-second {
  font-weight: 400;
}

.flatpickr-time input:focus {
  outline: 0;
  border: 0;
}

.flatpickr-time .flatpickr-time-separator, .flatpickr-time .flatpickr-am-pm {
  height: inherit;
  float: left;
  line-height: inherit;
  color: #393939;
  font-weight: bold;
  width: 2%;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-align-self: center;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
      align-self: center;
}

.flatpickr-time .flatpickr-am-pm {
  outline: 0;
  width: 18%;
  cursor: pointer;
  text-align: center;
  font-weight: 400;
}

.flatpickr-time input:hover, .flatpickr-time .flatpickr-am-pm:hover, .flatpickr-time input:focus, .flatpickr-time .flatpickr-am-pm:focus {
  background: #eee;
}

.flatpickr-input[readonly] {
  cursor: pointer;
}

@-webkit-keyframes fpFadeInDown {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes fpFadeInDown {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@font-face {
  font-family: "roboto-condensed";
  src: url("fonts/roboto/robotocondensed.eot?") format("eot"), url("fonts/roboto/robotocondensed.woff2") format("woff2"), url("fonts/roboto/robotocondensed.woff") format("woff"), url("fonts/roboto/robotocondensed.ttf") format("truetype"), url("fonts/roboto/robotocondensed.svg#roboto-condensed") format("svg");
}

@font-face {
  font-family: "roboto-condensed-light";
  src: url("fonts/roboto/robotocondensedlight.eot?") format("eot"), url("fonts/roboto/robotocondensedlight.woff2") format("woff2"), url("fonts/roboto/robotocondensedlight.woff") format("woff"), url("fonts/roboto/robotocondensedlight.ttf") format("truetype"), url("fonts/roboto/robotocondensedlight.svg#roboto-condensed-light") format("svg");
}

@font-face {
  font-family: "roboto-condensed-bold";
  src: url("fonts/roboto/robotocondensedbold.eot?") format("eot"), url("fonts/roboto/robotocondensedbold.woff2") format("woff2"), url("fonts/roboto/robotocondensedbold.woff") format("woff"), url("fonts/roboto/robotocondensedbold.ttf") format("truetype"), url("fonts/roboto/robotocondensedbold.svg#roboto-condensed-bold") format("svg");
}

@font-face {
  font-family: "comforter-brush";
  src: url("fonts/brush/ComforterBrush-Regular.eot?") format("eot"), url("fonts/brush/ComforterBrush-Regular.woff2") format("woff2"), url("fonts/brush/ComforterBrush-Regular.woff") format("woff"), url("fonts/brush/ComforterBrush-Regular.ttf") format("truetype"), url("fonts/brush/ComforterBrush-Regular.svg#comforter-brush") format("svg");
}

body {
  font-family: "roboto-condensed", sans-serif;
  color: #000000;
  -webkit-text-size-adjust: 100%;
}

p {
  font-family: "roboto-condensed-light", sans-serif;
  font-size: 23px;
  letter-spacing: 0.46px;
}

h6 {
  font-family: "roboto-condensed-bold", sans-serif !important;
}

h5 {
  font-family: "roboto-condensed-bold", sans-serif !important;
}

h4 {
  font-family: "roboto-condensed-bold", sans-serif !important;
}

h3 {
  font-family: "roboto-condensed-bold", sans-serif !important;
}

h2 {
  font-family: "roboto-condensed-bold", sans-serif !important;
}

h1 {
  font-family: "roboto-condensed-bold", sans-serif !important;
}

h1 {
  font-size: 66px !important;
}

h2 {
  font-size: 46px !important;
}

h3 {
  font-size: 34px !important;
}

strong {
  font-family: "roboto-condensed-bold", sans-serif;
}

.home-btn a {
  background: #fff !important;
  color: #000 !important;
  border: solid 1px #000 !important;
  min-width: 218px;
  padding: 3px 0 !important;
  border-radius: 10px !important;
  letter-spacing: 1.08px;
  font-family: "roboto-condensed", sans-serif !important;
  font-size: 20px !important;
}

.home-btn:hover {
  background: #9dc2d5 !important;
  border-color: #9dc2d5 !important;
  border-radius: 12px !important;
  cursor: pointer;
}

.slideshow-btn a {
  width: 423px;
}

.all-products-btn a {
  width: 360px;
  padding: 10px 5px !important;
  cursor: pointer;
}

.add_to_cart_button {
  background: #000000 0% 0% no-repeat padding-box;
  border-radius: 8px !important;
  opacity: 1;
  letter-spacing: 1.44px !important;
  color: #ffffff;
  text-transform: uppercase !important;
  font-family: "roboto-condensed-bold", sans-serif !important;
}

.add_to_cart_button:hover {
  cursor: pointer !important;
}

.wp-block-button a {
  background: #000000 0% 0% no-repeat padding-box;
  border-radius: 8px !important;
  opacity: 1;
  letter-spacing: 1.44px !important;
  color: #ffffff;
  padding: 10px 25px !important;
  text-transform: uppercase !important;
  font-family: "roboto-condensed-bold", sans-serif !important;
  cursor: pointer;
}

a.ub-expand-toggle-button {
  text-decoration: underline;
  margin-top: 10px;
}

.wpsf-cart-button a {
  background: #000 !important;
  color: #fff !important;
  height: 35px;
  padding-top: 18px !important;
  height: 55px;
  cursor: pointer;
  padding: 9px 14px;
  border-radius: 10px;
  text-transform: uppercase;
}

.wpsf-cart-button a:hover {
  background-color: #ffffff !important;
  color: #000000 !important;
}

.anchor-btn {
  background: #000 !important;
  color: #fff !important;
  padding: 0 6px;
  height: 35px;
  cursor: pointer;
  padding: 9px 14px;
  border-radius: 10px;
  text-transform: uppercase;
}

.anchor-btn:hover {
  background-color: #ffffff;
  color: #000000;
}

.add-btn-c {
  background: #000 !important;
  color: #fff !important;
  padding: 0 6px;
  height: 35px;
}

.add-btn-c:hover {
  border-color: #000000 !important;
}

div#order-form-content {
  display: none;
}

form#order-item-data {
  margin-bottom: 0;
}

textarea.hidden-field {
  height: 0px !important;
  max-height: 0px !important;
  color: #ffffff !important;
  background-color: #ffffff !important;
  border: none !important;
}

.pfandgebuhr {
  -ms-flex-preferred-size: 100%;
      flex-basis: 100%;
  background: #fff !important;
  color: #000 !important;
  width: 100%;
  min-width: 100%;
  padding: 0 22px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 100%;
          flex: 0 0 100%;
}

.pfandgebuhr .pfand-name {
  -webkit-box-flex: 0 !important;
      -ms-flex: 0 0 29% !important;
          flex: 0 0 29% !important;
  padding-right: 10px;
  color: #000 !important;
  text-align: left !important;
  letter-spacing: 1.5px;
  font-size: 1rem;
}

.pfandgebuhr .pfand-inhalt {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 19%;
  flex: 0 0 19%;
}

.pfandgebuhr .pfand-price {
  -webkit-box-flex: 0 !important;
  -ms-flex: 0 0 17% !important;
  flex: 0 0 17% !important;
  font-family: "roboto-condensed-light", sans-serif;
  font-size: 23px;
  letter-spacing: 0.46px;
}

.pfandgebuhr .pfand-menge {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 20%;
          flex: 0 0 20%;
  text-align: center;
  padding-right: 46px;
  font-size: 1rem;
  margin-top: 6px;
}

.pfandgebuhr .pfand-total-wrapper {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 19%;
  padding-left: 16px;
  flex: 0 0 19%;
}

p.small-txt {
  background: #fff;
  padding: 17px 10px 10px 22px;
  font-size: 0.9rem;
}

.category-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  color: #000000;
  background: #ffffff;
  padding: 10px 0;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.category-wrapper .category-item {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 33%;
          flex: 0 0 33%;
  margin-top: 0 !important;
}

.category-wrapper .category-item .flex-horizontal {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.category-wrapper .category-item .flex-horizontal .item.subtotal {
  padding-left: 19px;
}

.category-wrapper .category-item .flex-horizontal .product-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 0;
  padding: 0 15px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.category-wrapper .category-item .flex-horizontal .product-item:nth-child(odd) {
  background: #f7f7f7;
}

.category-wrapper .category-item .flex-horizontal .product-item .name span {
  font-size: 0.9rem;
}

.category-wrapper .category-item .flex-horizontal .product-item .name button {
  display: block;
  width: 100%;
  background-color: transparent !important;
  padding: 5px;
  border: unset !important;
  text-align: left !important;
}

.category-wrapper .category-item .flex-horizontal .product-item .name button span {
  color: #000 !important;
  text-align: left !important;
  letter-spacing: 1.5px;
  font-size: 1rem;
}

.category-wrapper .category-item .flex-horizontal .product-item .item {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 19%;
          flex: 0 0 19%;
}

.category-wrapper .category-item .flex-horizontal .product-item:not(:first-child) {
  -webkit-box-flex: 100%;
      -ms-flex: 100%;
          flex: 100%;
}

.category-wrapper .category-item .flex-horizontal .product-item.subtotal span {
  font-size: 0.9rem !important;
}

.category-wrapper .category-item .qty {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.category-wrapper .category-item .qty input {
  max-width: 60px;
  width: 55px;
  height: 55px;
  text-align: center;
  padding: 5px;
  font-size: 0.9rem !important;
}

.category-wrapper .category-item .qty img {
  max-width: 25px;
  margin-left: 7px;
}

.category-wrapper .category-item .qty img.refresh-btn {
  cursor: pointer;
}

.header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  margin-top: 20px;
}

.header .item {
  font-weight: 700;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 19%;
          flex: 0 0 19%;
}

.actions.btn {
  margin-top: 31px;
}

.actions.btn button {
  background: #fff 0% 0% no-repeat padding-box !important;
  border-radius: 8px !important;
  opacity: 1;
  letter-spacing: 1.44px !important;
  color: #000 !important;
  text-transform: uppercase !important;
  font-family: "roboto-condensed-bold", sans-serif !important;
}

.actions.btn button span {
  color: #000 !important;
  text-transform: uppercase !important;
  font-family: "roboto-condensed-bold", sans-serif !important;
}

.actions .modal-form-open {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.actions .modal-form-open .total-wrapper {
  background: #fff;
  color: #000;
  font-family: "roboto-condensed-bold", sans-serif;
  width: 100%;
  text-align: right;
  padding: 13px;
  margin: -34px 0 10px;
}

.actions .modal-form-open .total-wrapper .order-request {
  background: #fff 0% 0% no-repeat padding-box !important;
  border-radius: 8px !important;
  opacity: 1;
  letter-spacing: 1.44px !important;
  color: #000 !important;
  text-transform: uppercase !important;
  font-family: "roboto-condensed-bold", sans-serif !important;
}

.actions .modal-form-open .total-wrapper .order-request span {
  color: #000 !important;
  text-transform: uppercase !important;
  font-family: "roboto-condensed-bold", sans-serif !important;
}

.actions .modal-form-open .total-wrapper .total span {
  font-weight: 700;
  font-size: 26px;
  text-transform: uppercase;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  /* display: none; <- Crashes Chrome on hover */
  -webkit-appearance: none;
  margin: 0;
  /* <-- Apparently some margin are still there even though it's hidden */
}

input[type="number"] {
  -moz-appearance: textfield;
  /* Firefox */
}

.wpsf-product-price {
  display: none;
}

.wc-block-grid__product-add-to-cart {
  display: block;
}

.wc-block-grid__product-price.price {
  display: none;
}

.sp-wps-product-image-area a {
  cursor: unset !important;
}

.wc-block-grid__product a {
  cursor: unset !important;
}

.wc-block-grid__product-title {
  letter-spacing: 1px !important;
  text-transform: uppercase !important;
  font-size: 25px !important;
  font-family: "roboto-condensed-bold", sans-serif !important;
  text-align: center !important;
}

.wc-block-grid__product-title:after {
  content: " " !important;
  display: block !important;
  border-bottom: 3px solid #81C0E2 !important;
  width: 40px !important;
  margin: auto !important;
  padding-top: 10px !important;
}

.wc-block-grid__product-title:before {
  content: " " !important;
  display: block !important;
  border-top: 3px solid #81C0E2 !important;
  width: 40px !important;
  margin: auto !important;
  padding-bottom: 10px !important;
}

a.wc-block-grid__product-link {
  text-decoration: unset;
}

h2.woocommerce-loop-product__title {
  letter-spacing: 1px !important;
  text-transform: uppercase !important;
  font-size: 25px !important;
  font-family: "roboto-condensed-bold", sans-serif !important;
  text-align: center !important;
}

h2.woocommerce-loop-product__title:after {
  content: " " !important;
  display: block !important;
  border-bottom: 3px solid #81C0E2 !important;
  width: 40px !important;
  margin: auto !important;
  padding-top: 10px !important;
}

h2.woocommerce-loop-product__title:before {
  content: " " !important;
  display: block !important;
  border-top: 3px solid #81C0E2 !important;
  width: 40px !important;
  margin: auto !important;
  padding-bottom: 10px !important;
}

.wps-product-image {
  -webkit-box-shadow: 0 0 0;
          box-shadow: 0 0 0;
  outline: 0;
  min-height: 300px;
  max-height: 300px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center !important;
      -ms-flex-align: center !important;
          align-items: center !important;
  -o-object-fit: scale-down !important;
     object-fit: scale-down !important;
  position: relative;
  border: unset !important;
}

.wps-product-image img {
  margin: auto !important;
  -o-object-fit: scale-down !important;
     object-fit: scale-down !important;
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  left: 0;
}

.wpsf-product-title {
  min-height: 80px;
  margin-top: 30px !important;
}

.wpsf-product-title a {
  letter-spacing: 1px !important;
  text-transform: uppercase !important;
  font-size: 25px !important;
  font-family: "roboto-condensed-bold", sans-serif !important;
  text-align: center !important;
  color: #000 !important;
}

.wpsf-product-title a:after {
  content: " " !important;
  display: block !important;
  border-bottom: 3px solid #81C0E2 !important;
  width: 40px !important;
  margin: auto !important;
  padding-top: 10px !important;
}

.wpsf-product-title a:before {
  content: " " !important;
  display: block !important;
  border-top: 3px solid #81C0E2 !important;
  width: 40px !important;
  margin: auto !important;
  padding-bottom: 10px !important;
}

.wpsf-cart-button a {
  letter-spacing: 1px !important;
  text-transform: uppercase !important;
  font-size: 25px !important;
  font-family: "roboto-condensed-bold", sans-serif !important;
  text-align: center !important;
  background: #000 !important;
  color: #fff !important;
  border-radius: 10px !important;
}

.wpsf-cart-button a:hover {
  text-decoration: none !important;
}

#wps-slider-section {
  overflow: initial !important;
  position: relative;
}

.slick-prev {
  top: 50% !important;
  left: -31px;
  border: unset !important;
  color: #000 !important;
  -webkit-transform: scale(1.5) !important;
          transform: scale(1.5) !important;
}

.slick-prev:hover {
  background: transparent !important;
}

.slick-next {
  top: 50% !important;
  right: -31px;
  border: unset !important;
  color: #000 !important;
  -webkit-transform: scale(1.5) !important;
          transform: scale(1.5) !important;
}

.slick-next:hover {
  background: transparent !important;
}

.woocommerce-products-header {
  display: block !important;
}

.category-wrapper .category-item .qty input {
  max-width: 60px;
  width: 55px;
  height: 35px !important;
  text-align: center;
  padding: 5px;
  font-size: 0.9rem !important;
  margin-right: 0;
  margin-left: 0px;
  border: solid 1px #000 !important;
}

.product-item .item.name {
  -webkit-box-flex: 0 !important;
      -ms-flex: 0 0 29% !important;
          flex: 0 0 29% !important;
  padding-right: 10px;
}

.product-item .item.short-description {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 12%;
          flex: 0 0 12%;
}

.product-item .item.price {
  -webkit-box-flex: 0 !important;
      -ms-flex: 0 0 17% !important;
          flex: 0 0 17% !important;
  font-family: "roboto-condensed-light", sans-serif;
  font-size: 23px;
  letter-spacing: 0.46px;
}

.category-wrapper .header {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  padding: 0 20px;
}

.category-wrapper .header .item.title {
  -webkit-box-flex: 0 !important;
      -ms-flex: 0 0 20% !important;
          flex: 0 0 20% !important;
}

.category-wrapper .header .item.qty {
  -webkit-box-flex: 0 !important;
      -ms-flex: 0 0 19% !important;
          flex: 0 0 19% !important;
  text-align: center;
  padding-left: 20px;
}

.category-wrapper .header .item.short-description {
  -webkit-box-flex: 0 !important;
      -ms-flex: 0 0 20% !important;
          flex: 0 0 20% !important;
  text-align: center;
  padding-left: 26px;
}

.category-wrapper .header .item.subtotal {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 20%;
          flex: 0 0 20%;
}

.category-wrapper .header .item.einzelpreis {
  -webkit-box-flex: 0 !important;
      -ms-flex: 0 0 21% !important;
          flex: 0 0 21% !important;
  text-align: center;
  padding-left: 14px;
}

span#total-price-item {
  padding-right: 55px;
}

.limit-desc {
  width: 48px;
  text-align: right;
  display: inline-block;
}

p.mwst-custom {
  display: inline;
  font-size: .8rem;
  color: #999 !important;
}

.kontakt-link {
  text-align: center;
  text-decoration: underline;
  font-family: "roboto-condensed-light", sans-serif;
  font-weight: 300;
  letter-spacing: 0.38px;
  display: block;
  margin: 15px 0;
  font-size: 19px;
  cursor: pointer !important;
  color: #000;
}

.kontakt-link:hover {
  cursor: pointer !important;
}

span.menge-attr {
  text-align: center;
  font-weight: 300;
  font-family: "roboto-condensed-light", sans-serif;
  letter-spacing: 0.38px;
  display: block;
  font-size: 19px;
  color: #000;
}

.wpcf7-list-item {
  margin-left: 0 !important;
}

.actions-custom-email {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

div#info {
  margin-top: -15px;
}

.custom-contact .contact-submit {
  text-align: right;
  margin-top: 25px;
}

.banner-details {
  margin-bottom: 310px;
  margin-top: 230px;
}

.slideshow-text {
  margin-left: 0 !important;
  font-family: "roboto-condensed-bold", sans-serif;
}

.slideshow-buttons-wrapper {
  margin-left: 0 !important;
}

.slideshow-buttons-wrapper a {
  border-radius: 15px !important;
  padding: 10px 50px !important;
  font-family: "roboto-condensed-bold", sans-serif !important;
  letter-spacing: .8px !important;
}

.banner-details-with-txt {
  padding-top: 110px;
}

.copyright {
  background: #000;
  color: #ffffff;
  font-size: 0.8rem;
  padding: 5px;
  text-align: center;
}

.custom-footer-nav li {
  width: 100%;
  display: block;
  margin-left: 18px;
}

.custom-footer-nav a {
  text-decoration: none;
}

.custom-footer-nav a:hover {
  text-decoration: underline;
}

.custom-footer-area {
  margin-top: 0 !important;
}

.custom-footer-area li {
  list-style: none;
}

.custom-footer-area .custom-logo-link img {
  max-width: 120px;
  width: 120px !important;
  min-height: 100% !important;
  max-height: 100% !important;
}

.custom-footer-area .wp-block-column:nth-child(3n) {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  -webkit-box-align: end !important;
      -ms-flex-align: end !important;
          align-items: end !important;
  margin-top: 60px;
}

.custom-footer-area .wp-block-column:nth-child(2n) {
  margin-top: 60px;
}

.site-footer p {
  line-height: 29px;
  font-size: 19px;
  letter-spacing: 0.38px;
}

.footer-navigation-wrapper li {
  display: inline;
  line-height: 29px !important;
  font-size: 19px !important;
  font-family: "roboto-condensed-light", sans-serif !important;
  letter-spacing: 0.38px !important;
}

.footer-navigation-wrapper li a {
  padding: 0 !important;
}

body {
  background: url(/wp-content/uploads/2022/05/hubis_heumilch_footer_milch.png);
  background-repeat: no-repeat;
  background-position: 95% 100%;
  background-size: unset;
}

header.entry-header.alignwide {
  display: none;
}

.has-background-white .site a:focus:not(.wp-block-button__link):not(.wp-block-file__button) {
  background: transparent !important;
  color: inherit !important;
}

.site a:focus:not(.wp-block-button__link):not(.wp-block-file__button) img {
  outline: none !important;
}

.site .button:focus, button:focus, input[type=submit]:focus, input[type=reset]:focus, .wp-block-search .wp-block-search__button:focus, .wp-block-button .wp-block-button__link:focus, .wp-block-file a.wp-block-file__button:focus {
  outline-offset: unset !important;
  outline: unset !important;
}

.fixed-banner {
  position: fixed;
  right: 0;
  top: 60%;
  background: #fff;
  -webkit-box-shadow: 0px 3px 6px #00000029;
          box-shadow: 0px 3px 6px #00000029;
  z-index: 999;
  padding: 10px 60px 10px 24px;
  max-width: 273px;
  width: 100%;
}

.wc-block-pagination button {
  border: unset !important;
}

.wc-block-pagination button:hover {
  border: unset !important;
}

.footer-bio-logo {
  display: none;
}

.site-header {
  padding: 0 !important;
}

.site-header .site-branding {
  margin-top: 0 !important;
}

.site-header .site-branding .site-logo {
  margin-top: 0 !important;
}

.site-header .site-branding .site-logo img.custom-logo {
  max-width: 170px !important;
  max-height: 100% !important;
  width: 100%;
}

#primary-menu-list a {
  text-transform: uppercase;
  font-family: "roboto-condensed", sans-serif;
  font-size: 1.4rem;
  letter-spacing: 0.88px;
}

#primary-menu-list a:hover {
  -webkit-text-decoration-style: solid;
          text-decoration-style: solid;
}

nav#site-navigation svg {
  -webkit-transform: scale(2.5);
          transform: scale(2.5);
  margin-right: 15px;
  margin-top: 22px;
}

#menu-item-13 a {
  text-decoration: none;
}

#menu-item-13 a:hover {
  text-decoration: underline;
}

@media screen and (max-width: 480px) {
  .pfandgebuhr {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .actions-custom-email {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
  }
  .pfandgebuhr .pfand-total-wrapper {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 19%;
    padding-left: 16px;
    -webkit-box-flex: 50%;
        -ms-flex: 50%;
            flex: 50%;
    text-align: right;
  }
  .category-wrapper .category-item .flex-horizontal .item.subtotal {
    padding-left: 0;
  }
  span#pfandgebuhr-item {
    font-family: "roboto-condensed-bold", sans-serif !important;
    padding-right: 4px;
  }
  span.pfand-inhalt {
    display: none;
  }
  p.small-txt {
    font-size: 0.875rem !important;
  }
  span.pfand-price {
    display: none;
  }
  span.pfand-menge {
    display: none;
  }
  p.mwst-custom {
    font-size: 0.7rem !important;
  }
  .site-logo {
    margin-top: 0 !important;
    padding-top: 0 !important;
  }
  .item.price {
    font-size: 1.2rem !important;
  }
  .footer-bio-logo {
    background: #fff;
    display: block;
    width: 63%;
  }
  .fixed-banner {
    display: none !important;
  }
  .custom-logo {
    min-width: 170px;
  }
  .slideshow-btn {
    width: 100%;
    display: block;
    padding: 0 !important;
    margin: 0 !important;
  }
  .slideshow-btn a {
    width: 100%;
    margin: auto;
    display: block;
    text-align: center;
  }
  .home #page {
    background-size: auto 560px !important;
    background-position: -387px 0 !important;
  }
  .banner-details {
    margin-bottom: 0;
    margin-top: 575px;
  }
  .vorteile-background {
    background: unset !important;
  }
  .fixed-banner {
    position: fixed;
    top: 65%;
    z-index: 1;
    max-width: 174px;
  }
  .home-buttons .wp-block-buttons {
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    overflow: scroll;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
  .home-buttons .wp-block-buttons::-webkit-scrollbar {
    display: none;
  }
  .home-buttons .wp-block-group__inner-container {
    overflow: hidden;
  }
  .vorteile-background > div > div > div > div {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
  }
  .vorteile-background .wp-block-media-text__media {
    min-width: 84px;
    -ms-flex-item-align: baseline;
        align-self: baseline;
    margin-top: 28px;
  }
  #wps-slider-section .wps-product-section {
    position: relative;
    margin-right: 0px;
    margin-left: auto;
    width: 95%;
  }
  .sp-wps-product-image-area {
    margin-left: 0;
    margin-right: 25px;
  }
  .wpsf-product {
    min-width: 100%;
  }
  .banner-details-with-txt {
    margin-top: -50px;
    margin-bottom: 400px;
  }
  .all-products-btn a {
    width: 100%;
  }
  .our-team-backgound {
    background: transparent;
    padding-top: 30px !important;
  }
  .our-team > div > div {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
  }
  .our-team .wp-block-column {
    margin-right: 44px !important;
    min-width: 145px !important;
    margin-top: 33px;
  }
  .our-team .wp-block-columns {
    overflow: scroll;
  }
  .our-team .wp-block-columns::-webkit-scrollbar {
    display: none;
  }
  body {
    background: url(/wp-content/uploads/2022/05/hubis_heumilch_footer_milch.png);
    background-repeat: no-repeat;
    background-position: 125% 97.7%;
    background-size: 72%;
  }
  .milch-background {
    background: unset !important;
  }
  .banner-details-with-txt {
    margin-bottom: 450px !important;
  }
  #masthead {
    height: 130px;
  }
  .home #masthead {
    height: inherit !important;
  }
  .home .wp-block-gallery figure.wp-block-image.size-large {
    max-width: 48% !important;
  }
  #primary-menu-list a {
    font-family: "roboto-condensed-bold", sans-serif;
    font-size: 33px !important;
    letter-spacing: 0 !important;
  }
  button#primary-mobile-menu[aria-expanded="true"] {
    background: -webkit-gradient(linear, left top, right top, from(white), to(#ffea3d));
    background: linear-gradient(90deg, white 0%, #ffea3d 100%);
    width: 100%;
    text-align: right;
    justify-self: flex-end !important;
    -ms-flex-item-align: end !important;
        align-self: flex-end !important;
    -webkit-box-flex: 100%;
        -ms-flex: 100%;
            flex: 100%;
    direction: rtl;
    margin-top: -15px;
    height: 177px;
  }
  button#primary-mobile-menu[aria-expanded="true"]:before {
    content: " ";
    background: url(/wp-content/uploads/2022/04/hubis_heumilch_logo.svg);
    width: 171px;
    height: 163px;
    position: absolute;
    left: 20px;
    top: 0;
  }
  .primary-menu-container {
    margin-top: 100px;
  }
  #primary-mobile-menu {
    background: #fff;
    height: 140px;
  }
  .home-header-text strong {
    font-size: 28px !important;
    letter-spacing: 1.52px;
  }
  .order-request {
    width: 80%;
    margin: auto;
  }
  p {
    font-family: "roboto-condensed-light", sans-serif;
    font-size: 19px !important;
    letter-spacing: 0.46px !important;
    line-height: 30px !important;
  }
  .home-header-text {
    line-height: 38px !important;
  }
  .erfolg-header {
    line-height: 42px !important;
    font-size: 40px !important;
    margin-top: 19px !important;
  }
  .bestell-info p {
    font-size: 12px !important;
    line-height: 22px !important;
  }
  .erfolgs-drei {
    font-size: 29px !important;
  }
  .footer-navigation-wrapper a {
    min-width: 97px;
    display: block;
  }
  .banner-details-with-txt h1 {
    font-size: 43px !important;
    text-shadow: 0px 0px 4px #fff;
  }
  h1 {
    font-size: 43px !important;
  }
  h2 {
    font-size: 33px !important;
  }
  h3 {
    font-size: 23px !important;
  }
  h4 {
    font-size: 20px !important;
  }
}

@media screen and (max-width: 1050px) {
  .pfandgebuhr {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  span#total-price-item {
    padding-right: 0;
  }
  p.mwst-custom {
    display: table-row-group;
  }
  .pfandgebuhr .pfand-total-wrapper {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 19%;
    padding-left: 16px;
    -webkit-box-flex: 50%;
        -ms-flex: 50%;
            flex: 50%;
    text-align: right;
  }
  .category-wrapper .category-item .flex-horizontal .item.subtotal {
    padding-left: 0;
  }
  span#pfandgebuhr-item {
    font-family: "roboto-condensed-bold", sans-serif !important;
    padding-right: 4px;
  }
  span.pfand-inhalt {
    display: none;
  }
  p.small-txt {
    font-size: 0.875rem !important;
  }
  span.pfand-price {
    display: none;
  }
  span.pfand-menge {
    display: none;
  }
  p.mwst-custom {
    font-size: 0.7rem !important;
  }
  .custom-footer-area {
    display: block !important;
  }
  .custom-footer-area > div:nth-child(3) {
    max-width: 50% !important;
    margin-top: 193px !important;
  }
  .custom-footer-area > div:nth-child(2) {
    float: left;
  }
  .custom-footer-area > div:nth-child(1) {
    -ms-flex-preferred-size: 100% !important;
        flex-basis: 100% !important;
  }
  .category-wrapper .header {
    display: none;
  }
  .category-wrapper .product-item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .product-item {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: normal !important;
        -ms-flex-direction: row !important;
            flex-direction: row !important;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .product-item .item.qty {
    -webkit-box-ordinal-group: 1;
        -ms-flex-order: 0;
            order: 0;
  }
  .product-item .item.name {
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
    width: 50%;
  }
  .product-item .item.name span {
    font-family: "roboto-condensed-bold", sans-serif !important;
    font-size: 19px !important;
    letter-spacing: 0.46px !important;
  }
  .product-item .short-description {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    text-align: right;
    padding-right: 11px;
    -ms-flex-preferred-size: 100% !important;
        flex-basis: 100% !important;
  }
  .product-item .short-description p {
    font-family: "roboto-condensed-bold", sans-serif !important;
  }
  .product-item .short-description:before {
    content: "MENGE";
    float: left;
    font-size: 18px !important;
    letter-spacing: 0.36px !important;
    padding-left: 6px;
    font-family: "roboto-condensed", sans-serif !important;
  }
  .product-item .item.price {
    text-align: right;
    padding-right: 11px;
    font-family: "roboto-condensed-light", sans-serif !important;
    -ms-flex-preferred-size: 100% !important;
        flex-basis: 100% !important;
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
  .product-item .item.price:before {
    content: "EINZELPREIS";
    float: left;
    font-size: 18px !important;
    letter-spacing: 0.36px !important;
    padding-left: 6px;
    font-family: "roboto-condensed", sans-serif !important;
  }
  .product-item .item.subtotal {
    -ms-flex-preferred-size: 100% !important;
        flex-basis: 100% !important;
    text-align: right;
    font-family: "roboto-condensed-bold", sans-serif !important;
    padding-right: 11px;
    -webkit-box-ordinal-group: 5;
        -ms-flex-order: 4;
            order: 4;
  }
  .product-item .item.subtotal:before {
    content: "GESAMTPREIS";
    float: left;
    font-size: 18px !important;
    letter-spacing: 0.36px !important;
    padding-left: 6px;
    font-family: "roboto-condensed", sans-serif !important;
  }
}

@media screen and (max-width: 1050px) and (min-width: 480px) {
  .menu-button-container {
    display: block !important;
    z-index: 9999999 !important;
  }
  .primary-menu-container {
    display: none;
  }
  .primary-menu-container.mobile-active {
    display: block !important;
    z-index: 9999;
    position: absolute;
    visibility: visible;
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
    height: -webkit-fit-content !important;
    height: -moz-fit-content !important;
    height: fit-content !important;
    overflow-y: auto !important;
    top: 0;
    background: #fff;
  }
  .primary-menu-container.mobile-active ul#primary-menu-list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding-left: 20px;
    padding-top: 20px;
    max-width: 60% !important;
  }
  .primary-navigation.parent-mobile-active {
    background: #fff;
    position: fixed;
    overflow-x: hidden !important;
    overflow-y: auto !important;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
  }
  button#primary-mobile-menu[aria-expanded="true"]:before {
    content: " ";
    background: url(/wp-content/uploads/2022/04/hubis_heumilch_logo.svg);
    width: 171px;
    height: 163px;
    position: absolute;
    left: 20px;
    top: 0;
  }
  .primary-menu-container {
    margin-top: 165px;
  }
  #primary-menu-list a {
    font-family: "roboto-condensed-bold", sans-serif;
    font-size: 28px !important;
    letter-spacing: 0 !important;
  }
  header#masthead {
    -webkit-box-align: initial;
        -ms-flex-align: initial;
            align-items: initial;
  }
  button#primary-mobile-menu[aria-expanded="true"] {
    background: -webkit-gradient(linear, left top, right top, from(white), to(#ffea3d));
    background: linear-gradient(90deg, white 0%, #ffea3d 100%);
    width: 100%;
    text-align: right;
    justify-self: flex-end !important;
    -ms-flex-item-align: end !important;
        align-self: flex-end !important;
    -webkit-box-flex: 100%;
        -ms-flex: 100%;
            flex: 100%;
    direction: rtl;
    margin-top: -15px;
    height: 177px;
  }
  .our-team-backgound {
    background: transparent;
    padding-top: 30px !important;
  }
  .our-team > div > div {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
  }
  .our-team .wp-block-column {
    margin-right: 44px !important;
    min-width: 145px !important;
    margin-top: 33px;
  }
  .our-team .wp-block-columns {
    overflow: scroll;
  }
  .our-team .wp-block-columns::-webkit-scrollbar {
    display: none;
  }
}

@media screen and (max-width: 1645px) and (min-width: 1168px) {
  p.mobile-text-custom {
    width: 66%;
  }
}

@media screen and (max-width: 1169px) and (min-width: 991px) {
  p.mobile-text-custom {
    max-width: 50%;
  }
}

@media screen and (max-width: 992px) {
  .vorteile-background {
    background: unset !important;
  }
}

.brush-text {
  font-family: "comforter-brush", sans-serif !important;
  font-size: 71px !important;
}

.accordion-questions .wp-block-pb-accordion-item {
  -webkit-box-shadow: 0px 3px 6px #00000019;
          box-shadow: 0px 3px 6px #00000019;
  border: 1px solid #dddddd;
  border-radius: 6px;
}

.accordion-questions br {
  display: none !important;
}

.accordion-questions .c-accordion__title {
  padding: 13px 13px 13px 35px;
}

.accordion-questions .c-accordion__title:after {
  color: #000 !important;
  position: absolute;
  left: 7px !important;
  font-size: 37px;
}

.accordion-questions .is-open .c-accordion__title {
  background: #dddddd !important;
  -webkit-box-shadow: 0px 3px 6px #00000019;
          box-shadow: 0px 3px 6px #00000019;
}

.accordion-questions .c-accordion__content {
  padding: 25px;
}

.our-team-backgound {
  background: -webkit-gradient(linear, left bottom, left top, color-stop(85%, #ffffff), color-stop(40%, #516d55));
  background: linear-gradient(0deg, #ffffff 85%, #516d55 40%);
  margin-top: 0 !important;
}

.vorteile-background {
  background: url(/wp-content/uploads/2022/04/hubis_heumilch_heidelbeerjoghurt_550px.jpg);
  background-repeat: no-repeat;
  background-position: right;
}

.vorteile-background img {
  max-width: 99px;
  max-height: 99px;
}

.milch-background {
  background: url(/wp-content/uploads/2022/05/hubis_heumilch_produkte_milch.png);
  background-repeat: no-repeat;
  background-position: right;
}

a.ub-expand-toggle-button {
  font-family: "roboto-condensed-light", sans-serif;
  font-size: 23px;
  letter-spacing: 0.46px !important;
}

.home-gallery .wp-block-image {
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
}

.home-gallery .wp-block-image:hover {
  -webkit-filter: brightness(50%);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.home-gallery .wp-block-image figcaption {
  top: 0 !important;
  -webkit-filter: brightness(100%) !important;
  bottom: 0 !important;
  left: 0 !important;
  right: 0 !important;
  margin: auto !important;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  width: -webkit-fit-content !important;
  width: -moz-fit-content !important;
  width: fit-content !important;
  background: transparent !important;
  font-size: 28px !important;
  display: none;
}

.home-gallery .wp-block-image:hover figcaption {
  -webkit-filter: brightness(100%) !important;
}

.d3-vitamin-icon img {
  width: 100% !important;
  min-width: 100% !important;
  height: 100% !important;
  min-height: 100% !important;
  -o-object-fit: scale-down;
     object-fit: scale-down;
}

.custom-font-erflogseite li {
  font-family: "roboto-condensed-light", sans-serif !important;
  font-size: 23px !important;
  letter-spacing: 0.46px !important;
}

.custom-contact .wpcf7-form {
  background: #fff;
  color: #000;
  padding: 45px;
}

.custom-contact input[type="text"],
.custom-contact input[type="email"],
.custom-contact input[type="url"],
.custom-contact input[type="password"],
.custom-contact input[type="search"],
.custom-contact input[type="number"],
.custom-contact input[type="tel"],
.custom-contact input[type="date"],
.custom-contact input[type="month"],
.custom-contact input[type="week"],
.custom-contact input[type="time"],
.custom-contact input[type="datetime"],
.custom-contact input[type="datetime-local"],
.custom-contact input[type="color"],
.custom-contact textarea {
  border: solid 1px #e0e0e0 !important;
  border-radius: 5px !important;
}

.custom-contact br {
  display: none !important;
}

.custom-contact .contact-submit {
  text-align: right;
}

.custom-contact .contact-submit input {
  background: #ffffff 0% 0% no-repeat padding-box;
  border-radius: 8px !important;
  opacity: 1;
  letter-spacing: 1.44px !important;
  color: #000000;
  padding: 10px 25px !important;
  text-transform: uppercase !important;
  font-family: "roboto-condensed-bold", sans-serif !important;
}

.custom-contact input[type="checkbox"] {
  border: solid 1px #e0e0e0 !important;
  border-radius: 5px !important;
  height: 18px !important;
  width: 18px !important;
}

.submit-wrapper {
  background: #000;
  margin-left: -45px;
  margin-right: -45px;
  margin-top: 18px;
  margin-bottom: -45px;
  padding-bottom: 17px;
  padding-top: 21px;
}

.submit-wrapper:hover {
  background: #000000;
  border-color: #ffffff;
  color: #ffffff !important;
}

#wpcf7-f212-p197-o1 .wpcf7-response-output {
  margin-top: 65px !important;
  margin-bottom: -20px !important;
}

.banner-details-with-txt {
  margin-bottom: 400px;
}
