.sales-sdk-add-toast-wrap {
  width: 190px;
  text-align: center;

  .sales-sdk-add-toast-title {
    font-weight: 600;
    margin-bottom: 4px;
  }

  .sales-sdk-add-toast-quantity {
    opacity: 0.85;
  }
}

.sales-sdk-add-toast-host {
  position: fixed;
  z-index: 1100;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  user-select: none;
  visibility: hidden;
  opacity: 0;
  contain: layout paint style;
  transition:
    opacity 100ms ease,
    visibility 0s linear 100ms;

  .sales-sdk-add-toast-host-panel {
    box-sizing: border-box;
    min-width: 190px;
    max-width: 201px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 32px 12px;
    border-radius: 8px;
    overflow: hidden;
    color: #fff;
    background: rgba(0, 0, 0, 0.8);
    transform: scale(0.97);
    transition: transform 100ms ease;
  }

  .sales-sdk-add-toast-host-icon-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 11px;
  }

  .sales-sdk-add-toast-host-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 50px;
  }

  .sales-sdk-add-toast-wrap {
    font-size: 20px;
    line-height: 1.5;
  }
}

.sales-sdk-add-toast-host-visible {
  visibility: visible;
  opacity: 1;
  transition: opacity 100ms ease;

  .sales-sdk-add-toast-host-panel {
    transform: scale(1);
  }
}
