.ap_modal_overlay {
  background-color: rgba(0, 0, 0, 0.2);
  position: fixed;
  z-index: 1000;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  display: none;
}

.ap_modal {
  display: none;
  overflow: auto;
  overscroll-behavior-y: contain;
  background-color: #fff;
  position: fixed;
  width: 600px;
  max-width: 100%;
  padding: 2.6rem;
  border-radius: 10px;
  z-index: 99999998;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-height: 100vh;
  color: #292929;
  box-shadow: 0px 1px 8px 1px rgba(0, 0, 0, 0.2);
}
.ap_modal .tabs {
  display: flex;
  margin-top: 1rem;
  justify-content: flex-start;
  align-items: center;
  border-bottom: 1px solid lightgray;
  gap: 0.5rem;
  flex-wrap: nowrap;
  overflow-x: auto;
  position: relative;
  -ms-overflow-style: none;
  /* Internet Explorer 10+ */
  scrollbar-width: none;
  /* Firefox */
}
.ap_modal .tabs::-webkit-scrollbar {
  display: none;
  /* Safari and Chrome */
}
.ap_modal .tabs > div {
  padding: 0.3rem;
  padding-bottom: 0.5rem;
  padding-left: 1rem;
  padding-right: 1rem;
  color: #737373;
  cursor: pointer;
  font-weight: bold;
  border-bottom: 2px solid transparent;
  transition: border-color 0.3s ease;
  display: flex;
  flex-wrap: nowrap;
  justify-content: left;
  align-items: center;
  text-wrap: nowrap;
}
.ap_modal .tabs > div:hover, .ap_modal .tabs > div.active {
  color: #3F621A;
  border-color: #3F621A;
}
.ap_modal .tabs > div .badge {
  background-color: #F5FBEE;
  border: 1px solid #CEEAB0;
  color: #3F621A;
  font-size: 90%;
  font-weight: normal;
  margin-left: 6px;
}
.ap_modal .tabs > div .badge.shhh {
  display: none;
}
.ap_modal .tabs_container {
  position: relative;
}
.ap_modal .tabs_container.can-scroll-right:after {
  content: "\f3d6";
  position: absolute;
  display: inline-block;
  font-family: "Ionicons";
  speak: none;
  font-style: normal;
  font-weight: 400;
  font-variant: normal;
  text-transform: none;
  text-rendering: auto;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color: #3f621a;
  right: 0;
  top: 0;
  font-size: 200%;
  background-color: rgba(255, 255, 255, 0.74);
  padding-left: 1rem;
  padding-right: 1rem;
  pointer-events: none;
  cursor: pointer;
  z-index: 1;
}
.ap_modal .tabs_container.can-scroll-left:before {
  content: "\f3d5";
  position: absolute;
  display: inline-block;
  font-family: "Ionicons";
  speak: none;
  font-style: normal;
  font-weight: 400;
  font-variant: normal;
  text-transform: none;
  text-rendering: auto;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color: #3f621a;
  left: 0;
  top: 0;
  font-size: 200%;
  background-color: rgba(255, 255, 255, 0.74);
  padding-left: 1rem;
  padding-right: 1rem;
  pointer-events: none;
  cursor: pointer;
  z-index: 1;
}
.ap_modal .tab_lists {
  max-height: 50vh;
  overflow-y: scroll;
  overscroll-behavior-y: contain;
}
.ap_modal .tab_lists .tab {
  display: none;
}
.ap_modal .tab_lists .item {
  display: flex;
  width: 100%;
  padding: 1rem;
  justify-content: space-between;
  border-bottom: 1px solid lightgray;
}
.ap_modal .tab_lists .item > div {
  display: flex;
  gap: 1rem;
  align-items: center;
  cursor: pointer;
}
.ap_modal .tab_lists .item .img img {
  width: 80px;
  height: 90px;
  object-fit: contain;
  object-position: center center;
}
.ap_modal .tab_lists .item .price {
  font-weight: bold;
  color: #669F2A;
  font-size: 110%;
}
.ap_modal .bottom {
  padding-top: 1rem;
  padding-bottom: 1rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.ap_modal .close_button {
  position: absolute;
  right: 2rem;
  top: 2rem;
  background: rgba(230, 244, 215, 0.6);
  padding: 0rem;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transform: scale(1);
  transition: transform 0.3s ease;
}
.ap_modal .close_button:hover {
  transform: scale(1.1);
}
.ap_modal .close_button svg {
  width: 16px;
  height: 16px;
}
.ap_modal.ap_modal p,
.ap_modal.ap_modal h3 {
  color: #292929;
}
.ap_modal h1,
.ap_modal h2,
.ap_modal h3,
.ap_modal h4,
.ap_modal h5,
.ap_modal h6 {
  margin: 0;
}
.ap_modal .btn {
  box-shadow: 0px 1px 2px 0px rgba(16, 24, 40, 0.0509803922);
  text-align: center;
  background-color: white;
  padding: 1rem;
  border: 1px solid lightgray;
  color: #292929;
  width: 100%;
  text-transform: unset;
  font-weight: normal;
}
.ap_modal .btn.green {
  background-color: #3F621A;
  color: white;
  border: none;
}
.ap_modal .btn.green:hover {
  color: white;
}
.ap_modal .btn:hover {
  opacity: 0.9;
  color: inherit;
}
.ap_modal .button_group {
  display: flex;
  gap: 2rem;
}
.ap_modal .total_extras {
  color: #1A280B;
  font-weight: bold;
}
.ap_modal .extras_amount {
  font-weight: 900;
  font-size: 120%;
}
.ap_modal.image_viewer p {
  margin-bottom: 0px;
}
.ap_modal.image_viewer .img {
  padding: 2rem;
  width: 80%;
  margin: 0 auto;
}
.ap_modal.image_viewer .titles {
  padding-top: 1rem;
  padding-bottom: 1rem;
}
.ap_modal.image_viewer .button_group {
  margin-top: 1rem;
}
.ap_modal.image_viewer .button_group .btn {
  margin: 0 auto;
  width: auto;
}
.ap_modal.image_viewer .price {
  font-weight: bold;
  color: #3F621A;
  margin-top: 1rem;
  font-size: 120%;
  user-select: none;
}
.ap_modal.image_viewer .ap_quantity {
  margin: 0 auto;
}

a.green {
  color: #669F2A;
  cursor: pointer;
}
a.underline {
  text-decoration: underline;
}

.addon_grid {
  display: flex;
  justify-content: left;
  gap: 1.5rem;
  user-select: none;
}
.addon_grid > div {
  font-size: 80%;
  font-weight: bold;
  width: 100px;
}
.addon_grid > div:not(.first) {
  display: none;
}
.addon_grid > div .img {
  background-color: #fff;
  border: 1px solid lightgray;
  cursor: pointer;
  position: relative;
}
.addon_grid > div .img img {
  width: 100px !important;
  height: 100px;
  object-fit: contain;
  object-position: 50% 50%;
}
.addon_grid > div .img .ap_quantity {
  position: absolute;
  right: 10px;
  bottom: 10px;
}
.addon_grid > div .cost {
  color: #669F2A;
  font-weight: bold;
}
.addon_grid > div .name {
  color: #1A280B;
  line-height: normal;
  margin-top: 0.5rem;
}

.ap_quantity {
  color: #669F2A;
  border: 2px solid white;
  display: flex;
  border-radius: 21px;
  font-size: 90%;
  justify-content: space-evenly;
  align-items: center;
  background-color: #669F2A;
  width: 22px;
  height: 22px;
  transition: width 0.2s ease;
  user-select: none;
}
.ap_quantity svg path {
  stroke: white;
}
.ap_quantity .amount {
  display: none;
  color: white;
}
.ap_quantity .minus {
  cursor: pointer;
  display: none;
  padding: 3px;
}
.ap_quantity .minus svg {
  margin-bottom: 2px;
}
.ap_quantity .plus {
  cursor: pointer;
  line-height: 7px;
  padding: 3px;
}
.ap_quantity.active, .ap_quantity:hover {
  border-color: transparent;
  width: 61px;
}
.ap_quantity.active .amount, .ap_quantity:hover .amount {
  display: block;
}
.ap_quantity.active .minus, .ap_quantity:hover .minus {
  display: block;
}

.wcpa_section_body {
  display: none !important;
}

.wcpa_section {
  display: none !important;
}

.wcpa_section_body:has(.do_not_hide) {
  display: block !important;
}

.wcpa_section:has(.do_not_hide) {
  display: block !important;
}

.wcpa_price_summary.show {
  display: block !important;
}

.wcpa_price_summary.show {
  display: block !important;
}