.findInStorePanel {
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: 100;
  display: none;
  opacity: 0;
}

.findInStoreOverlay {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.5);
}

.findInStoreDrawer {
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: 490px;
  max-width: 100%;
  box-sizing: border-box;
  padding: 45px 30px 30px;
  overflow-y: auto;
  background-color: var(--web-background, #fff);
  color: var(--base, #000);
  font-size: var(--base-font-size, 13px);
  line-height: var(--base-line-height, 19px);
}

.findInStoreClose {
  position: absolute;
  top: 12px;
  right: 20px;
  font-size: 26px;
  line-height: 26px;
  cursor: pointer;
}

.findInStoreTitle {
  font-size: 24px;
  line-height: 30px;
  font-weight: bold;
}

.findInStoreSubtitle {
  margin-top: 4px;
  font-size: 14px;
}

.findInStoreDisclaimer {
  margin-top: 20px;
  opacity: 0.6;
}

.findInStoreContent {
  margin-top: 10px;
}

.findInStoreStore {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 15px;
  padding: 18px 0;
  border-bottom: 1px solid var(--web-border-color, #e0e0e0);
}

.findInStoreStoreName {
  font-size: 16px;
  font-weight: bold;
}

.findInStoreStoreAddress {
  margin-top: 4px;
  opacity: 0.6;
}

.findInStoreStoreSizes {
  white-space: nowrap;
  text-align: right;
}

@media screen and (max-width: 768px) {
  .findInStoreDrawer {
    width: 100%;
    padding: 45px 20px 20px;
  }
}
