
.loading-overlay[data-v-0ab40666] {
  position: absolute;
  height: 100%;
  width: 100%;
  text-align: center;
  z-index: 999;
  background: rgba(230, 230, 230, 0.90);
  display: flex;
  align-items: center;
  justify-content: center;
}


/* Control column widths */
#shipping-modes[data-v-27785d4a] {
  table-layout: fixed; /* This ensures width percentages are respected */
  width: 100%;
}
#shipping-modes th[data-v-27785d4a]:nth-child(1), 
#shipping-modes td[data-v-27785d4a]:nth-child(1) {
  width: 20%;
}
#shipping-modes th[data-v-27785d4a]:nth-child(2), 
#shipping-modes td[data-v-27785d4a]:nth-child(2) {
  width: 40%; /* Give description more space */
}
#shipping-modes th[data-v-27785d4a]:nth-child(3), 
#shipping-modes td[data-v-27785d4a]:nth-child(3) {
  width: 15%;
}
#shipping-modes th[data-v-27785d4a]:nth-child(4), 
#shipping-modes td[data-v-27785d4a]:nth-child(4) {
  width: 15%;
}
#shipping-modes th[data-v-27785d4a]:nth-child(5), 
#shipping-modes td[data-v-27785d4a]:nth-child(5) {
  width: 10%;
  text-align: center;
}

/* Handle text overflow for long content */
#shipping-modes td[data-v-27785d4a] {
  word-wrap: break-word;
  overflow-wrap: break-word;
}

/* Specifically handle description column if text is too long */
#shipping-modes td[data-v-27785d4a]:nth-child(2) {
  max-width: 0; /* This works with table-layout: fixed */
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}


.mode-details-form[data-v-0c616ee0] {
  background: #f8f9fa;
  border: 1px solid #dee2e6;
  border-radius: 8px;
  padding: 20px;
  margin-bottom: 20px;
  font-family: 'Open Sans', sans-serif;
}
.form-row[data-v-0c616ee0] {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
.form-column[data-v-0c616ee0] {
  flex: 1;
  min-width: 250px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.form-group[data-v-0c616ee0] {
  display: flex;
  flex-direction: column;
}
.form-label[data-v-0c616ee0] {
  font-weight: 600;
  color: #333;
  margin-bottom: 6px;
  font-size: 16px;
}

/* Make required field asterisks red */
.required[data-v-0c616ee0] {
  color: #dc3545;
  font-weight: bold;
  margin-left: 2px;
}
.form-input[data-v-0c616ee0] {
  padding: 8px 12px;
  border: 1px solid #ced4da;
  border-radius: 4px;
  font-size: 16px;
  transition: border-color 0.2s ease;
}
.form-input[data-v-0c616ee0]:focus {
  outline: none;
  border-color: #FC835A;
  box-shadow: 0 0 0 2px rgba(252, 131, 90, 0.25);
}
.form-textarea[data-v-0c616ee0] {
  padding: 8px 12px;
  border: 1px solid #ced4da;
  border-radius: 4px;
  font-size: 16px;
  resize: vertical;
  min-height: 60px;
  font-family: inherit;
  transition: border-color 0.2s ease;
}
.form-textarea[data-v-0c616ee0]:focus {
  outline: none;
  border-color: #FC835A;
  box-shadow: 0 0 0 2px rgba(252, 131, 90, 0.25);
}
.form-input.error[data-v-0c616ee0],
.form-textarea.error[data-v-0c616ee0] {
  border-color: #dc3545;
  box-shadow: 0 0 0 2px rgba(220, 53, 69, 0.25);
}
.error-message[data-v-0c616ee0] {
  color: #dc3545;
  font-size: 14px;
  margin-top: 4px;
  display: block;
}


.list-section[data-v-5fef2ec5] {
  flex: 1;
  min-width: 280px;
  height: 600px;
  background: #f8f9fa;
  border: 1px solid #dee2e6;
  border-radius: 8px;
  padding: 16px;
  font-family: 'Open Sans', sans-serif;
  position: relative;
}
.list-section h3[data-v-5fef2ec5] {
  margin: 0 0 16px 0;
  padding-bottom: 8px;
  border-bottom: 2px solid #FC835A;
  color: #333;
  font-size: 18px;
  font-weight: 600;
  font-family: 'Figtree', sans-serif;
}
.filter-input-container[data-v-5fef2ec5] {
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.filter-input[data-v-5fef2ec5] {
  flex: 1;
  padding: 8px 12px;
  border: 1px solid #dee2e6;
  border-radius: 4px;
  font-size: 14px;
  font-family: 'Open Sans', sans-serif;
  box-sizing: border-box;
  transition: border-color 0.2s ease;
}
.select-all-text[data-v-5fef2ec5] {
  font-family: 'Open Sans', sans-serif;
  font-size: 14px;
  font-weight: 500;
  background-color: #FC835A;
  color: black;
  padding: 6px 12px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  user-select: none;
  white-space: nowrap;
  transition: all 0.2s ease;
  text-decoration: none;
  display: inline-block;
}
.select-all-text[data-v-5fef2ec5]:hover {
  background-color: #e6754f;
}
.select-all-text.disabled[data-v-5fef2ec5] {
  background-color: #ccc;
  cursor: not-allowed;
}
.filter-input[data-v-5fef2ec5]:focus {
  outline: none;
  border-color: #FC835A;
  box-shadow: 0 0 0 2px rgba(252, 131, 90, 0.2);
}
.filter-input[data-v-5fef2ec5]::placeholder {
  color: #6c757d;
}
.list-content[data-v-5fef2ec5] {
  max-height: calc(100% - 110px);
  overflow-y: auto;
}
.list-item[data-v-5fef2ec5] {
  display: flex;
  align-items: center;
  padding: 8px 12px;
  margin-bottom: 4px;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.2s ease;
}
.list-item[data-v-5fef2ec5]:last-child {
  margin-bottom: 0;
}
.list-item[data-v-5fef2ec5]:hover {
  background-color: #e9ecef;
}
.clickable-item[data-v-5fef2ec5] {
  transition: all 0.2s ease;
}
.clickable-item[data-v-5fef2ec5]:hover {
  background-color: #55688C;
  color: white;
  transform: translateY(-1px);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.clickable-item.selected[data-v-5fef2ec5] {
  background-color: #0043E5;
  color: white;
  border-left: none;
  box-shadow: 0 2px 8px rgba(0, 67, 229, 0.3);
}
.clickable-item.selected[data-v-5fef2ec5]:hover {
  background-color: #2B50AA;
}
.item-info[data-v-5fef2ec5] {
  display: flex;
  flex-direction: column;
  gap: 4px;
  width: 100%;
}
.item-reference[data-v-5fef2ec5] {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 2px;
}
.item-name[data-v-5fef2ec5] {
  font-weight: 400;
  font-size: 14px;
  opacity: 0.8;
}
.clickable-item.selected .item-reference[data-v-5fef2ec5] {
  opacity: 0.9;
}
.list-section.error[data-v-5fef2ec5] {
  border-color: #dc3545;
  box-shadow: 0 0 0 2px rgba(220, 53, 69, 0.25);
}
.error-message[data-v-5fef2ec5] {
  color: #dc3545;
  font-size: 14px;
  position: absolute;
  bottom: 16px;
  left: 16px;
  right: 16px;
  display: block;
}


.list-section[data-v-74c9e1df] {
  flex: 1;
  min-width: 280px;
  height: 600px;
  background: #f8f9fa;
  border: 1px solid #dee2e6;
  border-radius: 8px;
  padding: 16px;
  font-family: 'Open Sans', sans-serif;
  position: relative;
  /* Aggressive containment to prevent overflow */
  contain: layout style paint;
  overflow: hidden;
  isolation: isolate;
  transform: translateZ(0);
  will-change: auto;
}
.header-row[data-v-74c9e1df] {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
  border-bottom: 2px solid #FC835A;
}
.list-section h3[data-v-74c9e1df] {
  margin: 0;
  color: #333;
  font-size: 18px;
  font-weight: 600;
  font-family: 'Figtree', sans-serif;
}
.filter-input-container[data-v-74c9e1df] {
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.filter-input[data-v-74c9e1df] {
  flex: 1;
  padding: 8px 12px;
  border: 1px solid #dee2e6;
  border-radius: 4px;
  font-size: 14px;
  font-family: 'Open Sans', sans-serif;
  box-sizing: border-box;
  transition: border-color 0.2s ease;
}
.select-all-text[data-v-74c9e1df] {
  font-family: 'Open Sans', sans-serif;
  font-size: 14px;
  font-weight: 500;
  background-color: #FC835A;
  color: black;
  padding: 6px 12px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  user-select: none;
  white-space: nowrap;
  transition: all 0.2s ease;
  text-decoration: none;
  display: inline-block;
}
.select-all-text[data-v-74c9e1df]:hover {
  background-color: #e6754f;
}
.select-all-text.disabled[data-v-74c9e1df] {
  background-color: #ccc;
  cursor: not-allowed;
}
.filter-input[data-v-74c9e1df]:focus {
  outline: none;
  border-color: #FC835A;
  box-shadow: 0 0 0 2px rgba(252, 131, 90, 0.2);
}
.filter-input[data-v-74c9e1df]::placeholder {
  color: #6c757d;
}
.toggle-button[data-v-74c9e1df] {
  display: flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  padding: 4px 8px;
  border-radius: 4px;
  transition: background-color 0.2s ease;
  position: relative;
}
.toggle-button[data-v-74c9e1df]:hover {
  background-color: rgba(252, 131, 90, 0.1);
}

/* Custom tooltip styling */
.custom-tooltip[data-v-74c9e1df] {
  position: absolute;
  top: 120%;
  right: 0;
  background-color: #55688C;
  color: white;
  padding: 8px 12px;
  border-radius: 4px;
  font-size: 12px;
  white-space: nowrap;
  z-index: 9999;
  pointer-events: none;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  font-family: 'Open Sans', sans-serif;
  min-width: max-content;
}

/* Tooltip arrow */
.custom-tooltip[data-v-74c9e1df]::after {
  content: '';
  position: absolute;
  bottom: 100%;
  right: 20px;
  border: 5px solid transparent;
  border-bottom-color: #55688C;
}
.toggle-text[data-v-74c9e1df] {
  font-size: 14px;
  font-weight: 500;
  color: #555;
}
.toggle-icon[data-v-74c9e1df] {
  font-size: 12px;
  --fa-primary-color: #FC835A;
  --fa-secondary-color: #000;
}
.toggle-icon.swapped[data-v-74c9e1df] {
  --fa-primary-color: #000;
  --fa-secondary-color: #FC835A;
}
.list-content[data-v-74c9e1df] {
  max-height: calc(100% - 110px);
  overflow-y: auto;
  overflow-x: hidden;
  position: relative;
  z-index: 0;
  /* Additional containment */
  contain: layout style;
  transform: translateZ(0);
  width: 100%;
  box-sizing: border-box;
}
.list-item[data-v-74c9e1df] {
  display: flex;
  align-items: center;
  padding: 8px 12px;
  margin-bottom: 4px;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.2s ease;
  /* Prevent item overflow */
  contain: layout;
  width: 100%;
  box-sizing: border-box;
  max-width: 100%;
  word-wrap: break-word;
  overflow: hidden;
}
.list-item[data-v-74c9e1df]:last-child {
  margin-bottom: 0;
}
.list-item[data-v-74c9e1df]:hover {
  background-color: #55688C;
  color: white;
}
.list-item:hover .item-name[data-v-74c9e1df],
.list-item:hover .item-reference[data-v-74c9e1df] {
  color: white !important;
}
.clickable-item[data-v-74c9e1df] {
  transition: all 0.2s ease;
}
.clickable-item[data-v-74c9e1df]:hover {
  background-color: #55688C;
  color: white;
  transform: translateY(-1px);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.clickable-item:hover .item-name[data-v-74c9e1df],
.clickable-item:hover .item-reference[data-v-74c9e1df] {
  color: white !important;
}
.clickable-item.selected[data-v-74c9e1df] {
  background-color: #0043E5;
  color: white;
  border-left: none;
  box-shadow: 0 2px 8px rgba(0, 67, 229, 0.3);
}
.clickable-item.selected[data-v-74c9e1df]:hover {
  background-color: #2B50AA;
}
.item-info[data-v-74c9e1df] {
  display: flex;
  flex-direction: column;
  gap: 4px;
  width: 100%;
}
.item-name[data-v-74c9e1df] {
  font-weight: 600;
  font-size: 16px;
}
.item-reference[data-v-74c9e1df] {
  font-size: 16px;
  opacity: 0.8;
}
.clickable-item.selected .item-reference[data-v-74c9e1df] {
  opacity: 0.9;
}
.clickable-item.unavailable[data-v-74c9e1df] {
  opacity: 0.5;
  background-color: #f8f9fa;
  cursor: not-allowed;
}
.clickable-item.unavailable[data-v-74c9e1df]:hover {
  background-color: #55688C;
  color: white;
  transform: translateY(-1px);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.clickable-item.unavailable:hover .item-name[data-v-74c9e1df],
.clickable-item.unavailable:hover .item-reference[data-v-74c9e1df] {
  color: white !important;
}
.clickable-item.unavailable.selected[data-v-74c9e1df] {
  background-color: #6c757d;
  color: white;
}
.clickable-item.unavailable.selected[data-v-74c9e1df]:hover {
  background-color: #5a6268;
}
.availability-warning[data-v-74c9e1df] {
  font-size: 16px;
  color: #dc3545;
  font-style: italic;
  margin-top: 2px;
}
.list-section.error[data-v-74c9e1df] {
  border-color: #dc3545;
  box-shadow: 0 0 0 2px rgba(220, 53, 69, 0.25);
}
.error-message[data-v-74c9e1df] {
  color: #dc3545;
  font-size: 14px;
  position: absolute;
  bottom: 16px;
  left: 16px;
  right: 16px;
  display: block;
  z-index: 1;
  background: rgba(248, 249, 250, 0.95);
  padding: 4px 0;
  max-width: calc(100% - 32px);
  word-wrap: break-word;
}


.list-section[data-v-d3cbc38e] {
  flex: 1;
  min-width: 280px;
  height: 600px;
  background: #f8f9fa;
  border: 1px solid #dee2e6;
  border-radius: 8px;
  padding: 16px;
  font-family: 'Open Sans', sans-serif;
  position: relative;
}
.list-section h3[data-v-d3cbc38e] {
  margin: 0 0 16px 0;
  padding-bottom: 8px;
  border-bottom: 2px solid #FC835A;
  color: #333;
  font-size: 18px;
  font-weight: 600;
  font-family: 'Figtree', sans-serif;
}
.time-config-row[data-v-d3cbc38e] {
  display: flex;
  gap: 16px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}
.dropdown-group[data-v-d3cbc38e] {
  display: flex;
  flex-direction: column;
  min-width: 140px; /* Wider time zone dropdown */
}
.dropdown-group[data-v-d3cbc38e]:first-child {
  min-width: 100px; /* Wider start time dropdown */
}
.dropdown-group:first-child .time-dropdown[data-v-d3cbc38e] {
  min-width: 100px;
  width: 100px;
  padding: 6px 8px;
}
.dropdown-label[data-v-d3cbc38e] {
  font-size: 16px;
  font-weight: 500;
  color: #555;
  margin-bottom: 4px;
}
.time-dropdown[data-v-d3cbc38e] {
  padding: 6px 8px;
  border: 1px solid #ced4da;
  border-radius: 4px;
  font-size: 16px;
  background-color: white;
  cursor: pointer;
  min-width: 70px;
}
.time-dropdown[data-v-d3cbc38e]:focus {
  outline: none;
  border-color: #FC835A;
  box-shadow: 0 0 0 2px rgba(252, 131, 90, 0.25);
}
.list-content[data-v-d3cbc38e] {
  max-height: calc(100% - 120px);
  overflow-y: auto;
}
.time-slot-item[data-v-d3cbc38e] {
  display: flex;
  flex-direction: column;
  padding: 12px;
  margin-bottom: 8px;
  border: 1px solid #dee2e6;
  border-radius: 6px;
  background: white;
}
.time-slot-item[data-v-d3cbc38e]:hover {
  border-color: #FC835A;
  box-shadow: 0 2px 4px rgba(252, 131, 90, 0.1);
}
.day-info[data-v-d3cbc38e] {
  display: flex;
  flex-direction: column;
}
.day-name[data-v-d3cbc38e] {
  font-weight: 600;
  color: #333;
  font-size: 16px;
  margin-bottom: 2px;
}
.day-controls[data-v-d3cbc38e] {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.control-group[data-v-d3cbc38e] {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 120px;
  flex: 1;
}
.control-label[data-v-d3cbc38e] {
  font-size: 16px;
  font-weight: 500;
  color: #555;
  margin-bottom: 2px;
}
.volume-input[data-v-d3cbc38e] {
  padding: 6px 8px;
  border: 1px solid #ced4da;
  border-radius: 4px;
  font-size: 16px;
  width: 100%;
  box-sizing: border-box;
}
.volume-input[data-v-d3cbc38e]:focus {
  outline: none;
  border-color: #FC835A;
  box-shadow: 0 0 0 2px rgba(252, 131, 90, 0.25);
}
.allocation-select[data-v-d3cbc38e] {
  padding: 6px 8px;
  border: 1px solid #ced4da;
  border-radius: 4px;
  font-size: 16px;
  width: 100%;
  box-sizing: border-box;
  background-color: white;
  cursor: pointer;
}
.allocation-select[data-v-d3cbc38e]:focus {
  outline: none;
  border-color: #FC835A;
  box-shadow: 0 0 0 2px rgba(252, 131, 90, 0.25);
}
.volume-input.error[data-v-d3cbc38e],
.allocation-select.error[data-v-d3cbc38e] {
  border-color: #dc3545;
  box-shadow: 0 0 0 2px rgba(220, 53, 69, 0.25);
}
.error-message[data-v-d3cbc38e] {
  color: #dc3545;
  font-size: 14px;
  margin-top: 4px;
  display: block;
}


.form-actions[data-v-ff36a630] {
  margin-top: 30px;
  padding-top: 20px;
}
.validation-summary[data-v-ff36a630] {
  background-color: #f8d7da;
  border: 1px solid #f5c6cb;
  color: #721c24;
  padding: 16px;
  border-radius: 4px;
  margin-bottom: 20px;
}
.validation-summary h4[data-v-ff36a630] {
  margin: 0 0 10px 0;
  font-size: 16px;
  font-weight: 600;
}
.validation-summary ul[data-v-ff36a630] {
  margin: 0;
  padding-left: 20px;
}
.validation-summary li[data-v-ff36a630] {
  margin-bottom: 4px;
}
.button-group[data-v-ff36a630] {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.btn[data-v-ff36a630] {
  padding: 10px 20px;
  border: none;
  border-radius: 4px;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
  font-family: 'Open Sans', sans-serif;
}
.btn-primary[data-v-ff36a630] {
  background-color: #FC835A;
  color: black;
}
.btn-primary[data-v-ff36a630]:hover:not(:disabled) {
  background-color: #e6754f;
}
.btn-primary[data-v-ff36a630]:disabled {
  background-color: #ccc;
  cursor: not-allowed;
  opacity: 0.6;
}
.btn-secondary[data-v-ff36a630] {
  background-color: #6c757d;
  color: white;
}
.btn-secondary[data-v-ff36a630]:hover {
  background-color: #5a6268;
}


.alert[data-v-3144ae74] {
    padding: 12px 16px;
    margin-bottom: 20px;
    border: 1px solid transparent;
    border-radius: 4px;
    display: flex;
    align-items: center;
    gap: 8px;
    position: relative;
    animation: slideIn-3144ae74 0.3s ease-out;
    font-family: 'Open Sans', sans-serif;
}
@keyframes slideIn-3144ae74 {
from {
        opacity: 0;
        transform: translateY(-10px);
}
to {
        opacity: 1;
        transform: translateY(0);
}
}
.alert-success[data-v-3144ae74] {
    color: #155724;
    background-color: #d4edda;
    border-color: #c3e6cb;
}
.alert-danger[data-v-3144ae74] {
    color: #721c24;
    background-color: #f8d7da;
    border-color: #f5c6cb;
}
.alert-warning[data-v-3144ae74] {
    color: #856404;
    background-color: #fff3cd;
    border-color: #ffeaa7;
}
.alert-info[data-v-3144ae74] {
    color: #0c5460;
    background-color: #d1ecf1;
    border-color: #bee5eb;
}
.alert-icon[data-v-3144ae74] {
    flex-shrink: 0;
    font-weight: bold;
    font-size: 16px;
    width: 20px;
    text-align: center;
}
.alert-message[data-v-3144ae74] {
    flex: 1;
    font-size: 14px;
    line-height: 1.4;
}
.alert-dismiss[data-v-3144ae74] {
    flex-shrink: 0;
    background: none;
    border: none;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    padding: 0;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.2s ease;
    margin-left: auto;
}
.alert-dismiss[data-v-3144ae74]:hover {
    background-color: rgba(0, 0, 0, 0.1);
}
.alert-success .alert-dismiss[data-v-3144ae74]:hover {
    background-color: rgba(21, 87, 36, 0.1);
}
.alert-danger .alert-dismiss[data-v-3144ae74]:hover {
    background-color: rgba(114, 28, 36, 0.1);
}
.alert-warning .alert-dismiss[data-v-3144ae74]:hover {
    background-color: rgba(133, 100, 4, 0.1);
}
.alert-info .alert-dismiss[data-v-3144ae74]:hover {
    background-color: rgba(12, 84, 96, 0.1);
}


.shipping-mode-container[data-v-854b839c] {
  padding: 20px;
  max-width: 100%;
  width: 100%;
  margin: 0 auto;
  box-sizing: border-box;
  font-family: 'Open Sans', sans-serif;
}
.header-row[data-v-854b839c] {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
  position: relative;
  width: 100%;
}
.header-row .page-header[data-v-854b839c] {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  margin: 0;
}
.header-row .form-actions[data-v-854b839c] {
  margin-left: auto;
  margin-top: 0;
  padding-top: 0;
}
.page-header[data-v-854b839c] {
  font-size: 24px;
  font-weight: 600;
  color: #333;
  margin: 0 0 20px 0;
  font-family: 'Figtree', sans-serif;
  border: none;
  border-bottom: none;
  outline: none;
}
.lists-container[data-v-854b839c] {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  width: 100%;
  box-sizing: border-box;
}
.validation-summary h4[data-v-854b839c] {
  margin: 0 0 10px 0;
  font-size: 16px;
  font-weight: 600;
}
.validation-summary ul[data-v-854b839c] {
  margin: 0;
  padding-left: 20px;
}

/* Responsive behavior */
@media (max-width: 900px) {
.lists-container[data-v-854b839c] {
    flex-direction: column;
}
}
@media (max-width: 768px) {
.shipping-mode-container[data-v-854b839c] {
    padding: 15px;
}
.lists-container[data-v-854b839c] {
    gap: 15px;
}
}
@media (max-width: 480px) {
.shipping-mode-container[data-v-854b839c] {
    padding: 10px;
}
.lists-container[data-v-854b839c] {
    gap: 10px;
}
}
.error-state[data-v-854b839c] {
  padding: 20px;
  margin: 20px 0;
  text-align: center;
}


/*# sourceMappingURL=Scripts-D_MQzFeQ.css.map*/