.store-amount {
  position: relative;
  overflow: visible;
  display: flex;
  flex-wrap: wrap;
}
.store-amount:has(.store-amount-dropdown) .store-amount__value {
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  tap-highlight-color: transparent;
}
.store-amount--amount {
  border-bottom: 1px dotted var(--stroke-primary);
}
.store-amount__store {
  word-break: break-word;
}
.store-amount-dropdown {
  position: static;
}
.crm-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 9999;
  align-items: center;
  justify-content: center;
}

.crm-modal-content {
  position: relative;
  background-color: #fff;
  border-radius: 8px;
}

.crm-modal-close {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
  z-index: 10;
  transition: color 0.3s ease;
}

.crm-modal-close:hover {
  color: #ff0000;
}

.crm-modal-body {
  padding: 20px;
}

.request-product-btn {
  cursor: pointer;
  color: var(--primary);
  text-decoration: underline;
  font-weight: 500;
}

.request-product-btn:hover {
  color: var(--primary-hover);
}

