/** Shopify CDN: Minification failed

Line 545:2 Unexpected "#"

**/
/* Body Copy Paragraph Black */
p {
  color:#000;
}

.footer p {
  color:rgba(255,255,255,0.75);
}

/* wa-new.css */
*:focus-visible {
    outline-offset: 0 !important;
    box-shadow: none !important;
    outline: 1px solid #000000 !important;
}

/* Multi-Step Form Styles */
.wa-new-multi-step-form {
  margin-top: 20px;
  width: 100% !important;
}

.wa-new-multi-step-form p {
  font-size:1.6rem;
  letter-spacing:0;
}

  /* Responsive for mobile paragraph (1 column) */
  @media (max-width: 768px) {
    .wa-new-multi-step-form p  {
      font-size:16px !important;
    }
  }

.wa-new-section {
  display: none;
  max-width: 600px;
}

#wa-new-section-3.wa-new-section {
  max-width: 100%;
}

.wa-new-section.active {
  display: block;
}


.header__submenu.list-menu {
  z-index: 10;
}
/*
.wa-new-next-button,
.wa-new-prev-button,
.wa-new-complete-button {
  margin-top: 15px;
  padding: 10px 20px;
  background-color: #007acc;
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}


.wa-new-next-button:hover,
.wa-new-prev-button:hover,
.wa-new-complete-button:hover {
  background-color: #005fa3;
}
*/

#wa-new-message-details,
#wa-new-sign-off {
  margin-top: 10px;
}

#wa-new-template-dropdown {
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
  white-space: pre-wrap;
  word-break: break-word;
}

#wa-new-message-textarea {
  width: 100%;
  height: 80px;
  margin-top: 10px;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 16px; /* prevent Safari zoom */
  line-height: 1.4;
  -webkit-text-size-adjust: 100%;
  overflow-y: auto;
  white-space: pre-wrap;
  word-break: break-word;
}

.wa-new-section select {
  width: 100%;
  padding: 8px;
  margin-top: 5px;
  border: 1px solid #ddd;
  border-radius: 4px;
}

.wa-new-section input[type="text"] {
  width: 100%;
  padding: 8px;
  margin-top: 5px;
  margin-bottom: 10px;
  border: 1px solid #ddd;
  background-color:#fff;
  border-radius: 4px;
  font-size: 16px;
  line-height: 1.4;
  -webkit-text-size-adjust: 100%;
  overflow-y: auto;
  white-space: pre-wrap;
  word-break: break-word;
}

.wa-new-section label {
  display: block;
  font-weight: bold;
  font-size:1.5rem;
}

.form-description {
  letter-spacing:0;
  font-size:16px;
}

/* Address Cards */
/* Grid Layout for Delivery Address Cards */
.wa-new-address-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
  margin: 20px 0px;
}

/* Responsive for tablets (2 columns) */
@media (max-width: 1024px) {
  .wa-new-address-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Responsive for mobile (1 column) */
@media (max-width: 768px) {
  .wa-new-address-grid {
    grid-template-columns: repeat(1, 1fr);
  }
}

/* Address Card Styling */
.wa-new-address-card {
  border: 1px solid #ddd;
  padding: 20px;
  border-radius: 8px;
  background-color: #f9f9f9;
  text-align:left;
  position: relative;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

/* Address Card Text */
.wa-new-address-card p {
  margin:0;
  font-size: 16px;
}

/* Action Icons */
.wa-new-address-icons {
  position: absolute;
  top: 16px;
  right: 16px;
}

.wa-new-address-icons i {
  font-size: 18px;
  margin-left: 10px;
  cursor: pointer;
  color: #3498db;
}

.wa-new-address-icons i.wa-delete-icon {
  color: #e74c3c;
}

.wa-new-add-address {
  border: 2px dashed #3498db;
  color: #3498db;
  font-weight: bold;
}

#wa-new-add-address-btn {
  font-size: 24px;
  background: none;
  border: none;
  color: #3498db;
  cursor: pointer;
}

/* Add Address Form Styling */
.wa-new-add-address {
  border: 2px dashed #3498db;
  text-align: center;
  padding: 15px;
  margin-bottom: 20px;
}

.wa-new-add-address button {
  font-size: 16px;
  padding: 10px 20px;
  background: #3498db;
  color: white;
  border: none;
  cursor: pointer;
}

.wa-new-add-address button:hover {
  background: #2980b9;
}

#wa-new-address-form {
  background: #f9f9f9;
  border: 1px solid #ddd;
  padding: 20px;
  border-radius: 8px;
}
  #wa-new-address-form legend {
    font-size:1.6rem;
  }

.wa-new-add-address-submit,
.wa-new-add-address-cancel {
  padding: 10px 20px;
  margin-top: 15px;
  margin-right: 10px;
  cursor: pointer;
}

.wa-new-add-address-submit {
  background-color: #041740;
  color: #fff;
  border: none;
  border-radius: 5px;
}

.wa-new-add-address-cancel {
  background-color: #ccc;
  color: #333;
  border: none;
  border-radius: 5px;
}

/* Highlight the selected address */
.wa-new-address-card.selected {
  border: 2px solid #007acc;
  background-color: #e6f4ff;
  box-shadow: 0px 0px 10px rgba(0, 122, 204, 0.5);
}

/* Hover effect for better UX */
.wa-new-address-card:hover {
  cursor: pointer;
  background-color: #f5f5f5;
  transition: background-color 0.3s;
}

/* UIkit Notification Styling for Better Visibility */
.uk-notification-message {
  font-size: 18px !important;
  font-weight: bold !important;
  text-align: center !important;
  padding: 15px !important;
  background-color: #28a745 !important; /* Green Success Color */
  color: white !important;
  border-radius: 5px !important;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
}

.uk-notification-message-danger {
  background-color: #dc3545 !important; /* Red Danger Color */
}

.uk-notification-message-warning {
  background-color: #ffc107 !important; /* Yellow Warning Color */
}

.uk-notification-message-success {
  background-color: #28a745 !important; /* Green Success Color */
}


.rb label {
  display: inline-block;
}

#shipping-details-section, #delivery-date-time-section {
    border: 1px solid #ddd;
    padding: 15px;
    border-radius: 8px;
    background-color: #f9f9f9;
    margin: 20px 0px;
}

h3 {
    font-size: 1.2em;
    margin-bottom: 10px;
}

.address-type-options {
    display: flex;
    gap: 15px;
    margin-bottom: 10px;
}

.input-group {
    margin-bottom: 10px;
}

.input-group label {
    display: block;
    font-weight: bold;
}

.input-group input, .input-group select {
    width: 100%;
    padding: 8px;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.input-group textarea {
  font-size:1.4rem;
  padding:8px;
  border: 1px solid #ddd;
  border-radius: 4px;
}

#company-wrap {
    display: none;
}

/* Styles exclusively for the Delivery Information Section */
#delivery-info-section {
    border: 1px solid #ddd;
    padding: 15px;
    border-radius: 8px;
    background-color: #f9f9f9;
    margin: 20px 0;
}

/* Title for Delivery Information */
#delivery-info-section h3 {
    font-size: 1.2em;
    margin-bottom: 15px;
}

/* Sub-section Titles */
#delivery-info-section h4 {
    font-size: 1.1em;
    margin-bottom: 8px;
    color: #00173f;
}

/* Layout for Each Information Block */
#delivery-info-section .info-section {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-bottom: 10px;
    max-width:700px;
}

/* Each Section Should Have a Full-Width Title */
#delivery-info-section .info-section h4 {
    flex-basis: 100%;
}

/* Text for Delivery Information */
#delivery-info-section .info-section p {
    margin: 3px 0;
    color: #444;
}

/* Styling for Selected Delivery Address */
#delivery-info-section #selected-delivery-address {
    font-size: 1em;
    margin-bottom: 10px;
    color: #333;
}

/* Delivery Costs, Days, and Cutoff Times */
#delivery-info-section .delivery-costs,
#delivery-info-section .delivery-days,
#delivery-info-section .cutoff-times {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

/* Style for Individual Costs, Days, and Cutoff Entries */
#delivery-info-section .delivery-costs p,
#delivery-info-section .delivery-days p,
#delivery-info-section .cutoff-times p {
    font-size: 1em;
    color: #444;
}

/* Cart Totals Section */
#delivery-info-section #cart-totals {
    border-top: 1px solid #ddd;
    padding-top: 10px;
    margin-top: 15px;
    text-align: right;
}

/* Text Styling for Totals */
#delivery-info-section #cart-totals p {
    font-size: 1em;
    color: #000;
}

/* Price Styling */
#delivery-info-section #cart-subtotal,
#delivery-info-section #shipping-total,
#delivery-info-section #cart-total {
    color: #222;
}

.urgent-delivery-box {
    background: linear-gradient(to right, #fff, #fdecec);
    border: 1px solid #f3d5d5;
    padding: 20px;
    margin-top: 20px;
    border-radius: 10px;
}

.urgent-delivery-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.urgent-text {
    flex: 1;
    min-width: 250px;
}

.urgent-text h4 {
    margin-top: 0;
    color: #d72f2f;
}

.urgent-checkbox {
    margin-top: 10px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: bold;
}

.urgent-image img {
    max-width: 150px;
    height: auto;
}


.wa-new-complete-button {
  display: none;
}

.wa-new-complete-button.show {
  display: inline-flex !important;
}

.wa-new-complete-button.pickup-complete {
  display: inline-flex !important;
}



@media (max-width: 360px) {
  button.wa-new-prev-button.button, 
  button.wa-new-next-button.button,
  button.wa-new-complete-button.button.delivery-complete.pickup-complete {
    min-width: 100px !important;
  }
}


/* Product Button Styling*/
  .product-form__submit.button {
    background: #001a43; /* your existing navy */
    background-size: 200% 100%;
    animation: atcGradientFlash 2.5s ease-in-out infinite;
    transition: background 0.2s ease, transform 0.2s ease;
    font-size:1.6rem;
  }

  .product-form__submit.button:hover {
  transform: translateY(-2px);
  }
    /* Gradient definition */
  .product-form__submit.button {
  background-image: linear-gradient(
    90deg,
    #001a43 0%,
    #0a2d65 25%,
    #2a4d85 50%,
    #0a2d65 75%,
    #001a43 100%
  );
  }

  /* Product BUtton Keyframe */
  @keyframes atcGradientFlash {
    0% {
      background-position: 0% 0%;
    }
    20% {
      background-position: 100% 0%;
    }
    100% {
      background-position: 0% 0%;
    }
  }

  /* Product Add to Cart */


  /* YMQ Box Padding on product page */
  # ymq-box, .ymq-box {
    margin-bottom:0;
  }

    #ymq-box .ymq_lable,
    .form-label, .product-form__quantity .form__label {
      font-size:1.5rem;
      color:#000;
    }

  /* Remove unncessary margin on containers */
  .product.wa-specific .product__info-container>*+* {
    margin-top:0;
  }