/* Generic "dynamic popup" (e.g. Flavors) triggered from an anchor link
   added in the Body field via CKEditor. See js/popup.js. */
.pdp-popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, .55);
  z-index: 1050;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.pdp-popup-box {
  background: #fff;
  width: 100%;
  max-width: 640px;
  max-height: 85vh;
  overflow-y: auto;
  border-radius: 6px;
  padding: 30px;
  position: relative;
  box-shadow: 0 10px 40px rgba(0, 0, 0, .25);
}
.pdp-popup-close {
  position: absolute;
  top: 10px;
  right: 14px;
  background: none;
  border: 0;
  font-size: 30px;
  line-height: 1;
  cursor: pointer;
  color: #333;
}
.pdp-popup-close:hover,
.pdp-popup-close:focus {
  color: #000;
}
.pdp-popup-content-inner h2,
.pdp-popup-content-inner h3,
.pdp-popup-content-inner h4 {
  margin-top: 0;
  font-weight: 700;
  padding-right: 30px;
  font-size: 18px;
}
.pdp-popup-content-inner ul {
  columns: 3;
  column-gap: 30px;
  list-style: none;
  padding: 0;
  margin: 15px 0 0;
}
.pdp-popup-content-inner ul li {
  margin-bottom: 10px;
  position: relative;
  padding-left: 16px;
  break-inside: avoid;
}
.pdp-popup-content-inner ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 6px;
  height: 6px;
  background: #e07b1a;
  border-radius: 50%;
}
body.pdp-popup-open {
  overflow: hidden;
}
.flavors-modal .table {
  background: #fff4e6 !important;
  margin-bottom: 0 !important;
  width: 100%;
  border: 1px solid #e07b1a;
  border-radius: 10px;
  border-collapse: separate;
  border-spacing: 0;
  overflow: hidden;
}

.flavors-modal .table th:first-child {
  border-top-left-radius: 10px;
}

.flavors-modal .table th:last-child {
  border-top-right-radius: 10px;
}

.flavors-modal .table tr:last-child td:first-child {
  border-bottom-left-radius: 10px;
}

.flavors-modal .table tr:last-child td:last-child {
  border-bottom-right-radius: 10px;
}

.flavors-modal tbody, .flavors-modal td, .flavors-modal tfoot, .flavors-modal th, .flavors-modal thead, .flavors-modal tr {
  border: transparent !important;
}

@media (max-width: 600px) {
  .pdp-popup-content-inner ul {
    columns: 1;
  }
  .pdp-popup-box {
    padding: 22px;
  }
}
