@charset "UTF-8";
.customer_account-layout {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.customer_account-layout > *:empty {
  display: none;
}
.customer_account-layout .customer_account-main-container {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  grid-template-areas: "account_header" "account_sidebar" "account_main" "account_below_sidebar";
  column-gap: 20px;
  row-gap: 10px;
}
@media screen and (min-width: 992px) {
  .customer_account-layout .customer_account-main-container {
    grid-template-columns: 300px minmax(250px, 1fr);
    grid-template-rows: auto auto 1fr;
    grid-template-areas: "account_header account_header" "account_sidebar account_main" "account_below_sidebar account_main";
  }
}
.customer_account-layout .customer_account-main-container .customer_account-display_name {
  grid-area: account_header;
  margin: 0;
}
.customer_account-layout .customer_account-main-container .customer_account-sidebar {
  grid-area: account_sidebar;
}
@media print {
  .customer_account-layout .customer_account-main-container .customer_account-sidebar {
    display: none !important;
  }
}
.customer_account-layout .customer_account-main-container .customer_account-below_sidebar {
  grid-area: account_below_sidebar;
}
@media print {
  .customer_account-layout .customer_account-main-container .customer_account-below_sidebar {
    display: none !important;
  }
}
.customer_account-layout .customer_account-main-container .customer_account-main {
  grid-area: account_main;
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.customer_account-layout .customer_account-main-container .order_delay_message {
  display: flex;
  align-items: center;
  gap: 5px;
}
.customer_account-layout .customer_account-main-container .order_delay_message i {
  color: #135a8a;
}
@media print {
  .customer_account-layout .customer_account-main-container .order_delay_message {
    display: none !important;
  }
}
@media print {
  .customer_account-layout .customer_account-main-container .customer_account-top-banner-container,
  .customer_account-layout .customer_account-main-container .customer_account-bottom-banner-container {
    display: none !important;
  }
}
@media print {
  .customer_account-layout a[href]:after {
    content: none !important;
  }
}

.customer_account-addresses {
  display: grid;
  grid-template-columns: 1fr;
  width: 100%;
  column-gap: 20px;
  row-gap: 10px;
}
@media only screen and (min-width: 501px) {
  .customer_account-addresses {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  }
}
.customer_account-addresses .addresses-title {
  grid-row: 1/2;
  grid-column: 1/-1;
}
.customer_account-addresses .addresses-title h2 {
  margin: 0;
}
.customer_account-addresses .address {
  border: 1px solid #c6c6c6;
  min-height: 200px;
  color: #000;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: stretch;
  border-radius: 15px;
  overflow: hidden;
}
@media only screen and (max-width: 799px) {
  .customer_account-addresses .address {
    max-width: 100%;
  }
}
.customer_account-addresses .address > * {
  padding: 5px 15px;
}
.customer_account-addresses .address .address-header {
  background-color: #135A8A;
  color: #fff;
  min-height: 52px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  text-transform: capitalize;
}
.customer_account-addresses .address .address-header .set_as_default_button {
  background-color: transparent;
  border: none;
  box-shadow: none;
  padding: 0;
  margin: 0;
}
.customer_account-addresses .address .address-header .set_as_default_button:disabled {
  cursor: default;
  opacity: 1;
}
.customer_account-addresses .address .address-header .is_default_address {
  color: #fff200;
}
.customer_account-addresses .address .address-body {
  height: 100%;
  max-height: -webkit-fill-available;
}
.customer_account-addresses .address .address-body p {
  margin: 0;
  padding: 10px 0;
}
.customer_account-addresses .address .address-buttons {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  padding-bottom: 10px;
}
.customer_account-addresses .address .address-buttons button {
  height: 40px;
  min-width: fit-content;
}
.customer_account-addresses .address.view_all_addresses, .customer_account-addresses .address.add_address {
  padding: 0;
}
.customer_account-addresses .address.view_all_addresses .address-body, .customer_account-addresses .address.add_address .address-body {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #efefef;
  font-size: 50px;
}
.customer_account-addresses .address_form-dialog {
  border: 2px solid #ddd;
  border-radius: 10px;
  width: 800px;
  max-width: 90%;
  margin: auto;
}
.customer_account-addresses .address_form-dialog::backdrop {
  backdrop-filter: brightness(0.5);
}
.customer_account-addresses .address_form-dialog .address_form {
  display: flex;
  flex-wrap: wrap;
  column-gap: 10px;
  row-gap: 15px;
  padding: 20px;
}
.customer_account-addresses .address_form-dialog .address_form > * {
  flex-basis: 100%;
}
.customer_account-addresses .address_form-dialog .address_form > .half_width {
  flex-basis: calc((100% - 10px) / 2);
}
.customer_account-addresses .address_form-dialog .address_form .address_form_header {
  text-transform: capitalize;
  text-align: center;
  font-weight: 700;
  margin-top: 0;
  margin-bottom: 25px;
}
.customer_account-addresses .address_form-dialog .address_form .form_item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  color: #000;
}
.customer_account-addresses .address_form-dialog .address_form .form_item.default_address {
  flex-direction: row;
  width: max-content;
}
.customer_account-addresses .address_form-dialog .address_form .form_item.default_address > * {
  cursor: pointer;
  width: fit-content;
}
.customer_account-addresses .address_form-dialog .address_form .form_item > * {
  width: 100%;
  font-size: 14px;
}
.customer_account-addresses .address_form-dialog .address_form .form_item .address_form-label {
  margin: 0;
  text-transform: uppercase;
  font-weight: 700;
}
.customer_account-addresses .address_form-dialog .address_form .form_item .address_form-label.required_field::after {
  content: "*";
}
.customer_account-addresses .address_form-dialog .address_form .form_item input {
  margin: 0;
}
.customer_account-addresses .address_form-dialog .address_form .form_item .address_form_box {
  border: 1px solid #d7dbdb;
  height: 30px;
  padding: 0 5px;
  border-radius: 5px;
}
.customer_account-addresses .address_form-dialog.delete_address-dialog {
  width: 500px;
}
.customer_account-addresses .address_form-dialog.delete_address-dialog .address_form > h3,
.customer_account-addresses .address_form-dialog.delete_address-dialog .address_form > p {
  text-align: center;
  margin-top: 0;
  margin-bottom: 25px;
}
.customer_account-addresses .address_form-dialog.delete_address-dialog .address_form > h3 {
  font-weight: 700;
}

.customer_account-navigation {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.customer_account-navigation .navigation-header {
  margin: 0;
  padding: 10px;
  word-break: break-word;
}
.customer_account-navigation .navigation-list {
  position: relative;
}
.customer_account-navigation .navigation-list .list-item {
  transition: height 0.5s ease;
  height: 42px;
  overflow: hidden;
}
.customer_account-navigation .navigation-list .list-item .item-text {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px;
  color: #000;
  border-bottom: 1px solid #000;
}
.customer_account-navigation .navigation-list .list-item .item-text.item-link:hover {
  background-color: #000;
  color: #fff;
}
.customer_account-navigation .navigation-list .list-item .item-text i {
  font-size: 18px;
}
.customer_account-navigation .navigation-list .list-item .item-text.current, .customer_account-navigation .navigation-list .list-item .item-text.current i {
  font-weight: 900;
}
.customer_account-navigation .navigation-list .list-item #navigationDropdownButton {
  display: none;
}
@media screen and (max-width: 991px) {
  .customer_account-navigation .navigation-list .list-item #navigationDropdownButton {
    position: absolute;
    right: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    top: 0;
    height: 42px;
    width: 42px;
    font-size: 20px;
    border: none;
    background: none;
    box-shadow: none;
    transition: all 0.5s;
  }
  .customer_account-navigation .navigation-list.navigation-open #navigationDropdownButton {
    transform: rotate(180deg);
  }
  .customer_account-navigation .navigation-list:not(.navigation-open) .list-item:not(.current-list-item) {
    height: 0;
  }
}

.customer_account-order_details {
  border: 1px solid #ddd;
  border-radius: 10px;
  display: grid;
  grid-template-areas: "details-header" "order-items" "value-added-items" "details-footer";
  column-gap: 15px;
  background-color: #f5f5f5;
  overflow: hidden;
}
@media only screen and (min-width: 992px) {
  .customer_account-order_details {
    grid-template-areas: "details-header details-footer" "order-items details-footer" "value-added-items details-footer";
    grid-template-columns: 3fr minmax(220px, 1fr);
  }
}
.customer_account-order_details * {
  text-transform: capitalize;
}
.customer_account-order_details table * {
  text-transform: capitalize;
}
.customer_account-order_details .order_details-header {
  grid-area: details-header;
  display: flex;
  column-gap: 30px;
  flex-wrap: wrap;
  background-color: #fff;
  padding: 10px;
  border-color: #ddd;
  border-style: solid;
  border-width: 0 1px 1px 0;
}
@media only screen and (min-width: 501px) {
  .customer_account-order_details .order_details-header {
    padding: 25px;
  }
}
@media only screen and (max-width: 991px) {
  .customer_account-order_details .order_details-header {
    border-right: none;
  }
}
.customer_account-order_details .order_details-header .order_details-header-main {
  flex-basis: 100%;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}
.customer_account-order_details .order_details-header .order_details-header-main .order_number {
  margin: 0;
}
.customer_account-order_details .order_details-header .order_details-header-main .order_status-continer .order-detail-value {
  padding: 0 5px;
  border-radius: 5px;
  color: #fff;
  white-space: nowrap;
}
.customer_account-order_details .order_details-header .order_details-header-main .order_status-continer .order-detail-value.order_status_delivered, .customer_account-order_details .order_details-header .order_details-header-main .order_status-continer .order-detail-value.order_status_picked_up {
  background-color: green;
}
.customer_account-order_details .order_details-header .order_details-header-main .order_status-continer .order-detail-value.order_status_open {
  background-color: #135a8a;
}
.customer_account-order_details .order_details-header .order_details-header-main .order_status-continer .order-detail-value.order_status_voided {
  background-color: red;
}
.customer_account-order_details .order_details-header .order_details-header-main .print_button {
  margin-left: auto;
  display: flex;
  gap: 5px;
  align-items: center;
  line-height: 1;
  border-radius: 5px;
  border: 1px solid #ddd;
  box-shadow: 2px 2px 5px #ddd;
  background-color: #f0f0f0;
  padding: 5px 10px;
}
.customer_account-order_details .order_details-header .order_details-header-main .print_button:hover {
  background-color: #ddd;
}
@media print {
  .customer_account-order_details .order_details-header .order_details-header-main .print_button {
    display: none !important;
  }
}
.customer_account-order_details .order_details-header .order_details-header-table {
  width: fit-content;
  height: fit-content;
}
.customer_account-order_details .order_details-header .order_details-header-table .order-detail th,
.customer_account-order_details .order_details-header .order_details-header-table .order-detail td {
  vertical-align: top;
  text-transform: capitalize;
  padding: 5px 10px;
}
.customer_account-order_details .order_details-header .order_details-header-table .order-detail th {
  padding-left: 0;
}
.customer_account-order_details .order_details-header .order_details-header-table .order-detail td {
  padding-right: 0;
}
.customer_account-order_details .order_details-header .order_details-header-table .order-detail.shipping_pickup_address > .order-detail-value {
  line-height: 1.5;
}
.customer_account-order_details .order_details-header .order_details-header-table .order-detail .email {
  text-transform: lowercase;
}
.customer_account-order_details .order_details-header .order_details-header-table .order-detail .order-detail-title {
  min-width: 110px;
}
.customer_account-order_details .order_items-container {
  padding: 15px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
@media only screen and (min-width: 992px) {
  .customer_account-order_details .order_items-container {
    padding-right: 0;
  }
}
.customer_account-order_details .order_items-container.order_items {
  grid-area: order-items;
}
.customer_account-order_details .order_items-container.value_added_items {
  grid-area: value-added-items;
}
.customer_account-order_details .order_items-container:empty {
  display: none;
}
.customer_account-order_details .order_items-container h3 {
  padding: 0 10px;
  margin: 0;
}
.customer_account-order_details .order_items-container .order_item {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: #000;
  padding: 15px;
  border-style: solid;
  border-color: #ddd;
  border-width: 1px;
  background-color: #fff;
}
@media only screen and (max-width: 550px) {
  .customer_account-order_details .order_items-container .order_item {
    flex-direction: column;
  }
}
.customer_account-order_details .order_items-container .order_item .item_image {
  margin: auto;
}
@media print {
  .customer_account-order_details .order_items-container .order_item .item_image {
    display: none !important;
  }
}
.customer_account-order_details .order_items-container .order_item .item_details {
  flex-grow: 1;
}
.customer_account-order_details .order_items-container .order_item .item_details .item_detail.item_title {
  font-size: 16px;
  margin-bottom: 10px;
}
.customer_account-order_details .order_items-container .order_item .item_details .item_detail:not(.item_title) {
  color: #585858;
  font-size: 13px;
}
.customer_account-order_details .order_items-container .order_item .item_total_price {
  font-size: 16px;
  white-space: nowrap;
}
.customer_account-order_details .order_details-body_footer {
  grid-area: details-footer;
  background-color: #fff;
  border-top: 1px solid #ddd;
  padding: 5px 10px;
}
@media only screen and (min-width: 992px) {
  .customer_account-order_details .order_details-body_footer {
    border-top: none;
    border-left: 1px solid #ddd;
  }
}
.customer_account-order_details .order_details-body_footer h3 {
  font-size: 16px;
  font-weight: 700;
}
.customer_account-order_details .order_details-body_footer .footer-block-container {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.customer_account-order_details .order_details-body_footer .footer-block-container.footer_itemized_summary {
  padding-bottom: 5px;
  margin-bottom: 5px;
  border-bottom: 1px solid #ddd;
}
.customer_account-order_details .order_details-body_footer .footer-block-container .footer_item {
  display: flex;
  justify-content: space-between;
  gap: 5px;
}
.customer_account-order_details .order_details-body_footer .footer-block-container .footer_item * {
  color: #000;
}
.customer_account-order_details .order_details-body_footer .footer-block-container .footer_item *.footer_item-label {
  flex-basis: 70%;
}
.customer_account-order_details .order_details-body_footer .footer-block-container .footer_item *.footer_item-value {
  flex-basis: 30%;
  text-align: end;
}
.customer_account-order_details .order_details-body_footer .footer-block-container .footer_item i {
  margin: 0 5px;
}
.customer_account-order_details .order_details-body_footer .footer-block-container .footer_item.poa_link {
  justify-content: flex-end;
}
.customer_account-order_details .order_details-body_footer .footer-block-container .footer_item.poa_link #poaLink {
  background-color: #f0f0f0;
  padding: 7px 12px;
  border-radius: 5px;
  border: 1px solid #ddd;
  box-shadow: 2px 2px 5px #ddd;
}
.customer_account-order_details .order_details-body_footer .footer-block-container .footer_item.poa_link #poaLink:hover {
  background-color: #ddd;
}
@media print {
  .customer_account-order_details .order_details-body_footer .footer-block-container .footer_item.poa_link {
    display: none !important;
  }
}
.customer_account-order_details .order_details-body_footer .order_payments-details summary {
  cursor: pointer;
}
.customer_account-order_details .order_details-body_footer .order_payments-details summary i {
  transition-duration: 0.3s;
  transition-property: transform;
}
.customer_account-order_details .order_details-body_footer .order_payments-details[open] summary i {
  transform: rotate(180deg);
}
.customer_account-order_details .order_details-body_footer .order_payments-details[open] summary .footer_item-value {
  display: none;
}
.customer_account-order_details .order_details-body_footer .order_payments-details .order_payments-itemized {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 10px;
}
.customer_account-order_details .order_details-body_footer .order_payments-details .order_payments-itemized:empty {
  display: none;
}
.customer_account-order_details .order_details-body_footer .order_payments-details .order_payments-itemized .footer_item.payments_total {
  border-top: 1px solid #ddd;
  padding-top: 5px;
  margin-top: -5px;
}
.customer_account-order_details .order_details-body_footer .order_payments-details .order_payments-itemized .footer_item.payments_total:nth-child(2) {
  display: none !important;
}
.customer_account-order_details .order_details-body_footer .order_payments-details .order_payments-itemized .footer_item .footer_item-label {
  display: flex;
  gap: 5px;
}
.customer_account-order_details .order_details-body_footer .order_payments-details .order_payments-itemized .footer_item .footer_item-label::before {
  content: "•";
}
.customer_account-order_details .order_details-body_footer .order_payments-details .order_payments-itemized .footer_item .footer_item-value:only-child {
  flex-basis: 100%;
  width: 100%;
  text-align: end;
}

.customer_account-orders_list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.customer_account-orders_list .orders_list-header {
  display: flex;
  flex-direction: column;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px;
  width: 100%;
}
.customer_account-orders_list .orders_list-header .orders_list-title {
  margin: 0;
}
.customer_account-orders_list .orders_list-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  width: 100%;
  gap: 20px;
  min-height: 150px;
}
@media only screen and (min-width: 501px) {
  .customer_account-orders_list .orders_list-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  }
}
.customer_account-orders_list .orders_list-grid .no_orders_message {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  border-radius: 15px;
  background-color: #ddd;
  min-height: 150px;
  font-size: 18px;
  text-align: center;
  padding: 10px;
}
.customer_account-orders_list .orders_list-grid .list-item-container {
  min-height: 200px;
  border: 2px solid #ddd;
  border-radius: 15px;
  color: #000;
  overflow: hidden;
}
.customer_account-orders_list .orders_list-grid .list-item-container:only-child {
  max-width: 300px;
}
.customer_account-orders_list .orders_list-grid .list-item-container .item-header {
  padding: 10px;
  background-color: #ddd;
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 52px;
}
.customer_account-orders_list .orders_list-grid .list-item-container .item-header .order_type-icon {
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.customer_account-orders_list .orders_list-grid .list-item-container .item-header .order_number-container {
  width: 100%;
  width: -webkit-fill-available;
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 16px;
  text-transform: uppercase;
}
.customer_account-orders_list .orders_list-grid .list-item-container .item-header .order_number-container > * {
  line-height: 1;
}
.customer_account-orders_list .orders_list-grid .list-item-container .item-body {
  padding: 10px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.customer_account-orders_list .orders_list-grid .list-item-container .item-body .order-image-container {
  display: flex;
  align-items: stretch;
  justify-content: flex-start;
  gap: 10px;
  width: 210px;
  height: 100px;
}
.customer_account-orders_list .orders_list-grid .list-item-container .item-body .order-image-container .product-image {
  width: auto;
  height: auto;
  max-width: 100px;
  max-height: 100px;
}
.customer_account-orders_list .orders_list-grid .list-item-container .item-body .order-detail {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 10px;
}
.customer_account-orders_list .orders_list-grid .list-item-container .item-body .order-detail.order_status-continer .order-detail-value {
  padding: 0 5px;
  border-radius: 5px;
  color: #fff;
}
.customer_account-orders_list .orders_list-grid .list-item-container .item-body .order-detail.order_status-continer .order-detail-value.order_status_delivered, .customer_account-orders_list .orders_list-grid .list-item-container .item-body .order-detail.order_status-continer .order-detail-value.order_status_picked_up {
  background-color: green;
}
.customer_account-orders_list .orders_list-grid .list-item-container .item-body .order-detail.order_status-continer .order-detail-value.order_status_open {
  background-color: #135a8a;
}
.customer_account-orders_list .orders_list-grid .list-item-container .item-body .order-detail.order_status-continer .order-detail-value.order_status_voided {
  background-color: red;
}
.customer_account-orders_list .order_list-footer {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.customer_account-orders_list .order_list-footer .view_all_orders_link {
  color: #000;
  border: 1px solid #000;
  border-radius: 15px;
  padding: 10px 20px;
}
.customer_account-orders_list .order_list-footer .view_all_orders_link:hover {
  background-color: #000;
  color: #fff;
}

.customer_account-profile .profile_update_disclaimer {
  display: flex;
  align-items: center;
  gap: 5px;
}
.customer_account-profile .profile_update_disclaimer i {
  color: #135a8a;
}
.customer_account-profile .profile_body {
  display: flex;
  flex-direction: column;
  width: max-content;
  width: 600px;
  max-width: 100%;
  gap: 10px;
  border: 1px solid #ddd;
  border-radius: 15px;
  padding: 15px;
}
.customer_account-profile .profile_body #profileUpdateForm {
  position: relative;
}
.customer_account-profile .profile_body #profileUpdateForm input {
  padding: 2px 5px;
}
.customer_account-profile .profile_body #profileUpdateForm input:disabled {
  border-color: transparent;
  background: none;
}
.customer_account-profile .profile_body #profileUpdateForm table th {
  padding: 5px 0;
  padding-right: 5px;
}
.customer_account-profile .profile_body #profileUpdateForm table td {
  padding: 5px 0;
  padding-left: 5px;
}
.customer_account-profile .profile_body #profileUpdateForm table .email td {
  padding-left: 12px;
}
.customer_account-profile .profile_body #profileUpdateForm #changeProfile {
  position: absolute;
  right: 0;
  font-size: 15px;
  display: flex;
  padding: 10px;
  box-shadow: 2px 2px 5px #ddd;
  border-radius: 100%;
  border: 2px solid #ddd;
}
.customer_account-profile .profile_body #profileUpdateForm #changeProfile:not(:hover) {
  background-color: transparent;
}
.customer_account-profile .profile_body #profileUpdateForm #changeProfile:disabled {
  display: none !important;
}
.customer_account-profile .profile_body .profile_detail {
  font-size: 16px;
}

.customer_account-wishlist {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.customer_account-wishlist .wishlist-header {
  margin: 0;
}
.customer_account-wishlist .wishlist-product_list {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  width: 100%;
  gap: 20px;
}
@media only screen and (min-width: 501px) {
  .customer_account-wishlist .wishlist-product_list {
    grid-template-columns: repeat(auto-fit, minmax(225px, 322px));
  }
}
@media only screen and (max-width: 991px) {
  .customer_account-wishlist .wishlist-product_list {
    justify-items: center;
  }
}
.customer_account-wishlist .wishlist-product_list .product-card {
  max-width: 322px;
}
.customer_account-wishlist .wishlist-product_list .wihslist-empty_message {
  padding: 100px 0;
  text-align: center;
  background-color: #ddd;
  border-radius: 10px;
  font-size: 18px;
  width: 100%;
  grid-column: -1/1;
}
.customer_account-wishlist .wishlist-product_list .wihslist-empty_message:not(:only-child) {
  display: none;
}

.customer_account-registry_form {
  display: flex;
  flex-direction: column;
  padding: 15px 25px;
  background: #fff;
  border-radius: 5px;
  margin: auto;
  max-width: 900px;
}
.customer_account-registry_form .registry_form_required {
  font-size: 10px;
  color: gray;
  text-transform: lowercase;
}
.customer_account-registry_form .dialog-header {
  position: relative;
  min-height: 35px;
}
.customer_account-registry_form .dialog-header span {
  font-size: 20px;
  font-weight: 800;
}
.customer_account-registry_form .dialog-header button {
  position: absolute;
  right: 0;
  top: 0;
  padding: 0;
  width: 35px;
  height: 35px;
  font-size: 25px;
}
.customer_account-registry_form .registry_owner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin: 10px 0;
}
@media only screen and (max-width: 768px) {
  .customer_account-registry_form .registry_owner {
    display: grid;
    grid-template-columns: 1fr;
  }
}
.customer_account-registry_form .registry_owner .reg_owner_fn {
  grid-row: 1;
  grid-column: 1;
}
.customer_account-registry_form .registry_owner .reg_owner_textbox_fn {
  grid-row: 2;
  grid-column: 1;
  width: 100%;
  padding: 5px;
}
.customer_account-registry_form .registry_owner .reg_owner_ln {
  grid-row: 1;
  grid-column: 2;
}
.customer_account-registry_form .registry_owner .reg_owner_textbox_ln {
  grid-row: 2;
  grid-column: 2;
  width: 100%;
  padding: 5px;
}
.customer_account-registry_form .registry_owner label {
  font-weight: 400;
  font-size: 13px;
}
.customer_account-registry_form .registry-email label {
  display: block;
  font-weight: 400;
  font-size: 13px;
}
.customer_account-registry_form .registry-email .reg_owner_email {
  display: block;
  width: 100%;
  border: none;
}
.customer_account-registry_form .registry-email .reg_owner_email:focus-visible {
  outline: none;
}
.customer_account-registry_form .registry-email .reg_co-owner_email {
  display: block;
  width: 100%;
  padding: 5px;
}
.customer_account-registry_form .delivery_address_settings .dialog-footer {
  display: block !important;
}
.customer_account-registry_form .dialog-footer {
  margin-top: 25px;
  gap: 10px;
}
.customer_account-registry_form .dialog-footer .button-container {
  grid-column: 2;
  margin-left: auto;
  display: flex;
  gap: 10px;
}
.customer_account-registry_form .dialog-footer .button-container button {
  width: fit-content;
  min-width: 100px;
  transition: opacity 0.3s;
  opacity: 1;
  margin-bottom: 6px;
}
@media only screen and (max-width: 768px) {
  .customer_account-registry_form .dialog-footer .button-container button {
    width: 100%;
  }
}
.customer_account-registry_form .dialog-footer .button-container button:disabled {
  opacity: 40%;
}
.customer_account-registry_form .registry-checkbox {
  margin-top: 10px;
  position: relative;
}
.customer_account-registry_form .registry-checkbox input {
  margin: 0;
}
.customer_account-registry_form .registry-checkbox label {
  font-weight: 600;
  font-size: 12px;
  margin: 0 0 0 6px;
}
@media only screen and (min-width: 500px) {
  .customer_account-registry_form .registry-checkbox label {
    font-size: 16px;
  }
}
.customer_account-registry_form.create_registry_form .create_registry_title,
.customer_account-registry_form .form-group .create_registry_title {
  font-size: 18px !important;
  font-weight: 600 !important;
}
.customer_account-registry_form.create_registry_form .create_registry_subtitle,
.customer_account-registry_form .form-group .create_registry_subtitle {
  font-size: 13px;
  font-weight: 400;
}
.customer_account-registry_form.create_registry_form .registry-type,
.customer_account-registry_form .form-group .registry-type {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 15px;
  row-gap: 15px;
}
@media only screen and (min-width: 768px) {
  .customer_account-registry_form.create_registry_form .registry-type,
  .customer_account-registry_form .form-group .registry-type {
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }
}
.customer_account-registry_form.create_registry_form .registry-type #event_info,
.customer_account-registry_form .form-group .registry-type #event_info {
  grid-column: 1/-1;
}
.customer_account-registry_form.create_registry_form .registry-type .create_registry_title,
.customer_account-registry_form .form-group .registry-type .create_registry_title {
  display: block;
  font-size: 18px;
  font-weight: 600;
}
.customer_account-registry_form.create_registry_form .registry-type .create_registry_subtitle,
.customer_account-registry_form .form-group .registry-type .create_registry_subtitle {
  display: block;
  margin: 5px 0 0 0;
  font-size: 14px;
  font-weight: 400;
}
.customer_account-registry_form.create_registry_form .registry-type label,
.customer_account-registry_form .form-group .registry-type label {
  border-radius: 10px;
  min-height: min-content;
  width: 100%;
  font-size: 20px;
  font-weight: 900;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s;
  box-shadow: 2px 2px 10px 5px #ccc;
  margin: 0;
  display: block;
  background-color: #fff;
  user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
}
.customer_account-registry_form.create_registry_form .registry-type label div,
.customer_account-registry_form .form-group .registry-type label div {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  height: 175px;
  padding: 20px 10px;
  margin: 3px;
}
.customer_account-registry_form.create_registry_form .registry-type label i,
.customer_account-registry_form .form-group .registry-type label i {
  font-size: 40px;
  height: 40px;
}
.customer_account-registry_form.create_registry_form .registry-type input[type=radio],
.customer_account-registry_form .form-group .registry-type input[type=radio] {
  display: none;
}
.customer_account-registry_form.create_registry_form .registry-type input[type=radio]:checked + label,
.customer_account-registry_form .form-group .registry-type input[type=radio]:checked + label {
  background-color: #135A8A;
  color: #fff;
  cursor: default;
}
.customer_account-registry_form.create_registry_form .registry-type input[type=radio]:not(:checked) + label:hover,
.customer_account-registry_form .form-group .registry-type input[type=radio]:not(:checked) + label:hover {
  filter: brightness(85%);
}
.customer_account-registry_form.create_registry_form .privacy_settings input[type=radio],
.customer_account-registry_form .form-group .privacy_settings input[type=radio] {
  cursor: pointer;
}
.customer_account-registry_form.create_registry_form .privacy_settings input[type=radio] + label,
.customer_account-registry_form .form-group .privacy_settings input[type=radio] + label {
  cursor: pointer;
}
.customer_account-registry_form.create_registry_form .privacy_settings input[type=radio][value=false]:checked ~ .passcode-wrapper,
.customer_account-registry_form .form-group .privacy_settings input[type=radio][value=false]:checked ~ .passcode-wrapper {
  display: none;
}

#deleteRegistryForm {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
#deleteRegistryForm .dialog-footer {
  display: flex;
}

.deleteRegistryDialog {
  text-align: center;
  padding: 10px;
}
.deleteRegistryDialog .dialog-body {
  padding: 15px;
  width: 90%;
}
@media only screen and (min-width: 768px) {
  .deleteRegistryDialog {
    width: max-content !important;
  }
}
.deleteRegistryDialog form {
  width: 90% !important;
}
.deleteRegistryDialog .dialog-header span {
  font-size: 20px !important;
  font-weight: 800;
}

/* Change Autocomplete styles in Chrome - removes gradient border around input fields when selecting the autocomplete suggestions*/
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
textarea:-webkit-autofill,
textarea:-webkit-autofill:hover,
textarea:-webkit-autofill:focus,
select:-webkit-autofill,
select:-webkit-autofill:hover,
select:-webkit-autofill:focus {
  border: 1px solid rgb(118, 118, 118);
  -webkit-text-fill-color: black;
  transition: background-color 5000s ease-in-out 0s;
}

@media only screen and (min-width: 767px) {
  #passcodeDialog {
    width: 50%;
  }
}
#passcodeDialog form {
  text-align: center;
}

.registry-prioritize-guest {
  background-color: #135A8A;
  color: #fff;
}
.registry-prioritize-guest i {
  color: #FCF104;
  margin-right: 7px;
}

.registry-prioritize {
  border-bottom: 1px solid lightgray;
  margin-top: -5px;
  height: 30px;
  text-align: center;
  font-weight: 600;
  justify-content: center;
  display: flex;
  align-items: center;
}
.registry-prioritize #allow-add-gift-card, .registry-prioritize .priority-toggle, .registry-prioritize .registry-item-prioritize-checkbox, .registry-prioritize label {
  cursor: pointer;
}

.prioritize-container,
.gift-card-box {
  display: grid;
  justify-content: center;
  align-items: center;
  grid-template-columns: 25px 1fr;
  margin: auto 0;
  align-items: center;
  align-content: center;
}
.prioritize-container .header,
.gift-card-box .header {
  grid-column: 1/span 2;
}
.prioritize-container .gift-card-text,
.gift-card-box .gift-card-text {
  grid-column: 1/span 2;
}
.prioritize-container .registry-item-prioritize-checkbox .priority-toggle,
.prioritize-container .registry-item-prioritize-checkbox .priority-toggle::after,
.prioritize-container .toggle-add-gift-card,
.prioritize-container .toggle-add-gift-card::after,
.gift-card-box .registry-item-prioritize-checkbox .priority-toggle,
.gift-card-box .registry-item-prioritize-checkbox .priority-toggle::after,
.gift-card-box .toggle-add-gift-card,
.gift-card-box .toggle-add-gift-card::after {
  transition: all 100ms ease-out;
  cursor: pointer;
}
.prioritize-container .registry-item-prioritize-checkbox,
.prioritize-container .registry-gift-card,
.gift-card-box .registry-item-prioritize-checkbox,
.gift-card-box .registry-gift-card {
  margin-top: 2px;
  width: 48px;
}
.prioritize-container .registry-item-prioritize-checkbox input[type=checkbox],
.prioritize-container .registry-gift-card input[type=checkbox],
.gift-card-box .registry-item-prioritize-checkbox input[type=checkbox],
.gift-card-box .registry-gift-card input[type=checkbox] {
  cursor: default;
  display: flex;
  align-items: center;
}
.prioritize-container .registry-item-prioritize-checkbox .priority-toggle,
.prioritize-container .registry-item-prioritize-checkbox .toggle-add-gift-card,
.prioritize-container .registry-gift-card .priority-toggle,
.prioritize-container .registry-gift-card .toggle-add-gift-card,
.gift-card-box .registry-item-prioritize-checkbox .priority-toggle,
.gift-card-box .registry-item-prioritize-checkbox .toggle-add-gift-card,
.gift-card-box .registry-gift-card .priority-toggle,
.gift-card-box .registry-gift-card .toggle-add-gift-card {
  appearance: none;
  background-color: #d6d6d6;
  border: 1px solid rgb(151, 151, 151);
  border-radius: 72px;
  cursor: pointer;
  flex-shrink: 0;
  height: 20px;
  margin: 0;
  position: relative;
  width: 40px;
}
.prioritize-container .registry-item-prioritize-checkbox .priority-toggle:disabled,
.prioritize-container .registry-item-prioritize-checkbox .toggle-add-gift-card:disabled,
.prioritize-container .registry-gift-card .priority-toggle:disabled,
.prioritize-container .registry-gift-card .toggle-add-gift-card:disabled,
.gift-card-box .registry-item-prioritize-checkbox .priority-toggle:disabled,
.gift-card-box .registry-item-prioritize-checkbox .toggle-add-gift-card:disabled,
.gift-card-box .registry-gift-card .priority-toggle:disabled,
.gift-card-box .registry-gift-card .toggle-add-gift-card:disabled {
  cursor: not-allowed;
  opacity: 60%;
}
.prioritize-container .registry-item-prioritize-checkbox .priority-toggle::before,
.prioritize-container .registry-item-prioritize-checkbox .toggle-add-gift-card::before,
.prioritize-container .registry-gift-card .priority-toggle::before,
.prioritize-container .registry-gift-card .toggle-add-gift-card::before,
.gift-card-box .registry-item-prioritize-checkbox .priority-toggle::before,
.gift-card-box .registry-item-prioritize-checkbox .toggle-add-gift-card::before,
.gift-card-box .registry-gift-card .priority-toggle::before,
.gift-card-box .registry-gift-card .toggle-add-gift-card::before {
  content: "";
  font-size: 8px;
  color: #0f0f0f;
  font-weight: 300;
  margin-left: 18px;
}
.prioritize-container .registry-item-prioritize-checkbox .priority-toggle::after,
.prioritize-container .registry-item-prioritize-checkbox .toggle-add-gift-card::after,
.prioritize-container .registry-gift-card .priority-toggle::after,
.prioritize-container .registry-gift-card .toggle-add-gift-card::after,
.gift-card-box .registry-item-prioritize-checkbox .priority-toggle::after,
.gift-card-box .registry-item-prioritize-checkbox .toggle-add-gift-card::after,
.gift-card-box .registry-gift-card .priority-toggle::after,
.gift-card-box .registry-gift-card .toggle-add-gift-card::after {
  background-color: #ffffff;
  border: 1px solid #cacaca;
  border-radius: 50%;
  height: 15px;
  left: 2px;
  position: absolute;
  top: 2px;
  width: 15px;
  content: "";
  cursor: pointer;
}
.prioritize-container .registry-item-prioritize-checkbox .priority-toggle:hover,
.prioritize-container .registry-item-prioritize-checkbox .toggle-add-gift-card:hover,
.prioritize-container .registry-gift-card .priority-toggle:hover,
.prioritize-container .registry-gift-card .toggle-add-gift-card:hover,
.gift-card-box .registry-item-prioritize-checkbox .priority-toggle:hover,
.gift-card-box .registry-item-prioritize-checkbox .toggle-add-gift-card:hover,
.gift-card-box .registry-gift-card .priority-toggle:hover,
.gift-card-box .registry-gift-card .toggle-add-gift-card:hover {
  background-color: #c9cbcd;
  transition-duration: 0s;
  cursor: pointer;
}
.prioritize-container .registry-item-prioritize-checkbox .priority-toggle:checked,
.prioritize-container .registry-item-prioritize-checkbox .toggle-add-gift-card:checked,
.prioritize-container .registry-gift-card .priority-toggle:checked,
.prioritize-container .registry-gift-card .toggle-add-gift-card:checked,
.gift-card-box .registry-item-prioritize-checkbox .priority-toggle:checked,
.gift-card-box .registry-item-prioritize-checkbox .toggle-add-gift-card:checked,
.gift-card-box .registry-gift-card .priority-toggle:checked,
.gift-card-box .registry-gift-card .toggle-add-gift-card:checked {
  background-color: #135A8A;
}
.prioritize-container .registry-item-prioritize-checkbox .priority-toggle:checked::before,
.prioritize-container .registry-item-prioritize-checkbox .toggle-add-gift-card:checked::before,
.prioritize-container .registry-gift-card .priority-toggle:checked::before,
.prioritize-container .registry-gift-card .toggle-add-gift-card:checked::before,
.gift-card-box .registry-item-prioritize-checkbox .priority-toggle:checked::before,
.gift-card-box .registry-item-prioritize-checkbox .toggle-add-gift-card:checked::before,
.gift-card-box .registry-gift-card .priority-toggle:checked::before,
.gift-card-box .registry-gift-card .toggle-add-gift-card:checked::before {
  content: "";
  color: #fff;
  font-weight: 100;
  margin-left: 4px;
  cursor: pointer;
}
.prioritize-container .registry-item-prioritize-checkbox .priority-toggle:checked::after,
.prioritize-container .registry-item-prioritize-checkbox .toggle-add-gift-card:checked::after,
.prioritize-container .registry-gift-card .priority-toggle:checked::after,
.prioritize-container .registry-gift-card .toggle-add-gift-card:checked::after,
.gift-card-box .registry-item-prioritize-checkbox .priority-toggle:checked::after,
.gift-card-box .registry-item-prioritize-checkbox .toggle-add-gift-card:checked::after,
.gift-card-box .registry-gift-card .priority-toggle:checked::after,
.gift-card-box .registry-gift-card .toggle-add-gift-card:checked::after {
  background-color: #fff;
  left: 21px;
  border: none;
  height: 14px;
  width: 14px;
  cursor: pointer;
}
.prioritize-container .registry-item-prioritize-checkbox .priority-toggle:checked:hover,
.prioritize-container .registry-item-prioritize-checkbox .toggle-add-gift-card:checked:hover,
.prioritize-container .registry-gift-card .priority-toggle:checked:hover,
.prioritize-container .registry-gift-card .toggle-add-gift-card:checked:hover,
.gift-card-box .registry-item-prioritize-checkbox .priority-toggle:checked:hover,
.gift-card-box .registry-item-prioritize-checkbox .toggle-add-gift-card:checked:hover,
.gift-card-box .registry-gift-card .priority-toggle:checked:hover,
.gift-card-box .registry-gift-card .toggle-add-gift-card:checked:hover {
  background-color: #0d4f7a;
  cursor: pointer;
}
.prioritize-container .registry-item-prioritize-checkbox .priority-toggle:focus:not(.focus-visible),
.prioritize-container .registry-item-prioritize-checkbox .toggle-add-gift-card:focus:not(.focus-visible),
.prioritize-container .registry-gift-card .priority-toggle:focus:not(.focus-visible),
.prioritize-container .registry-gift-card .toggle-add-gift-card:focus:not(.focus-visible),
.gift-card-box .registry-item-prioritize-checkbox .priority-toggle:focus:not(.focus-visible),
.gift-card-box .registry-item-prioritize-checkbox .toggle-add-gift-card:focus:not(.focus-visible),
.gift-card-box .registry-gift-card .priority-toggle:focus:not(.focus-visible),
.gift-card-box .registry-gift-card .toggle-add-gift-card:focus:not(.focus-visible) {
  outline: 0;
}
.prioritize-container .registry-item-prioritize-checkbox .priority-toggle.english-toggle::before,
.prioritize-container .registry-item-prioritize-checkbox .toggle-add-gift-card.english-toggle::before,
.prioritize-container .registry-gift-card .priority-toggle.english-toggle::before,
.prioritize-container .registry-gift-card .toggle-add-gift-card.english-toggle::before,
.gift-card-box .registry-item-prioritize-checkbox .priority-toggle.english-toggle::before,
.gift-card-box .registry-item-prioritize-checkbox .toggle-add-gift-card.english-toggle::before,
.gift-card-box .registry-gift-card .priority-toggle.english-toggle::before,
.gift-card-box .registry-gift-card .toggle-add-gift-card.english-toggle::before {
  content: "OFF";
}
.prioritize-container .registry-item-prioritize-checkbox .priority-toggle.english-toggle:checked::before,
.prioritize-container .registry-item-prioritize-checkbox .toggle-add-gift-card.english-toggle:checked::before,
.prioritize-container .registry-gift-card .priority-toggle.english-toggle:checked::before,
.prioritize-container .registry-gift-card .toggle-add-gift-card.english-toggle:checked::before,
.gift-card-box .registry-item-prioritize-checkbox .priority-toggle.english-toggle:checked::before,
.gift-card-box .registry-item-prioritize-checkbox .toggle-add-gift-card.english-toggle:checked::before,
.gift-card-box .registry-gift-card .priority-toggle.english-toggle:checked::before,
.gift-card-box .registry-gift-card .toggle-add-gift-card.english-toggle:checked::before {
  content: "ON";
}
.prioritize-container label,
.gift-card-box label {
  margin: 3px 0 0 25px;
  font-weight: 500;
}

.registry-manage-quantity {
  padding-bottom: 10px;
  text-align: center;
}
.registry-manage-quantity p {
  margin: 10px;
}
.registry-manage-quantity input[type=text] {
  width: 35px;
  text-align: center;
}

.registry-purchased-quantity {
  text-align: center;
  border-top: 0.5px solid lightgrey;
  font-weight: 700;
  font-size: 12px;
  padding: 5px 0;
  color: #908f8f;
}

.registry-add-to-cart {
  background-color: #FCF104 !important;
  color: #000;
  width: 100%;
  font-weight: 700;
  box-shadow: none !important;
}
.registry-add-to-cart:hover {
  background-color: #000 !important;
  color: #fff !important;
}

.registry-purchased-item,
.partially-purchased {
  background-color: #008a00 !important;
  color: #fff;
}

.registry-line-separator {
  border-top: 1px solid lightgrey;
  margin-top: 10px;
}

.delivery-destination-toggle {
  height: 40px;
  margin: 10px 0;
  text-align: center;
}
.delivery-destination-toggle input#status {
  display: none;
}
.delivery-destination-toggle input#status + label {
  height: 100%;
  width: 100%;
  font-size: 10px;
  font-weight: 600;
}
@media only screen and (min-width: 540px) and (max-width: 991px) {
  .delivery-destination-toggle input#status + label {
    font-size: 12px;
  }
}
@media only screen and (min-width: 992px) {
  .delivery-destination-toggle input#status + label {
    font-size: 14px;
  }
}
.delivery-destination-toggle input#status + label > .status-switch {
  cursor: pointer;
  width: 100%;
  height: 100%;
  position: relative;
  background-color: #dfdfdf;
  color: #2c2c2c;
  transition: all 0.5s ease;
  border-radius: 3px;
}
.delivery-destination-toggle input#status + label > .status-switch:before, .delivery-destination-toggle input#status + label > .status-switch:after {
  border-radius: 2px;
  height: 100%;
  width: 50%;
  display: flex;
  align-items: center;
  position: absolute;
  justify-content: center;
  transition: all 0.3s ease;
}
.delivery-destination-toggle input#status + label > .status-switch:before {
  background-color: #135a8a;
  color: white;
  content: attr(data-unchecked);
}
.delivery-destination-toggle input#status + label > .status-switch:after {
  right: 0;
  content: attr(data-checked);
}
.delivery-destination-toggle input#status:checked + label > .status-switch {
  background-color: #dfdfdf;
}
.delivery-destination-toggle input#status:checked + label > .status-switch:after {
  left: 0;
  content: attr(data-unchecked);
}
.delivery-destination-toggle input#status:checked + label > .status-switch:before {
  left: 50%;
  content: attr(data-checked);
}

.add-products-btn {
  text-align: center;
  height: 100%;
  width: 100%;
  justify-content: center;
  display: flex;
  align-items: center;
  flex-direction: column;
  min-height: 340px;
}

.registry-loading {
  min-height: 300px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.registry-loading > * {
  display: none;
}
.registry-loading .lds-ring {
  display: inline-block;
  position: relative;
  width: 80px;
  height: 80px;
}
.registry-loading .lds-ring div {
  box-sizing: border-box;
  display: block;
  position: absolute;
  width: 64px;
  height: 64px;
  margin: 8px;
  border: 8px solid #000000;
  border-radius: 50%;
  animation: lds-ring 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
  border-color: #000000 transparent transparent transparent;
}
.registry-loading .lds-ring div:nth-child(1) {
  animation-delay: -0.45s;
}
.registry-loading .lds-ring div:nth-child(2) {
  animation-delay: -0.3s;
}
.registry-loading .lds-ring div:nth-child(3) {
  animation-delay: -0.15s;
}
@keyframes lds-ring {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

#registry-guest-share {
  cursor: pointer;
  background-color: white;
  border: none;
  padding: 0;
  box-shadow: none;
  color: #135a8a;
  font-size: 14px;
  font-weight: 700;
}
#registry-guest-share:hover {
  background-color: white;
  color: #000;
  filter: none;
}

.registry_copy a {
  position: relative;
}
.registry_copy a[aria-label]:focus:after,
.registry_copy a[aria-label]:hover:after {
  position: absolute;
  z-index: 1;
  bottom: -27px;
  left: 17px;
  display: block;
  overflow: hidden;
  width: 133px;
  height: 2em;
  padding: 0 0.7em;
  content: attr(aria-label);
  color: #000;
  background: #f3f3f3;
  line-height: 2em;
  text-align: left;
  border: 1px solid black;
}
.registry_copy a[aria-label]:active:after {
  position: absolute;
  z-index: 1;
  bottom: -27px;
  left: 17px;
  display: block;
  overflow: hidden;
  width: 133px;
  height: 2em;
  padding: 0 0.7em;
  content: "Copying...";
  color: #000;
  background: #f3f3f3;
  line-height: 2em;
  text-align: left;
  border: 1px solid black;
}

#regCopyLink {
  cursor: pointer;
  background-color: #fff;
  height: 50px;
  width: 50px;
  border: 1px solid black;
  align-content: center;
  margin-left: -2px;
}
#regCopyLink:hover {
  background-color: lightgrey;
}

#registryDetailsVue {
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  min-height: 170px;
  max-width: 1500px;
  margin: auto;
  width: 100%;
}
#registryDetailsVue .registry_details-banner .dialog-footer {
  display: flex;
}
#registryDetailsVue .registry_details-banner .banner-image {
  position: relative;
}
#registryDetailsVue .registry_details-banner .banner-image .image {
  width: 100%;
  height: 250px;
  object-fit: cover;
}
#registryDetailsVue .registry_details-banner .banner-image .edit_banner_btn {
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 20px;
  color: #fff;
  background-color: #135a8a;
  border-radius: 8px;
  padding: 5px 15px;
  z-index: 1;
  border: none;
  box-shadow: none;
}
#registryDetailsVue .registry_details-banner .banner-image #bannerDialog form input {
  display: none;
}
#registryDetailsVue .registry_details-banner .banner-image #bannerDialog form input:checked + .banner_thumbnail::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  border: 5px solid #fcf104;
}
#registryDetailsVue .registry_details-banner .banner-image #bannerDialog form input:checked + .banner_thumbnail + .banner_preview {
  opacity: 1;
  z-index: 0;
}
#registryDetailsVue .registry_details-banner .banner-image #bannerDialog form label {
  display: flex;
}
#registryDetailsVue .registry_details-banner .banner-image #bannerDialog form label.banner_thumbnail {
  position: relative;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s;
}
#registryDetailsVue .registry_details-banner .banner-image #bannerDialog form label.banner_thumbnail:hover {
  filter: brightness(85%);
}
#registryDetailsVue .registry_details-banner .banner-image #bannerDialog form label.banner_preview {
  opacity: 0;
  z-index: -1;
  grid-row: 1;
  grid-column: 1/-1;
  transition: all 0.3s;
}
@media only screen and (max-width: 767px) {
  #registryDetailsVue .registry_details-banner .banner-image #bannerDialog form label.banner_preview {
    display: none;
  }
}
#registryDetailsVue .registry_details-banner .banner-image #bannerDialog form label.banner_preview img {
  height: 250px;
}
#registryDetailsVue .registry_details-banner .banner-image #bannerDialog form .dialog-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  max-width: 1000px;
  justify-content: center;
  gap: 10px;
}
@media only screen and (min-width: 767px) {
  #registryDetailsVue .registry_details-banner .banner-image #bannerDialog form .dialog-body {
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }
}
#registryDetailsVue .registry_details-banner .banner-image #bannerDialog form .dialog-body .banner_thumbnail img {
  height: 150px;
}
#registryDetailsVue .registry_details-banner .banner-image #bannerDialog form .button {
  display: flex;
  justify-content: center;
  align-items: center;
}
@media only screen and (max-width: 725px) {
  #registryDetailsVue .registry_details-banner .banner-image .registry-image-picker-header {
    height: 160px;
  }
}
#registryDetailsVue .registry_details-banner .banner-image .registry-image-picker-selection {
  max-height: 283px;
  overflow-y: scroll;
}
@media only screen and (max-width: 725px) {
  #registryDetailsVue .registry_details-banner .banner-image .registry-image-picker-selection .banner_thumbnail {
    height: 100px;
  }
}
@media only screen and (min-width: 725px) {
  #registryDetailsVue .registry_details-banner .banner-image .registry-image-picker-selection {
    max-height: 396px;
  }
}
#registryDetailsVue .registry_details-banner .banner-image .registry-host-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  padding: 0 5px;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  text-align: center;
  border: none;
}
#registryDetailsVue .registry_details-banner .banner-image .registry-host-info .text-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  padding: 10px;
  text-align: center;
  border: none;
  min-width: 50%;
  align-content: center;
  margin: auto;
}
#registryDetailsVue .registry_details-banner .banner-image .registry-host-info .event-type-wedding {
  background-color: #fff;
  border: 1.5px double #000;
  outline: 1.5px solid black;
  outline-offset: -7px;
  min-height: 125px;
  opacity: 0.8;
  min-width: 40%;
  padding: 15px;
  display: flex;
}
#registryDetailsVue .registry_details-banner .banner-image .registry-host-info .event-type-baby {
  background-image: url("/cdn/shop/files/350px_event_type_baby.svg");
  background-size: 100% 100%;
  height: 100%;
  width: 100%;
  display: flex;
}
@media only screen and (min-width: 360px) {
  #registryDetailsVue .registry_details-banner .banner-image .registry-host-info .event-type-baby {
    background-image: url("/cdn/shop/files/mobile-event-type-baby.svg");
  }
}
@media only screen and (min-width: 450px) {
  #registryDetailsVue .registry_details-banner .banner-image .registry-host-info .event-type-baby {
    background-image: url("/cdn/shop/files/mobile-event-type-baby.svg");
  }
}
@media only screen and (min-width: 550px) {
  #registryDetailsVue .registry_details-banner .banner-image .registry-host-info .event-type-baby {
    background-image: url("/cdn/shop/files/event-type-baby.svg");
  }
}
#registryDetailsVue .registry_details-banner .banner-image .registry-host-info .event-type-home {
  background-color: #fff;
  border: 2px solid #000;
  min-height: 125px;
  opacity: 0.8;
  min-width: 40%;
  padding: 15px;
  display: flex;
}
#registryDetailsVue .registry_details-banner .banner-image .registry-host-info .event-type-gift {
  background-color: #fff;
  min-height: 125px;
  opacity: 0.8;
  min-width: 40%;
  padding: 15px;
  display: flex;
}
#registryDetailsVue .registry_details-banner .banner-image .registry-host-info .registry-event_info-display_name {
  font-size: 2em;
  font-weight: 800;
  overflow-wrap: break-word;
  max-width: 265px;
}
@media only screen and (min-width: 725px) {
  #registryDetailsVue .registry_details-banner .banner-image .registry-host-info .registry-event_info-display_name {
    max-width: 430px;
  }
}
#registryDetailsVue .registry_details-banner .banner-image .registry-host-info .registry-event_info-date {
  font-size: 1.2em;
  text-transform: uppercase;
  letter-spacing: 2.5px;
}
#registryDetailsVue .registry_details-banner .banner-image .registry-host-info .registry-event_info-date i {
  font-size: 21px;
}
#registryDetailsVue .registry_details-banner .banner-image .registry-host-info .registry-event_info-id {
  font-size: 1.2em;
  letter-spacing: 2.5px;
  visibility: hidden;
  display: none;
}
@media only screen and (max-width: 725px) {
  #registryDetailsVue .registry_details-banner .banner-image .registry-host-info .registry-event_info-display_name {
    font-size: 17px;
    text-align: center;
  }
  #registryDetailsVue .registry_details-banner .banner-image .registry-host-info .registry-event_info-date {
    font-size: 10px;
  }
  #registryDetailsVue .registry_details-banner .banner-image .registry-host-info .registry-event_info-id {
    font-size: 14px;
    visibility: visible;
    display: block;
  }
}
#registryDetailsVue .registry_details-banner .banner-image .registry-host-info > button {
  color: #000;
}
#registryDetailsVue .registry_details_settings,
#registryDetailsVue .registry_details-event_info > details,
#registryDetailsVue .registry_details-items {
  display: grid;
}
#registryDetailsVue .registry_details_settings > h3,
#registryDetailsVue .registry_details-event_info > details > h3,
#registryDetailsVue .registry_details-items > h3 {
  text-align: center;
  font-size: 25px;
  font-weight: 700;
}
#registryDetailsVue .registry_details_settings > *:only-child,
#registryDetailsVue .registry_details_settings > h3,
#registryDetailsVue .registry_details_settings form,
#registryDetailsVue .registry_details-event_info > details > *:only-child,
#registryDetailsVue .registry_details-event_info > details > h3,
#registryDetailsVue .registry_details-event_info > details form,
#registryDetailsVue .registry_details-items > *:only-child,
#registryDetailsVue .registry_details-items > h3,
#registryDetailsVue .registry_details-items form {
  grid-column: 1/-1;
}
#registryDetailsVue .registry_details_settings .registry_details_settings,
#registryDetailsVue .registry_details_settings .registry_details-event_info > details,
#registryDetailsVue .registry_details-event_info > details .registry_details_settings,
#registryDetailsVue .registry_details-event_info > details .registry_details-event_info > details,
#registryDetailsVue .registry_details-items .registry_details_settings,
#registryDetailsVue .registry_details-items .registry_details-event_info > details {
  grid-template-columns: 1fr 1fr;
}
#registryDetailsVue .registry_details_settings > form,
#registryDetailsVue .registry_details-event_info > details > form {
  display: block;
}
@media only screen and (min-width: 650px) {
  #registryDetailsVue .registry_details_settings > form,
  #registryDetailsVue .registry_details-event_info > details > form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: stretch;
    gap: 0;
  }
}
#registryDetailsVue .registry_details_settings > form input,
#registryDetailsVue .registry_details-event_info > details > form input {
  padding: 5px;
  border: 1px solid #606060;
}
#registryDetailsVue .registry_details_settings > form select,
#registryDetailsVue .registry_details-event_info > details > form select {
  padding: 5px;
}
#registryDetailsVue .registry_details_settings > form .form-block,
#registryDetailsVue .registry_details-event_info > details > form .form-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  padding: 15px;
  background: #fff;
}
@media only screen and (min-width: 650px) {
  #registryDetailsVue .registry_details_settings > form .form-block:first-of-type,
  #registryDetailsVue .registry_details-event_info > details > form .form-block:first-of-type {
    border-right: 1px solid #ddd;
  }
}
#registryDetailsVue .registry_details_settings > form .form-block h4,
#registryDetailsVue .registry_details-event_info > details > form .form-block h4 {
  font-size: 20px;
  font-weight: 600;
}
#registryDetailsVue .registry_details_settings > form .form-block label,
#registryDetailsVue .registry_details-event_info > details > form .form-block label {
  margin: 0;
  text-transform: capitalize;
}
#registryDetailsVue .registry_details_settings > form .form-block select,
#registryDetailsVue .registry_details-event_info > details > form .form-block select {
  cursor: pointer;
}
#registryDetailsVue .registry_details_settings > form .form-block div,
#registryDetailsVue .registry_details-event_info > details > form .form-block div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 5px;
  width: 100%;
  max-width: 360px;
}
#registryDetailsVue .registry_details_settings > form .form-block.registry_message,
#registryDetailsVue .registry_details-event_info > details > form .form-block.registry_message {
  align-items: flex-start;
}
#registryDetailsVue .registry_details_settings > form .form-block.registry_message textarea,
#registryDetailsVue .registry_details-event_info > details > form .form-block.registry_message textarea {
  font-size: 14px !important;
  margin: 0;
  height: 125px;
  resize: vertical;
}
#registryDetailsVue .registry_details_settings > form .button-container,
#registryDetailsVue .registry_details-event_info > details > form .button-container {
  display: grid;
  gap: 10px;
  grid-template-columns: 1fr;
  width: 100%;
  margin-top: 5px;
  grid-column: 1/span 2;
}
#registryDetailsVue .registry_details_settings > form .button-container button,
#registryDetailsVue .registry_details-event_info > details > form .button-container button {
  width: fit-content;
  min-width: 150px;
  max-width: 200px;
  transition: opacity 0.3s;
  opacity: 1;
  width: 100%;
  margin-left: 15px;
}
#registryDetailsVue .registry_details_settings > form .button-container button:disabled,
#registryDetailsVue .registry_details-event_info > details > form .button-container button:disabled {
  opacity: 40%;
}
#registryDetailsVue .guest-view {
  text-align: center;
  margin: auto;
  border: 0.5px solid lightgrey;
  width: 100%;
}
#registryDetailsVue .guest-view .page_message {
  padding: 0 10px 10px 10px;
  margin: auto;
}
#registryDetailsVue .guest-view .page_message .page_message-signature {
  font-size: 11px;
  text-align: right;
  display: flex;
  justify-content: center;
  gap: 5px;
  margin: 0 auto;
  font-style: italic;
}
#registryDetailsVue .guest-view .page_message .page_message-signature .registry-event_info-owner-first_name::before {
  content: "–";
  margin-right: 5px;
}
#registryDetailsVue .guest-view .page_message .page_message-signature .registry-event_info-coregistrant-first_name:empty {
  display: none;
}
#registryDetailsVue .guest-view .page_message .page_message-signature .registry-event_info-coregistrant-first_name::before {
  content: "&";
  margin-right: 5px;
}
#registryDetailsVue .guest-view h4 {
  font-size: 15px;
  margin-bottom: 5px;
  word-break: break-all;
}

.registry-type-title {
  font-size: 15px;
  margin-top: 10px;
}

.registry-type-subtitle {
  font-size: 12px;
  font-weight: 400;
}

.registry-type-main-title {
  font-size: 15px;
  margin-top: 10px;
}

.registry-address-message {
  font-size: 12px;
  padding-top: 2px;
  color: gray;
}

.delivery_address_settings p {
  margin: 0;
}
.delivery_address_settings .delivery-address {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 10px;
  margin: 10px 0;
}
@media only screen and (max-width: 768px) {
  .delivery_address_settings .delivery-address {
    display: grid;
    grid-template-columns: 1fr;
    row-gap: 10px;
  }
}
.delivery_address_settings .delivery-address .delivery-address_label1 {
  grid-row: 1;
  grid-column: 1;
}
.delivery_address_settings .delivery-address .delivery-address_textbox1 {
  grid-row: 2;
  grid-column: 1;
  width: 100%;
  padding: 5px;
  height: 33.59px;
  margin-bottom: 15px;
  border-radius: 1.5px;
  border: 1px solid #959595;
  background-color: #fff;
}
.delivery_address_settings .delivery-address .delivery-address_textbox1:disabled {
  background-color: #f8f8f8;
  border-color: #d0d0d0 !important;
}
.delivery_address_settings .delivery-address .delivery-address_label2 {
  grid-row: 1;
  grid-column: 2;
}
.delivery_address_settings .delivery-address .delivery-address_textbox2 {
  grid-row: 2;
  grid-column: 2;
  width: 100%;
  padding: 5px;
  height: 33.59px;
  border-radius: 1.5px;
  border: 1px solid #959595;
  background-color: #fff;
}
.delivery_address_settings .delivery-address .delivery-address_textbox2:disabled {
  background-color: #f8f8f8;
  border-color: #d0d0d0 !important;
}
.delivery_address_settings .delivery-address label {
  font-weight: 400;
  font-size: 13px;
}
.delivery_address_settings .delivery-address-full label {
  display: block;
  font-weight: 400;
  font-size: 13px;
}
.delivery_address_settings .delivery-address-full input {
  display: block;
  width: 100%;
  margin-bottom: 15px;
  padding: 5px;
  border-radius: 1.5px;
  border: 1px solid #959595;
  background-color: #fff;
}
.delivery_address_settings .delivery-address-full input:disabled {
  background-color: #f8f8f8;
  border-color: #d0d0d0 !important;
}
.delivery_address_settings .delivery-address-partial label {
  display: block;
  font-weight: 400;
  font-size: 13px;
  margin-top: 15px;
}
.delivery_address_settings .delivery-address-partial select,
.delivery_address_settings .delivery-address-partial input {
  display: block;
  width: 70%;
  padding: 5PX;
  border-radius: 1.5px;
  border: 1px solid #959595;
  background-color: #fff;
}
@media only screen and (max-width: 768px) {
  .delivery_address_settings .delivery-address-partial select,
  .delivery_address_settings .delivery-address-partial input {
    width: 100%;
  }
}
.delivery_address_settings .delivery-address-partial select:disabled,
.delivery_address_settings .delivery-address-partial input:disabled {
  background-color: #f8f8f8;
  border-color: #d0d0d0 !important;
}

.privacy_settings_grid {
  display: grid;
  grid-template-columns: 30px 1fr 1fr;
  padding-top: 5px;
}
.privacy_settings_grid label {
  font-weight: 400;
}
.privacy_settings_grid .radio-public {
  grid-row: 1;
  grid-column: 1;
  width: 13px;
  height: 13px;
}
.privacy_settings_grid .label-public {
  grid-row: 1;
  grid-column: 2/span 3;
}
.privacy_settings_grid .radio-unlisted {
  grid-row: 2;
  grid-column: 1;
  width: 13px;
  height: 13px;
}
.privacy_settings_grid .label-unlisted {
  grid-row: 2;
  grid-column: 2/span 3;
}
.privacy_settings_grid .radio-private {
  grid-row: 3;
  grid-column: 1;
  width: 13px;
  height: 13px;
}
.privacy_settings_grid .label-private {
  grid-row: 3;
  grid-column: 2/span 3;
}

.privacy_settings .create_registry_subtitle {
  font-weight: 700;
}
.privacy_settings .passcode-wrapper {
  font-weight: 400;
  grid-row: 4;
  grid-column: 2/span 3;
  display: grid;
}
.privacy_settings .passcode-wrapper label {
  margin-top: 15px;
}
.privacy_settings .passcode-wrapper input[type=text] {
  grid-row: 2;
  padding: 5px;
  width: 50%;
  margin-bottom: 25px;
}
.privacy_settingsinput[type=radio] {
  cursor: pointer;
}
.privacy_settingsinput[type=radio] + label {
  cursor: pointer;
}
.privacy_settingsinput[type=radio][value=false]:checked ~ .passcode-wrapper {
  display: none;
}

.registry_details_settings details,
.registry_details-event_info details,
.registry_details-items details {
  margin-top: 15px;
  border: 0.5px solid lightgrey;
}
.registry_details_settings details .registry-details-header,
.registry_details-event_info details .registry-details-header,
.registry_details-items details .registry-details-header {
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  padding: 10px 25px;
  text-align: center;
  font-size: 18px;
  font-weight: 800;
}
.registry_details_settings details .registry-details-header i,
.registry_details-event_info details .registry-details-header i,
.registry_details-items details .registry-details-header i {
  transition: all 0.3s;
  padding-top: 5px;
}
.registry_details_settings details .registry-details-header .registry-details-title,
.registry_details-event_info details .registry-details-header .registry-details-title,
.registry_details-items details .registry-details-header .registry-details-title {
  display: block;
  margin: auto;
}
.registry_details_settings details[open] .registry-details-header,
.registry_details-event_info details[open] .registry-details-header,
.registry_details-items details[open] .registry-details-header {
  border-bottom: 0.5px solid lightgrey;
}
.registry_details_settings details[open] .registry-details-header i,
.registry_details-event_info details[open] .registry-details-header i,
.registry_details-items details[open] .registry-details-header i {
  transform: rotate(-180deg);
}

.registry_details-quickView details {
  margin-top: 15px;
  border: none;
}
.registry_details-quickView details .registry-details-header-quickView {
  background-color: #f4f4f4;
  text-transform: uppercase;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  padding: 10px 25px;
  text-align: center;
  font-size: 18px;
  font-weight: 600;
}
.registry_details-quickView details .registry-details-header-quickView i {
  transition: all 0.3s;
  padding-top: 5px;
}
.registry_details-quickView details .registry-details-header-quickView .registry-details-title {
  display: block;
  margin: auto;
}
.registry_details-quickView details[open] .registry-details-header-quickView i {
  transform: rotate(-180deg);
}
.registry_details-quickView .features {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  flex-wrap: nowrap;
  align-items: stretch;
  column-gap: 1px;
  font-size: 16px;
  line-height: 25px;
  text-align: left;
  border-bottom: 1px solid #ddd;
  margin-bottom: 5px;
  padding-bottom: 5px;
  text-transform: capitalize;
}
.registry_details-quickView .features b {
  width: 180px;
}

.registry_details-items {
  position: relative;
}
.registry_details-items .guest-view-products-list {
  pointer-events: none;
}

.registry-gift-card-banner {
  width: 100%;
  background: #ECECEC;
  padding: 20px 50px;
  margin-top: 15px;
}
.registry-gift-card-banner .gift-card-container {
  align-items: center;
  display: grid;
  grid-template-columns: 1fr;
  max-width: 850px;
  margin: auto;
  column-gap: 20px;
  row-gap: 20px;
}
@media only screen and (min-width: 650px) {
  .registry-gift-card-banner .gift-card-container {
    grid-template-columns: 1fr 1fr;
  }
}
@media only screen and (min-width: 850px) {
  .registry-gift-card-banner .gift-card-container {
    grid-template-columns: 1fr 1fr;
  }
}
.registry-gift-card-banner .gift-card-container .gift-card-image {
  margin: auto;
  max-width: 300px;
}
@media only screen and (max-width: 650px) {
  .registry-gift-card-banner .gift-card-container .gift-card-image {
    grid-row: 2;
    max-width: 280px;
  }
}
.registry-gift-card-banner .gift-card-container .header {
  font-size: 25px;
  font-weight: 800;
  margin-bottom: 10px;
}
.registry-gift-card-banner .gift-card-container .gift-card-text {
  font-size: 18px;
}
.registry-gift-card-banner .gift-card-container button {
  background-color: #135a8a;
}
.registry-gift-card-banner .gift-card-container button a {
  color: white;
}

.registry_details-items .products-list {
  padding: 15px;
}
.registry_details-items .products-list .top-banner {
  display: flex;
  height: 25px;
  position: absolute;
  background-color: #fff;
  z-index: 1;
  padding: 5px 10px;
  right: 0;
  box-shadow: -2px 1px 6px rgba(47, 47, 47, 0.2588235294);
  font-weight: 600;
}
.registry_details-items .products-list .in-stock-badge i {
  color: #008a00;
}
.registry_details-items .products-list .pick-up-badge i {
  color: #000;
}
.registry_details-items .products-list .registry_quickview_btn {
  position: absolute;
  background-color: #ddd;
  z-index: 1;
  right: 4px;
  top: 120px;
  height: 34px;
  width: 34px;
  box-shadow: -2px 1px 6px rgba(190, 190, 190, 0.2392156863);
  border-radius: 25px;
  justify-content: center;
  align-items: center;
  border: 3px solid #fff;
  font-size: 18px;
  cursor: pointer;
  max-width: 100%;
  display: flex;
  transition: all 0.5s ease;
  overflow: hidden;
}
@media only screen and (min-width: 992px) {
  .registry_details-items .products-list .registry_quickview_btn {
    top: 160px;
  }
}
.registry_details-items .products-list .registry_quickview_btn:empty {
  display: none;
}
.registry_details-items .products-list .registry_quickview_btn i {
  padding: 5px;
  color: #000;
  margin-left: 3px;
}
.registry_details-items .products-list .registry_quickview_btn .btn-text {
  font-size: 0;
  transition: font-size 0.4s ease;
  font-weight: 600;
  text-transform: capitalize;
}
@media only screen and (min-width: 630px) {
  .registry_details-items .products-list .registry_quickview_btn:hover {
    width: 150px;
    max-width: -webkit-fill-available;
  }
  .registry_details-items .products-list .registry_quickview_btn:hover .btn-text {
    font-size: 14px;
  }
}
.registry_details-items .products-list .registry_buynow_btn {
  position: absolute;
  background-color: #fcf004;
  z-index: 1;
  right: 4px;
  top: 120px;
  height: 34px;
  width: 34px;
  box-shadow: -2px 1px 6px rgba(190, 190, 190, 0.2392156863);
  border-radius: 25px;
  justify-content: center;
  align-items: center;
  border: 3px solid #fff;
  font-size: 16px;
  cursor: pointer;
  max-width: 100%;
  display: flex;
  transition: all 0.5s ease;
  overflow: hidden;
}
@media only screen and (min-width: 992px) {
  .registry_details-items .products-list .registry_buynow_btn {
    top: 160px;
  }
}
.registry_details-items .products-list .registry_buynow_btn:empty {
  display: none;
}
.registry_details-items .products-list .registry_buynow_btn i {
  padding: 5px;
  color: #000;
  margin-left: 3px;
}
.registry_details-items .products-list .registry_buynow_btn .btn-text {
  font-size: 0;
  transition: font-size 0.4s ease;
  font-weight: 600;
  text-transform: capitalize;
}
@media only screen and (min-width: 630px) {
  .registry_details-items .products-list .registry_buynow_btn:hover {
    width: 177px;
    max-width: -webkit-fill-available;
  }
  .registry_details-items .products-list .registry_buynow_btn:hover .btn-text {
    font-size: 14px;
  }
}
.registry_details-items .registry-quick-view, .registry_details-items .registry-how-to-buy {
  max-width: 1000px;
}
.registry_details-items .registry-quick-view .dialog-header, .registry_details-items .registry-how-to-buy .dialog-header {
  justify-content: space-between !important;
}
.registry_details-items .registry-quick-view .dialog-header button, .registry_details-items .registry-how-to-buy .dialog-header button {
  z-index: 99;
}
.registry_details-items .registry-how-to-buy {
  max-width: 675px;
}
.registry_details-items .min-size {
  min-height: 350px;
}
.registry_details-items .products-list,
.registry_details-items .no-products-list {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(auto-fill, 1fr);
  width: 100%;
  margin: auto;
}
@media only screen and (min-width: 768px) {
  .registry_details-items .products-list,
  .registry_details-items .no-products-list {
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  }
}
@media only screen and (min-width: 400px) {
  .registry_details-items .products-list,
  .registry_details-items .no-products-list {
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  }
}
.registry_details-items .products-list .no_items,
.registry_details-items .no-products-list .no_items {
  display: block;
  margin: auto;
  grid-column: 1/span 2;
  width: 100%;
  text-align: center;
}
@media only screen and (min-width: 822px) {
  .registry_details-items .products-list .no_items,
  .registry_details-items .no-products-list .no_items {
    grid-column: 1/span 5;
  }
}
.registry_details-items .products-list .no_items .text-box,
.registry_details-items .no-products-list .no_items .text-box {
  margin: 25px 0;
}
.registry_details-items .products-list .no_items button,
.registry_details-items .no-products-list .no_items button {
  background: #135a8a;
  color: white;
  margin: 15px auto 15px auto;
}
.registry_details-items .products-list .product-card,
.registry_details-items .no-products-list .product-card {
  border: 1px solid lightgray;
  box-shadow: 1px 1px 4px rgba(226, 226, 226, 0.6980392157);
  min-height: 150px;
}
.registry_details-items .products-list .product-card .card-image-container,
.registry_details-items .no-products-list .product-card .card-image-container {
  height: 160px;
  border-bottom: 1px solid lightgray;
}
@media only screen and (min-width: 992px) {
  .registry_details-items .products-list .product-card .card-image-container,
  .registry_details-items .no-products-list .product-card .card-image-container {
    height: 200px;
  }
}
.registry_details-items .products-list .product-card .card-details-container,
.registry_details-items .no-products-list .product-card .card-details-container {
  margin-top: 10px;
}
.registry_details-items .products-list .product-card .card-detail-rating-container,
.registry_details-items .no-products-list .product-card .card-detail-rating-container {
  display: none;
}
.registry_details-items .products-list .product-card .card-detail-title,
.registry_details-items .no-products-list .product-card .card-detail-title {
  height: 52px;
}

.info-delivery-text {
  display: none;
}

.info-delivery:hover + .info-delivery-text {
  display: inline-block;
  width: 100%;
  background: #e7e8ea;
  padding: 7px;
  margin-top: 5px;
}
.info-delivery:hover + .info-delivery-text:before {
  content: "";
}
@media only screen and (min-width: 769px) and (max-width: 991px) {
  .info-delivery:hover + .info-delivery-text {
    display: inline-block;
    width: 100%;
    background: #e7e8ea;
    position: absolute;
    padding: 10px;
    bottom: 29px;
    left: 0px;
  }
  .info-delivery:hover + .info-delivery-text:before {
    content: "\a";
    border-style: solid;
    border-width: 10px 15px 10px 0;
    border-color: transparent #e7e8ea transparent transparent;
    position: absolute;
    left: 332px;
    bottom: -13px;
    -webkit-transform: rotate(-90deg);
    -moz-transform: rotate(-90deg);
    transform: rotate(-90deg);
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .info-delivery:hover + .info-delivery-text {
    display: block;
    background: #e7e8ea;
    position: absolute;
    margin-left: 10px;
    margin-top: 0;
    margin-bottom: 0;
    padding: 10px;
    width: 100%;
    bottom: 30px;
    left: 0px;
  }
  .info-delivery:hover + .info-delivery-text:before {
    content: "\a";
    border-style: solid;
    border-width: 10px 15px 10px 0;
    border-color: transparent #e7e8ea transparent transparent;
    position: absolute;
    left: 322px;
    bottom: -13px;
    -webkit-transform: rotate(-90deg);
    -moz-transform: rotate(-90deg);
    transform: rotate(-90deg);
  }
}
@media only screen and (min-width: 1200px) {
  .info-delivery:hover + .info-delivery-text {
    display: inline-block;
    width: 350px;
    background: #e7e8ea;
    position: absolute;
    padding: 10px;
    left: 363px;
    bottom: -42px;
  }
  .info-delivery:hover + .info-delivery-text:before {
    content: "\a";
    border-style: solid;
    border-width: 10px 15px 10px 0;
    border-color: transparent #e7e8ea transparent transparent;
    position: absolute;
    left: -15px;
    bottom: 44px;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    transform: rotate(0deg);
  }
}

.info-delivery {
  padding-left: 3px;
}
@media only screen and (min-width: 500px) {
  .info-delivery {
    padding-left: 10px;
  }
}

.reg_title_purchased {
  font-weight: 700 !important;
  font-size: 11px !important;
}

.reg_address_purchased {
  font-size: 14.5px;
}

.guest-preview-link {
  margin: 5px 0 0 0;
  padding: 10px 0;
  font-weight: 700;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.registry-display-id {
  visibility: hidden;
}
@media only screen and (max-width: 725px) {
  .registry-display-id {
    width: 0;
    height: 0;
  }
}
@media only screen and (min-width: 725px) {
  .registry-display-id {
    visibility: visible;
    font-size: 1em;
    width: 33%;
    text-align: center;
    font-weight: 900;
    font-size: 16px;
  }
}

.reg-order-msg {
  margin: 10px;
  padding-left: 5px;
  padding-top: 10px;
  color: #7a7777;
  display: flex;
  align-items: flex-start;
  column-gap: 18px;
  flex-direction: column;
  row-gap: 11px;
}
.reg-order-msg button {
  color: white;
  font-weight: 600;
  font-size: 13px;
  background-color: #135A8A;
  border: 1px solid #ffffff;
  border-radius: 3px;
  box-shadow: none;
}
@media only screen and (max-width: 851px) {
  .reg-order-msg {
    width: 100%;
    padding-top: 0;
  }
}

.registry-how-to-buy .how-to-buy {
  display: flex;
  flex-direction: column;
  width: 100%;
  margin: auto;
  row-gap: 25px;
  margin-top: 25px;
}
@media only screen and (min-width: 700px) {
  .registry-how-to-buy .how-to-buy {
    width: 70%;
  }
}
.registry-how-to-buy .step-icon {
  background: #efefef;
  color: #135a8a;
  width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
  font-size: 17px;
}
.registry-how-to-buy .step-text {
  display: flex;
  align-items: center;
  width: 85%;
  font-size: 14px;
}
.registry-how-to-buy .tabs {
  display: flex;
  flex-wrap: wrap;
  margin: 2rem auto;
  max-width: 90%;
}
@media only screen and (min-width: 700px) {
  .registry-how-to-buy .tabs {
    max-width: 70%;
  }
}
.registry-how-to-buy .tabs label {
  cursor: pointer;
  display: block;
  font-weight: 600;
  margin-right: 0.3rem;
  order: initial;
  padding: 1rem 2rem;
  width: 100%;
}
.registry-how-to-buy .tabs .tab-content {
  background: var(--secondary-bg-color);
  display: none;
  flex-grow: 1;
  padding: 1rem;
  width: 100%;
}
.registry-how-to-buy .tabs input[type=radio] {
  display: none;
}
.registry-how-to-buy .tabs input[type=radio] + label {
  width: 49%;
  border-bottom: 1px solid rgb(206, 206, 206);
  text-align: center;
  margin: 0;
  font-weight: 600;
  font-size: 17px;
  padding-bottom: 12px;
}
.registry-how-to-buy .tabs input[type=radio]:checked + label {
  width: 49%;
  padding-bottom: 10px;
  border-bottom: 3px solid black;
  text-align: center;
  margin: 0;
  font-weight: 800;
  font-size: 17px;
}
.registry-how-to-buy .tabs input[type=radio]:checked + label + .tab-content {
  display: block;
}
@media (min-width: 10em) {
  .registry-how-to-buy .tabs .tab-content {
    order: 99;
  }
  .registry-how-to-buy .tabs label {
    order: 1;
  }
  .registry-how-to-buy .tabs label {
    margin-right: 0.3rem;
    margin-top: 0;
    width: auto;
  }
}

.registry-products-title {
  font-weight: 700;
  font-size: 18px;
  margin-left: 15px;
  padding-top: 25px;
}

#registry-summary {
  border: 1px solid lightgrey;
  padding: 15px 0;
  margin-top: 15px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: center;
  text-align: center;
}
#registry-summary .border-right {
  border-right: 1px solid lightgrey;
}
#registry-summary .summary-box {
  padding: 5px;
  display: block;
}
#registry-summary .summary-box .registry_total-itmes {
  font-size: 30px;
  display: block;
  font-weight: 700;
}

.custom-select {
  margin: 15px;
}
@media only screen and (min-width: 845px) {
  .custom-select {
    display: flex;
    align-items: center;
    min-width: 388px;
    margin: 10px 0 0 0;
    position: absolute;
    right: 15px;
  }
  .custom-select label {
    display: inline;
    margin-bottom: 0;
    padding-right: 10px;
  }
}
.custom-select select {
  width: 100%;
  font-size: 1.2rem;
  padding: 0.675em 6em 0.675em 1em;
  background-color: #fff;
  border: 1px solid #caced1;
  border-radius: 0.25rem;
  color: #000;
  cursor: pointer;
}

.registry-add-to-cart-section {
  display: grid;
  grid-template-columns: 100px 1fr;
  column-gap: 5px;
  width: 100%;
}
.registry-add-to-cart-section .registry-add-to-cart {
  height: 45px;
  text-transform: uppercase;
}
.registry-add-to-cart-section .quantity-label {
  font-size: 9px;
  position: absolute;
  color: #9a9696;
  padding: 3px;
}
.registry-add-to-cart-section .quantity-input {
  padding: 15px 0 5px 10px;
  width: 100%;
  border: 1px solid #ddd;
  border-radius: 5px;
  height: 45px;
  background-color: #fff;
}
.registry-add-to-cart-section select[disabled] {
  opacity: 1;
  padding: 15px 0 5px 14px;
  -moz-appearance: none;
  /* for Safari, Chrome, Opera */
  -webkit-appearance: none;
}
.registry-add-to-cart-section select[disabled]::-ms-expand {
  display: none;
}
.registry-add-to-cart-section select[disabled] > option {
  color: black;
}

.registry-purchased-item-product-card {
  position: relative;
  height: 100%;
}
.registry-purchased-item-product-card .product-card-main {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: space-between;
  position: relative;
  gap: 5px;
  height: 100%;
}
.registry-purchased-item-product-card #overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(7, 7, 7, 0.5);
  z-index: 2;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
}

.registry-qty-btn {
  padding: 0px !important;
  background-color: #fff !important;
  box-shadow: none !important;
  color: #135a8a;
  font-weight: 800 !important;
  font-size: 25px !important;
  border: none !important;
}
.registry-qty-btn:disabled {
  opacity: 0.2;
  color: grey;
}

.registry-quantity-adjuster {
  text-align: center;
  width: 70px;
  border-radius: 5px;
  border: 1px solid #ddd;
  border-radius: 0;
  height: 42px;
}

.registry-quantity-adjuster-updating {
  width: 70px;
  height: 42px;
  text-align: center;
  width: 70px;
  border-radius: 0px;
  border: 1px solid rgb(221, 221, 221);
  background-color: #fafafa;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 20px;
  color: #135A8A;
}

.registry-remove-item-btn {
  width: 100%;
  margin: 1px 0;
  border: none !important;
  background-color: #fff !important;
  box-shadow: none !important;
  color: #135a8a;
  font-size: 14px !important;
  font-weight: 700 !important;
}

#registry-gift-card .card-image-wrapper {
  height: 199px;
  width: 100%;
  background-image: radial-gradient(transparent, rgba(0, 0, 0, 0.0588235294));
  border-bottom: 1px solid lightgray;
  display: flex;
  align-items: center;
  justify-content: center !important;
}
@media only screen and (max-width: 991px) {
  #registry-gift-card .card-image-wrapper {
    height: 159px;
  }
}
#registry-gift-card .registry-gift-card-btn {
  font-weight: 700;
  text-transform: uppercase;
  background-color: #FCF104;
  box-shadow: none;
  color: black;
  width: 100%;
  height: 45px;
  margin-bottom: 10px;
}
#registry-gift-card .registry-gift-card-btn:hover {
  background-color: #000;
  color: #fff;
}

#passcodePopup {
  max-width: 350px;
  display: flex;
  justify-content: space-around;
}
#passcodePopup p {
  font-size: 16px;
  font-weight: 800;
}
#passcodePopup input {
  padding: 2px 10px;
  margin-bottom: 10px;
  width: 100%;
}

#registry-passcode-screen {
  align-items: center;
  display: flex;
  justify-content: center;
  flex-direction: column;
  height: 50vh;
  border: 1px solid #d1d1d1;
  margin: 45px auto;
  width: 55%;
  min-width: 300px;
  box-shadow: 2px 2px 10px 5px #f0f0f0;
  padding: 15px;
  gap: 25px;
}
#registry-passcode-screen h1 {
  max-width: 55%;
  text-align: center;
}
#registry-passcode-screen i {
  font-size: 30px;
}
#registry-passcode-screen #passcode-input {
  display: flex;
  height: 50px;
  justify-content: center;
}
#registry-passcode-screen #passcode-input .enterPasscode {
  border-radius: 0 2px 2px 0;
  border-color: black;
  background-color: #135a8a;
  color: white;
  margin-left: -2px;
  padding: 0 15px;
}
#registry-passcode-screen #passcode-input input {
  padding: 2px 5px;
  max-width: 210px;
  width: 98%;
}
#registry-passcode-screen .error_message {
  padding-top: 5px;
  color: red;
}

@media only screen and (min-width: 767px) {
  .quickView-dialog-body {
    display: flex;
    flex-direction: row;
  }
}

.left-side {
  display: grid;
}
@media only screen and (min-width: 767px) {
  .left-side {
    width: 50%;
  }
}
.left-side #image-selected {
  margin-top: 230px;
}
.left-side #image-selected .image-selection {
  display: grid;
  grid-template-columns: repeat(auto-fill, 60px);
  justify-content: center;
  justify-items: center;
  gap: 5px;
}
.left-side #image-selected .image-selection .loop {
  object-fit: cover;
  width: 100%;
}
.left-side #image-selected .image-selection .banner_thumbnail {
  background-image: radial-gradient(transparent, rgba(117, 117, 117, 0.1921568627));
}
.left-side #image-selected .image-selection .banner_thumbnail img {
  height: 60px;
  width: 60px;
  object-fit: contain;
  mix-blend-mode: multiply;
}
.left-side #image-selected .image-selection .banner_preview img {
  z-index: 10;
  position: absolute;
  top: 25px;
  left: 10px;
  width: 97%;
  object-fit: scale-down;
  height: 230px;
  background-color: #fff;
}
@media only screen and (min-width: 767px) {
  .left-side #image-selected .image-selection .banner_preview img {
    width: 48%;
  }
}
.left-side #image-selected .image-selection .banner_preview_onload img {
  z-index: 0;
  position: absolute;
  top: 25px;
  left: 10px;
  width: 97%;
  object-fit: scale-down;
  height: 230px;
}
@media only screen and (min-width: 767px) {
  .left-side #image-selected .image-selection .banner_preview_onload img {
    width: 48%;
  }
}
.left-side #image-selected .image-selection label {
  display: flex;
}
.left-side #image-selected .image-selection label.banner_thumbnail {
  display: grid;
  position: relative;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s;
}
.left-side #image-selected .image-selection label.banner_thumbnail:hover {
  filter: brightness(85%);
}
.left-side #image-selected .image-selection input {
  display: none;
}
.left-side #image-selected .image-selection input:checked + .banner_thumbnail::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  border: 5px solid #fcf104;
}
.left-side #image-selected .image-selection input:checked + .banner_thumbnail + .banner_preview {
  opacity: 1;
  z-index: 1;
  width: 100%;
  display: block;
}
.left-side #image-selected .image-selection input:not(:checked) + .banner_thumbnail + .banner_preview {
  display: none;
}

.right-side {
  margin-left: 10px;
}
.right-side h2 {
  font-weight: 800;
  font-size: 22px;
}
.right-side .sku {
  margin-bottom: 10px;
}
@media only screen and (min-width: 767px) {
  .right-side {
    width: 48%;
    margin-left: 25px;
    overflow-y: scroll;
    height: 550px;
    padding-right: 25px;
  }
  .right-side .quickView-description {
    max-width: 400px;
  }
}
.right-side .quickView-save-today {
  display: inline-block;
  padding: 2px 10px;
  border-radius: 4px;
  background-color: #fff200;
  text-transform: capitalize;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  margin-right: 5px;
}
.right-side .quickView-online-only {
  display: inline-block;
  padding: 0 10px;
  border-radius: 4px;
  background-color: #000;
  border: 2px solid #000;
  text-transform: capitalize;
  font-size: 12px;
  font-weight: 600;
  color: #fff;
  margin-right: 5px;
}
.right-side .quickView-online-only i {
  color: #135a8a;
  margin-right: 5px;
}
.right-side .quickView-made-in-canada {
  display: inline-block;
  padding: 0 10px;
  border-radius: 4px;
  background-color: #fff;
  border: 2px solid #ddd;
  text-transform: capitalize;
  font-size: 12px;
  font-weight: 600;
  margin-right: 5px;
}
.right-side .quickView-made-in-canada i {
  color: #d32c1f;
  margin-right: 5px;
}

.quick-view-price-container {
  display: flex;
  align-items: center;
  gap: 25px;
  z-index: 1;
  position: relative;
  width: fit-content;
  height: 120px;
  justify-content: center;
}
.quick-view-price-container .sale-price {
  align-items: center;
  display: flex;
  flex-direction: column;
  width: 49%;
}
.quick-view-price-container .sale-price .price {
  font-size: 16px;
  font-weight: 600;
  line-height: 1;
  color: #000;
  font-weight: 600;
  font-size: 2rem;
}
@media only screen and (min-width: 500px) {
  .quick-view-price-container .sale-price .price {
    font-size: 2.6rem;
  }
}
.quick-view-price-container .sale-price .price.on-sale-price {
  color: #008a00;
}
.quick-view-price-container .sale-price .compare-at-price {
  height: 18px;
  font-size: 1.5rem;
  text-decoration: line-through;
  color: gray;
  font-weight: lighter;
  line-height: 2rem;
}
@media only screen and (min-width: 500px) {
  .quick-view-price-container .sale-price .compare-at-price {
    font-size: 1.8rem;
  }
}
.quick-view-price-container .finance-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 7px;
  width: 49%;
  text-align: center;
}
.quick-view-price-container .finance-wrapper .finance-images {
  filter: drop-shadow(0 1px 1px rgba(0, 0, 0, 0.2)) drop-shadow(0 1px 2px rgba(0, 0, 0, 0.2));
  width: 50px;
  height: 32px;
}
.quick-view-price-container .finance-wrapper .finance-price {
  font-weight: 600;
  font-size: 2rem;
  color: #e44879;
}
@media only screen and (min-width: 500px) {
  .quick-view-price-container .finance-wrapper .finance-price {
    font-size: 2.6rem;
  }
}
.quick-view-price-container .finance-wrapper small {
  font-size: 10px;
  line-height: 1rem;
  display: block;
}
.quick-view-price-container .finance-separator .separator-gap {
  font-weight: 700;
  top: 30%;
  background-color: #fff;
  line-height: 3.5;
  text-transform: uppercase;
  display: block;
  position: relative;
}
.quick-view-price-container .finance-separator .separator-line {
  height: 90%;
  border-left: 2px solid #d3d3d3;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  width: 0;
  margin: auto;
  z-index: -1;
}

#orderInfo {
  width: 100%;
  font-size: 11px;
}
@media only screen and (min-width: 767px) {
  #orderInfo {
    font-size: 14px;
  }
}
#orderInfo #tableHeader {
  background-color: black;
  color: white;
  font-weight: 900;
}
#orderInfo #tableHeader .orderNum, #orderInfo #tableHeader .qtyPurchased, #orderInfo #tableHeader .purchaser {
  padding: 15px 10px;
}
#orderInfo .orderNum {
  padding: 10px;
}
#orderInfo .qtyPurchased {
  padding: 10px;
  text-align: center;
}
#orderInfo .purchaser {
  padding: 10px;
  width: 40%;
}

.section-title {
  text-align: center;
  margin: 25px;
  text-transform: capitalize;
  padding-top: 25px;
}

#registry-faq {
  margin: auto;
  width: 100%;
}
#registry-faq details {
  border: 0.5px solid lightgrey;
  margin-top: -2px;
  background-color: white;
}
#registry-faq details .faq-answer {
  padding: 15px;
  font-size: 12px;
}
#registry-faq details .faq-answer ul, #registry-faq details .faq-answer ol {
  margin: 0;
}
#registry-faq summary {
  font-weight: bold;
  padding: 5px 15px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
}
#registry-faq summary h4 {
  text-transform: uppercase;
  font-weight: 600;
  font-size: 16px;
}
#registry-faq summary i {
  font-size: 17px;
  transition: all 0.3s;
  margin-right: 10px;
}
#registry-faq details[open] ul li {
  list-style-type: disc;
  margin-left: 20px;
}
#registry-faq details[open] i {
  transform: rotate(-180deg);
}
#registry-faq details[open] summary {
  border-bottom: 1px solid lightgrey;
  margin: auto;
}
#registry-faq .how-to-section {
  margin: 0;
  width: 100%;
  margin-bottom: 15px;
}
#registry-faq .how-to-section h4 {
  font-weight: 800;
  margin-bottom: 15px;
}
#registry-faq .how-to-registry-admin {
  display: grid;
  justify-content: center;
  width: 90%;
  margin: auto;
  gap: 10px;
  margin-top: 10px;
}
@media only screen and (max-width: 600px) {
  #registry-faq .how-to-registry-admin {
    grid-template-columns: 1fr 10px 1fr 10px;
  }
}
@media only screen and (min-width: 601px) {
  #registry-faq .how-to-registry-admin {
    grid-template-columns: 1fr 10px 1fr 10px 1fr 10px 1fr;
  }
}
#registry-faq .how-to-registry-admin i {
  align-items: center;
  justify-content: center;
  display: grid;
  transform: none !important;
}
#registry-faq .how-to-registry-admin .admin-how-to-step {
  background-color: #ECECEC;
  padding: 10px;
}
#registry-faq .how-to-registry-admin .admin-how-to-step .step-label {
  display: block;
  font-weight: 800;
  margin-bottom: 3px;
  padding-top: 5px;
}
#registry-faq .page-not-found {
  padding: 0;
  margin: 0;
  width: 100%;
}
#registry-faq .page-not-found .breadcrumb-container {
  border-bottom: none;
}
#registry-faq .page-not-found .image-section {
  width: inherit;
  height: 100%;
  min-height: 300px;
}
#registry-faq .page-not-found .page-text-bottom {
  text-align: center;
  font-size: 14px;
}
#registry-faq .page-not-found .arrow {
  background-color: rgb(0, 112, 60);
  border: 0.25rem solid white;
  border-radius: 10px;
  width: calc(100% - 10px);
  height: calc(100% - 10px);
  margin: auto;
  text-align: center;
  position: absolute;
  top: 5px;
  left: 5px;
}
#registry-faq .page-not-found .arrow:hover {
  cursor: pointer;
}
#registry-faq .page-not-found .arrow h2 {
  font-size: 34px;
  font-weight: 800;
  text-transform: uppercase;
  color: white;
  margin-bottom: 0;
  padding-top: 10px;
}
#registry-faq .page-not-found .arrow h3 {
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  color: yellow;
  margin-top: 0;
}
#registry-faq .page-not-found .arrow-layer {
  background-color: rgb(0, 112, 60);
  border-radius: 10px;
  height: 100px;
  position: relative;
  z-index: 3;
}
#registry-faq .page-not-found .image-container {
  content: url(/cdn/shop/files/404-Todd_Margo_mobile.png?v=1683817699);
  width: 100%;
  min-height: 250px;
}
#registry-faq .page-not-found .img-container {
  width: 100%;
  min-height: 250px;
  position: relative;
}
#registry-faq .page-not-found .img-container button.cta {
  font-weight: 800;
  font-size: 26px;
  text-transform: uppercase;
  position: absolute;
  bottom: 16%;
  right: 7%;
  padding: 10px 26px;
  background-color: #ffffff;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}
#registry-faq .page-not-found .img-container button.cta a {
  color: black;
}
#registry-faq .page-not-found .img-container button.cta:hover {
  transition: 0.3s ease-in-out;
  background-color: #f7fa4b;
}
#registry-faq .page-not-found .img-container .desktop-img,
#registry-faq .page-not-found .img-container .tablet-img,
#registry-faq .page-not-found .img-container .mobile-img {
  display: none;
}
#registry-faq .page-not-found .page_content {
  position: relative;
}
#registry-faq .page-not-found .page_content .page-text {
  font-size: 14px;
  margin-bottom: 0;
  text-align: center;
  padding-left: 6px;
}
@media screen and (min-width: 480px) and (max-width: 767px) {
  #registry-faq .page-not-found .image-section {
    display: flex;
    justify-content: center;
  }
  #registry-faq .page-not-found .img-container button.cta {
    right: 5.5%;
    bottom: 14%;
    font-size: 12px;
  }
  #registry-faq .page-not-found .img-container .tablet-img {
    display: block;
    width: 100%;
  }
}
@media screen and (min-width: 768px) and (max-width: 1199px) {
  #registry-faq .page-not-found .img-container button.cta {
    right: 5.5%;
    bottom: 16%;
    font-size: 20px;
  }
  #registry-faq .page-not-found .img-container {
    min-height: 568px;
  }
  #registry-faq .page-not-found .img-container .tablet-img {
    display: block;
  }
  #registry-faq .page-not-found .arrow-layer {
    height: 150px;
    margin: 0 10px;
  }
  #registry-faq .page-not-found .arrow h2 {
    font-size: 54px;
    font-weight: 600;
    margin-top: 15px;
  }
  #registry-faq .page-not-found .arrow h3 {
    font-size: 24px;
    font-weight: 400;
  }
  #registry-faq .page-not-found .page_content .page-text {
    position: absolute;
    top: 20%;
    width: 50%;
  }
}
@media screen and (min-width: 1200px) {
  #registry-faq .page-not-found {
    padding-top: 0;
    position: relative;
  }
  #registry-faq .page-not-found .arrow-layer {
    height: 180px;
    width: 60%;
    position: absolute;
    top: 0;
    left: 2%;
  }
  #registry-faq .page-not-found .arrow h2 {
    font-size: 60px;
    font-weight: 800;
    margin-top: 30px;
  }
  #registry-faq .page-not-found .arrow h3 {
    font-size: 26px;
    font-weight: 600;
  }
  #registry-faq .page-not-found .img-container {
    width: 100%;
    min-height: 655px;
  }
  #registry-faq .page-not-found .img-container .desktop-img {
    display: block;
    width: 100%;
  }
  #registry-faq .page-not-found .page_content .page-text {
    top: 28%;
    left: 4%;
    width: 33%;
  }
}

.customer_account-registry_list {
  margin-right: 10px;
}
.customer_account-registry_list .registry_list-header {
  display: flex;
  justify-content: space-between;
  gap: 15px;
  margin-bottom: 10px;
}
.customer_account-registry_list .registry_list-wrapper {
  border-radius: 5px;
}
.customer_account-registry_list .registry_list-wrapper .list-header span {
  padding: 18px 0;
  color: #F1F1F1;
}
.customer_account-registry_list .registry_list-wrapper .list-header,
.customer_account-registry_list .registry_list-wrapper .list-items-container .list-item-container {
  display: grid;
  grid-template: "type copy name privacy date available purchased total delete";
  grid-template-columns: 55px 25px minmax(0, 1fr) 25px 100px 100px 100px 100px 40px;
  column-gap: 1px;
  padding: 0 10px;
  align-items: center;
  border-bottom: 0.5px solid #dfdfdf;
  min-height: 62px;
}
@media only screen and (max-width: 650px) {
  .customer_account-registry_list .registry_list-wrapper .list-header,
  .customer_account-registry_list .registry_list-wrapper .list-items-container .list-item-container {
    grid-template-columns: 55px 25px minmax(0, 1fr) 0 0 0 0 0 40px;
  }
}
@media only screen and (min-width: 651px) and (max-width: 750px) {
  .customer_account-registry_list .registry_list-wrapper .list-header,
  .customer_account-registry_list .registry_list-wrapper .list-items-container .list-item-container {
    grid-template-columns: 55px 25px minmax(0, 1fr) 0 0 100px 100px 100px 40px;
  }
}
@media only screen and (min-width: 751px) and (max-width: 850px) {
  .customer_account-registry_list .registry_list-wrapper .list-header,
  .customer_account-registry_list .registry_list-wrapper .list-items-container .list-item-container {
    grid-template-columns: 55px 25px minmax(0, 1fr) 0 0 100px 100px 100px 40px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1100px) {
  .customer_account-registry_list .registry_list-wrapper .list-header,
  .customer_account-registry_list .registry_list-wrapper .list-items-container .list-item-container {
    grid-template-columns: 55px 25px minmax(0, 1fr) 0 0 100px 100px 100px 40px;
  }
}
@media only screen and (min-width: 1101px) and (max-width: 1150px) {
  .customer_account-registry_list .registry_list-wrapper .list-header,
  .customer_account-registry_list .registry_list-wrapper .list-items-container .list-item-container {
    grid-template-columns: 55px 25px minmax(0, 1fr) 0 100px 100px 100px 100px 40px;
  }
}
.customer_account-registry_list .registry_list-wrapper .list-header p,
.customer_account-registry_list .registry_list-wrapper .list-items-container .list-item-container p {
  margin: 0;
  font-size: 15px;
  color: #000;
}
.customer_account-registry_list .registry_list-wrapper .list-header span,
.customer_account-registry_list .registry_list-wrapper .list-items-container .list-item-container span {
  margin: 0;
}
.customer_account-registry_list .registry_list-wrapper .list-header .registry_type-icon,
.customer_account-registry_list .registry_list-wrapper .list-items-container .list-item-container .registry_type-icon {
  grid-area: type;
  text-align: center;
  width: 40px;
  font-size: 10px;
}
.customer_account-registry_list .registry_list-wrapper .list-header .registry_type-icon i,
.customer_account-registry_list .registry_list-wrapper .list-items-container .list-item-container .registry_type-icon i {
  font-size: 20px;
  display: block;
}
.customer_account-registry_list .registry_list-wrapper .list-header .registry_title,
.customer_account-registry_list .registry_list-wrapper .list-items-container .list-item-container .registry_title {
  overflow-wrap: break-word;
  width: 90%;
}
.customer_account-registry_list .registry_list-wrapper .list-header .registry_display_name,
.customer_account-registry_list .registry_list-wrapper .list-items-container .list-item-container .registry_display_name {
  font-weight: 800;
  max-height: 57px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.customer_account-registry_list .registry_list-wrapper .list-header .registry_name,
.customer_account-registry_list .registry_list-wrapper .list-items-container .list-item-container .registry_name {
  grid-area: name;
  display: flex;
  align-items: center;
  gap: 7px;
  overflow: hidden;
  width: 100%;
  overflow-wrap: break-word;
  justify-content: space-between;
  border-right: 1px solid #dfdfdf;
  padding: 10px 15px 10px 0;
  min-height: 62px;
  padding-left: 8px;
}
@media only screen and (min-width: 1100px) {
  .customer_account-registry_list .registry_list-wrapper .list-header .registry_name,
  .customer_account-registry_list .registry_list-wrapper .list-items-container .list-item-container .registry_name {
    margin-right: 25px;
  }
}
@media only screen and (max-width: 650px) {
  .customer_account-registry_list .registry_list-wrapper .list-header .registry_name,
  .customer_account-registry_list .registry_list-wrapper .list-items-container .list-item-container .registry_name {
    margin-right: 25px;
  }
}
.customer_account-registry_list .registry_list-wrapper .list-header .registry_name:hover,
.customer_account-registry_list .registry_list-wrapper .list-items-container .list-item-container .registry_name:hover {
  background-color: #f1f1f1;
}
.customer_account-registry_list .registry_list-wrapper .list-header .registry_date,
.customer_account-registry_list .registry_list-wrapper .list-items-container .list-item-container .registry_date {
  grid-area: date;
  text-align: center;
}
@media only screen and (min-width: 992px) and (max-width: 1100px) {
  .customer_account-registry_list .registry_list-wrapper .list-header .registry_date,
  .customer_account-registry_list .registry_list-wrapper .list-items-container .list-item-container .registry_date {
    display: none;
  }
}
@media only screen and (max-width: 850px) {
  .customer_account-registry_list .registry_list-wrapper .list-header .registry_date,
  .customer_account-registry_list .registry_list-wrapper .list-items-container .list-item-container .registry_date {
    display: none;
  }
}
.customer_account-registry_list .registry_list-wrapper .list-header .registry_privacy,
.customer_account-registry_list .registry_list-wrapper .list-items-container .list-item-container .registry_privacy {
  grid-area: privacy;
  text-align: center;
}
@media only screen and (min-width: 992px) and (max-width: 1150px) {
  .customer_account-registry_list .registry_list-wrapper .list-header .registry_privacy,
  .customer_account-registry_list .registry_list-wrapper .list-items-container .list-item-container .registry_privacy {
    display: none;
  }
}
@media only screen and (max-width: 850px) {
  .customer_account-registry_list .registry_list-wrapper .list-header .registry_privacy,
  .customer_account-registry_list .registry_list-wrapper .list-items-container .list-item-container .registry_privacy {
    display: none;
  }
}
.customer_account-registry_list .registry_list-wrapper .list-header .registry_total-itmes,
.customer_account-registry_list .registry_list-wrapper .list-items-container .list-item-container .registry_total-itmes {
  grid-area: total;
  text-align: center;
}
@media only screen and (max-width: 650px) {
  .customer_account-registry_list .registry_list-wrapper .list-header .registry_total-itmes,
  .customer_account-registry_list .registry_list-wrapper .list-items-container .list-item-container .registry_total-itmes {
    display: none;
  }
}
.customer_account-registry_list .registry_list-wrapper .list-header .registry_total-purchased,
.customer_account-registry_list .registry_list-wrapper .list-items-container .list-item-container .registry_total-purchased {
  grid-area: purchased;
  text-align: center;
}
@media only screen and (max-width: 650px) {
  .customer_account-registry_list .registry_list-wrapper .list-header .registry_total-purchased,
  .customer_account-registry_list .registry_list-wrapper .list-items-container .list-item-container .registry_total-purchased {
    display: none;
  }
}
.customer_account-registry_list .registry_list-wrapper .list-header .registry_total-available,
.customer_account-registry_list .registry_list-wrapper .list-items-container .list-item-container .registry_total-available {
  grid-area: available;
  text-align: center;
}
@media only screen and (max-width: 650px) {
  .customer_account-registry_list .registry_list-wrapper .list-header .registry_total-available,
  .customer_account-registry_list .registry_list-wrapper .list-items-container .list-item-container .registry_total-available {
    display: none;
  }
}
.customer_account-registry_list .registry_list-wrapper .list-header .delete_registry,
.customer_account-registry_list .registry_list-wrapper .list-items-container .list-item-container .delete_registry {
  grid-area: delete;
  margin-left: auto;
  border: none;
  background-color: #f1f1f1;
}
.customer_account-registry_list .registry_list-wrapper .list-header {
  background-color: #000000;
}
.customer_account-registry_list .registry_list-wrapper .list-header > * {
  font-weight: 600;
}
.customer_account-registry_list .list-header .registry_total-itmes, .customer_account-registry_list .list-header .registry_total-purchased, .customer_account-registry_list .list-header .registry_total-available {
  margin: 0 15px !important;
  font-size: 10px;
}
.customer_account-registry_list #createRegistryDialog {
  max-width: 900px;
}
.customer_account-registry_list #createRegistryDialog[data-prevent-close=true] {
  position: relative;
  border: none;
  max-width: unset;
  width: 100%;
}

.lucky-entries-container {
  background-image: url("/cdn/shop/files/confetti-scaled.jpg?v=1723664599");
  background-size: cover;
  background-repeat: no-repeat;
  padding: 10px;
  text-align: center;
  display: none;
}
.lucky-entries-container .lucky-leons-logo {
  max-height: 55px;
}
.lucky-entries-container .lucky-entries-description {
  color: #000;
  font-weight: 900;
  font-size: 15px;
  max-width: 650px;
  margin: 20px auto;
  background-color: rgba(255, 255, 255, 0.8);
  padding: 5px;
}
.lucky-entries-container .lucky-entries-description a {
  text-decoration: underline;
}
.lucky-entries-container .lucky-entries-collected-container {
  border: 1px solid #c6c6c6;
  min-height: 200px;
  color: #000;
  background-color: #fff;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  border-radius: 15px;
  overflow: hidden;
  max-width: 320px;
  margin-left: auto;
  margin-right: auto;
  padding-bottom: 10px;
}
.lucky-entries-container .lucky-entries-collected-header {
  background-color: #135A8A;
  color: #fff;
  min-height: 52px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  padding: 5px 15px;
}
.lucky-entries-container .lucky-entries-collected-header .fa-star {
  color: #fff200;
}
.lucky-entries-container .lucky-entries-collected-coupons {
  height: 100%;
}
.lucky-entries-container .lucky-entries-collected-coupons .lucky-coupon {
  font-weight: 700;
  margin-top: 10px;
}
@media screen and (min-width: 992px) {
  .lucky-entries-container .lucky-leons-logo {
    max-height: 65px;
  }
  .lucky-entries-container .lucky-entries-description {
    font-size: 16px;
  }
}