.address-bar {
  margin: auto;
  width: 94%;
}
@media only screen and (max-width: 700px) {
  .address-bar {
    margin-top: 0;
    margin-bottom: 15px;
  }
}

.bar {
  height: 20px;
  width: 100%;
  border-radius: 20px;
  background-color: #0E73BB;
  border: 2px solid #0E73BB;
}

/* 
This is the actual bar with stripes
*/
.bar span {
  display: inline-block;
  height: 100%;
  background-color: #ACD9F8;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
  background-image: -webkit-linear-gradient(-45deg, #0E73BB 25%, transparent 25%, transparent 50%, #0E73BB 50%, #0E73BB 75%, transparent 75%, transparent);
  background-image: -moz-linear-gradient(-45deg, #0E73BB 25%, transparent 25%, transparent 50%, #0E73BB 50%, #0E73BB 75%, transparent 75%, transparent);
  background-image: -ms-linear-gradient(-45deg, #0E73BB 25%, transparent 25%, transparent 50%, #0E73BB 50%, #0E73BB 75%, transparent 75%, transparent);
  background-image: linear-gradient(-45deg, #0E73BB 25%, transparent 25%, transparent 50%, #0E73BB 50%, #0E73BB 75%, transparent 75%, transparent);
  -webkit-background-size: 50px 50px;
  -moz-background-size: 50px 50px;
  -ms-background-size: 50px 50px;
  background-size: 50px 50px;
  -webkit-animation: move 2s linear infinite;
  -moz-animation: move 2s linear infinite;
  -ms-animation: move 2s linear infinite;
  animation: move 2s linear infinite;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -ms-border-radius: 20px;
  border-radius: 20px;
  overflow: hidden;
  -webkit-box-shadow: inset 0 10px 0 rgba(255, 255, 255, 0.2);
  -moz-box-shadow: inset 0 10px 0 rgba(255, 255, 255, 0.2);
  -ms-box-shadow: inset 0 10px 0 rgba(255, 255, 255, 0.2);
  box-shadow: inset 0 10px 0 rgba(255, 255, 255, 0.2);
}

/*
Animate the stripes
*/
@-webkit-keyframes move {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: 50px 50px;
  }
}
@-moz-keyframes move {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: 50px 50px;
  }
}
@-ms-keyframes move {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: 50px 50px;
  }
}
@keyframes move {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: 50px 50px;
  }
}
.result-extras {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  max-width: 800px !important;
  margin: 0 auto;
}
@media only screen and (max-width: 700px) {
  .result-extras {
    margin-bottom: 15px !important;
  }
}
.result-extras span, .result-extras a {
  font-size: 13px;
  color: black;
  text-decoration: none;
  display: flex;
  align-items: center;
}
.result-extras span svg, .result-extras a svg {
  margin-left: 5px;
}
.result-extras span b, .result-extras a b {
  margin-left: 3px;
}

.hero-block {
  min-height: 151px;
  margin-bottom: 10px;
}
@media only screen and (max-width: 700px) {
  .hero-block {
    padding: 20px 10px;
  }
}
.hero-block h1 {
  font-size: 36px;
}
@media only screen and (max-width: 700px) {
  .hero-block h1 {
    font-size: 32px;
  }
}

.fill-loader {
  width: 48px;
  height: 48px;
  border: 5px solid #F9F9F9;
  border-bottom-color: #0E73BB;
  border-radius: 50%;
  display: inline-block;
  box-sizing: border-box;
  animation: rotation 1s linear infinite;
  margin: 0 auto;
}

@keyframes rotation {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.hero-block-results {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  max-width: 800px;
  margin: 0 auto;
  margin-top: 20px;
}
.hero-block-results p {
  margin: 0;
  margin-bottom: 8px;
  font-size: 16px;
}

.hero-block-filters {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 8px;
  max-width: 100%;
  margin-top: 10px;
}
.hero-block-filters-filter {
  border: 1px solid rgba(0, 30, 112, 0.12);
  background-color: #F5F7FA;
  border-radius: 999px;
  padding: 0px 8px;
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  font-weight: 500;
  color: #4A5565;
  cursor: pointer;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.04);
  transition: color 0.2s ease, border-color 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease;
  white-space: nowrap;
}
.hero-block-filters-filter:hover, .hero-block-filters-filter:focus-visible {
  color: #001E70;
  border-color: rgba(0, 168, 224, 0.7);
  background-color: rgba(0, 168, 224, 0.08);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.075);
}
.hero-block-filters-filter:focus-visible {
  outline: 2px solid rgba(0, 168, 224, 0.4);
  outline-offset: 2px;
}
@media only screen and (max-width: 700px) {
  .hero-block-filters-filter {
    padding: 4px 8px;
    font-size: 0.72rem;
    gap: 4px;
  }
}
.hero-block-filters-filter__label {
  line-height: 1.3;
}
.hero-block-filters-filter__count {
  color: inherit;
  font-weight: 500;
}

.unit-box {
  display: flex;
  flex-wrap: wrap;
  max-width: 800px;
  margin: 0 auto;
  background-color: white;
  box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.25);
  border-radius: 12px;
  padding: 12px 8px;
}
.unit-box span {
  color: #6C6C6B;
}
.unit-box-address {
  display: flex;
  align-items: center;
  font-size: 14px;
  width: 56%;
  cursor: pointer;
}
@media only screen and (max-width: 700px) {
  .unit-box-address {
    width: 100%;
    border-bottom: 1px solid #AAB0B7;
    margin-bottom: 8px;
    padding-bottom: 12px;
  }
}
.unit-box-address.is-editing {
  cursor: text;
  flex: 1;
}
.unit-box-address svg {
  margin-right: 8px;
}
.unit-box-address-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-around;
  max-width: 100%;
  flex: 1;
  min-width: 0;
}
@media only screen and (max-width: 700px) {
  .unit-box-address-text {
    max-width: 90%;
  }
}
.unit-box-address-text span, .unit-box-address-text b {
  line-height: normal;
}
.unit-box-address-text p {
  margin: 0;
  margin-top: 4px;
  font-weight: 500;
  font-size: 14px;
}
@media only screen and (max-width: 700px) {
  .unit-box-address-text p {
    max-width: 100%;
  }
}
.unit-box-address-input {
  border: none;
  outline: none;
  background: transparent;
  font-size: 14px;
  font-weight: 500;
  color: #2D2D2D;
  font-family: inherit;
  margin-top: 4px;
  padding: 0;
  width: 100%;
  line-height: normal;
}
.unit-box-address-input::placeholder {
  color: #6B7280;
  opacity: 0.85;
  font-weight: 500;
}
.unit-box-address-input-wrapper {
  position: relative;
  width: 100%;
}
.unit-box-address-input-wrapper .adressevaelger-suggestions {
  top: auto;
  left: 0;
  right: 0;
  margin: 8px 0 0;
  padding: 8px;
  border-radius: 12px;
  background: #FFFFFF;
  border: 1px solid #E2E5EA;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  list-style: none;
  max-width: none;
}
.unit-box-address-input-wrapper .adressevaelger-suggestions .adressevaelger-suggestion {
  margin: 0;
  cursor: pointer;
  padding: 10px 12px;
  color: #2D2D2D;
  font-size: 14px;
  line-height: 1.4;
  border: none;
  border-radius: 8px;
}
.unit-box-address-input-wrapper .adressevaelger-suggestions .adressevaelger-suggestion.dawa-selected,
.unit-box-address-input-wrapper .adressevaelger-suggestions .adressevaelger-suggestion:hover {
  background: #F1F3F6;
}
.unit-box-info {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  width: 22%;
  border-left: 1px solid #AAB0B7;
  font-size: 13px;
  box-sizing: border-box;
}
@media only screen and (max-width: 700px) {
  .unit-box-info {
    width: 50%;
    border-left: none;
  }
}
@media only screen and (max-width: 700px) {
  .unit-box-info:nth-child(2) {
    border-right: 1px solid #AAB0B7;
  }
}
.unit-box-info-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-around;
}
.unit-box-info p {
  font-size: 14px;
  margin: 0;
  margin-top: 4px;
  font-weight: 500;
}
.unit-box-info svg {
  margin-right: 8px;
}

.address-entry-prompt {
  max-width: 800px;
  margin: 0 auto 20px;
  text-align: center;
}
.address-entry-prompt h1 {
  margin: 0 0 8px;
}
.address-entry-prompt p {
  margin: 0;
  font-size: 16px;
  color: #4A5565;
}
.address-entry-unit-box .unit-box-address {
  cursor: text;
}
.address-entry-unit-box .unit-box-address-input {
  font-size: 16px;
}
.address-entry-teaser {
  align-items: center !important;
  text-align: center;
}
.address-entry-teaser p {
  color: #4A5565;
  font-weight: 500;
}

.address-entry-skeleton {
  pointer-events: none;
  user-select: none;
  -webkit-mask-image: linear-gradient(to bottom, #000 60%, transparent 100%);
  mask-image: linear-gradient(to bottom, #000 60%, transparent 100%);
}
.address-entry-skeleton .address-entry-skel-filterbar {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  width: 800px;
  max-width: 100%;
  margin: 0 auto 24px;
}
.address-entry-skeleton .productfeed-category-cards {
  display: flex;
  flex-direction: column;
}
.address-entry-skeleton .address-entry-skel-card {
  cursor: default;
}

@keyframes pf-skeleton-shimmer {
  0% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0 50%;
  }
}
.pf-skeleton {
  display: inline-block;
  border-radius: 6px;
  background: linear-gradient(90deg, #e7ebf0 25%, #f3f6f9 37%, #e7ebf0 63%);
  background-size: 400% 100%;
  animation: pf-skeleton-shimmer 1.4s ease infinite;
}
.pf-skeleton--label {
  width: 56px;
  height: 11px;
  margin-bottom: 6px;
  border-radius: 4px;
}
.pf-skeleton--value {
  width: 78px;
  height: 16px;
  border-radius: 4px;
}
.pf-skeleton--line {
  width: 96px;
  height: 10px;
  border-radius: 4px;
}
.pf-skeleton--logo {
  width: 70px;
  height: 40px;
  border-radius: 6px;
}
.pf-skeleton--badge {
  width: 150px;
  height: 14px;
  border-radius: 4px;
}
.pf-skeleton--price {
  width: 90px;
  height: 22px;
  margin-bottom: 8px;
  border-radius: 4px;
}
.pf-skeleton--button {
  width: 100%;
  height: 40px;
  border-radius: 100px;
}
.pf-skeleton--readmore {
  width: 64px;
  height: 12px;
  margin-top: 8px;
  border-radius: 4px;
}
.pf-skeleton--filter {
  width: 120px;
  height: 44px;
  border-radius: 8px;
}

.address-signup {
  position: fixed;
  width: 100%;
  height: 100vh;
  top: 0;
  left: 0;
  z-index: 25;
}
.address-signup-overlay {
  width: 100%;
  height: 100%;
  position: fixed;
  background: black;
  opacity: 0.6;
  z-index: 1;
}
.address-signup-box {
  position: absolute;
  z-index: 2;
  left: 0;
  right: 0;
  margin-left: auto;
  margin-right: auto;
  border-radius: 10px;
  background: #FFF;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
  padding: 20px;
  width: 428px;
  display: flex;
  flex-direction: column;
  top: 15%;
  align-items: center;
  box-sizing: border-box;
}
@media only screen and (max-width: 1400px) {
  .address-signup-box {
    top: 5%;
    transform: scale(0.8);
  }
}
@media only screen and (max-width: 700px) {
  .address-signup-box {
    width: 90% !important;
    transform: scale(1);
  }
}
.address-signup-box-address {
  box-sizing: border-box;
  padding: 10px;
  display: flex;
  flex-direction: column;
  width: 100%;
  border-radius: 4px;
  background: #F1F1F1;
  margin-bottom: 15px;
}
@media only screen and (max-width: 700px) {
  .address-signup-box-address {
    padding: 5px 10px;
  }
}
.address-signup-box-address b {
  margin-bottom: 8px;
  font-size: 18px;
}
@media only screen and (max-width: 700px) {
  .address-signup-box-address b {
    font-size: 15px;
  }
}
.address-signup-box-address span {
  font-size: 16px !important;
  text-align: left !important;
}
@media only screen and (max-width: 700px) {
  .address-signup-box-address span {
    font-size: 14px !important;
  }
}
@media only screen and (max-width: 700px) {
  .address-signup-box-icon {
    height: 35px;
    width: auto;
  }
}
.address-signup-box h3 {
  font-size: 40px;
  text-align: center;
  margin-bottom: 5px;
}
.address-signup-box p {
  font-size: 18px;
  line-height: 1.4;
  margin-top: 10px;
}
@media only screen and (max-width: 700px) {
  .address-signup-box p {
    font-size: 15px;
  }
}
.address-signup-box form {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}
.address-signup-box .input-wrapper {
  width: 100%;
  position: relative;
}
.address-signup-box .error-message {
  color: #ff0000;
  font-size: 12px;
  margin-top: 5px;
  text-align: left;
  width: 100%;
  padding-left: 15px;
}
.address-signup-box-input {
  width: 100%;
  font-size: 17px;
  border-radius: 35px;
  border: 1px solid #009ED8;
  background: #F5F5F7;
  box-shadow: 0px 3px 6px 0px rgba(0, 0, 0, 0.16);
  padding: 15px 25px;
  box-sizing: border-box;
  outline: none;
  transition: border-color 0.2s ease;
}
.address-signup-box-input:focus {
  outline: none;
}
.address-signup-box-input.error {
  border-color: #ff0000;
  box-shadow: 0px 3px 6px 0px rgba(255, 0, 0, 0.16);
}
.address-signup-box-input:disabled {
  background: #f0f0f0;
  cursor: not-allowed;
  opacity: 0.7;
}
.address-signup-box-btn {
  width: 100%;
  font-size: 17px;
  margin: 15px auto !important;
  background-color: #E98F00;
  text-align: center;
  border-radius: 25px;
  position: relative;
  text-decoration: none;
  color: white;
  padding: 14px 0;
  margin: auto;
  font-weight: bold;
  cursor: pointer;
  outline: none;
  border: none;
  font-size: 15px;
  background: #E98F00;
  box-shadow: 0px 3px 9px rgba(0, 0, 0, 0.2509803922);
}
@media only screen and (max-width: 700px) {
  .address-signup-box-btn {
    border-radius: 0 0px 9px 0px;
    box-shadow: none;
  }
}
.address-signup-box-btn:hover {
  background: #E98F00;
}
@media only screen and (max-width: 700px) {
  .address-signup-box-btn {
    border-radius: 35px;
    box-shadow: 0px 3px 6px 0px rgba(0, 0, 0, 0.16);
  }
}
.address-signup-box-btn:hover {
  filter: brightness(0.95);
}
.address-signup-box-btn:disabled {
  cursor: not-allowed;
  opacity: 0.8;
}
.address-signup-box-btn:disabled:hover {
  filter: brightness(0.95);
}
.address-signup-box span {
  font-size: 12px;
  text-align: center;
}
.address-signup-box-exitbtn {
  border-radius: 35px;
  background: #F5F5F7;
  box-shadow: 0px 3px 6px 0px rgba(0, 0, 0, 0.16);
  border: none;
  padding: 15px 35px;
  margin-top: 15px;
  font-size: 17px;
  cursor: pointer;
}
.address-signup-box-exit {
  position: absolute;
  top: 10px;
  right: 20px;
  cursor: pointer;
}