// Upsell modal
.vex.vex-theme-plain.adt-pfp-upsell-modal {

  .vex-content {
    border-radius: 8px;
  }

  img {
    max-width: 100%;
    height: 80px;
  }

  h3 {
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
    font-size: 18px;
  }

  p {
    margin-top: 0.5rem;
    margin-bottom: 1rem;

    font-size: 14px;
  }

  .vex-dialog-buttons{
    .vex-dialog-button {
      border-radius: 8px;
      @apply adt-tw-bg-primary adt-tw-text-white;
      background-color: var(--adt-primary-color);
      color: var(--adt-white-color);

      &:hover {
        @apply adt-tw-bg-primary-dark;
        @apply adt-tw-text-white;
      }
    }
  }
}

// Upsel Notice
.adt-upsell-notice {
  margin: 5px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 15px;
  background: #f5fcfc;
  border: 1px solid #f0f0f0;
  border-left: 3px solid #1693a7;

  .adt-upsell-notice-content {
    display: flex;
    flex-direction: column;

    .title {
      font-weight: 700;
      text-transform: uppercase;
      font-size: 12px;
    }

    .text {
      font-size: 12px;
    }
  }

  .adt-upsell-notice-button {
    display: flex;
  }
}

// Custom refresh interval upsell
.adt-custom-refresh-interval-container {
  display: flex;
  flex-direction: column;
  gap: 10px;

  .adt-custom-refresh-interval-options-group {
    display: flex;
    flex-direction: column;
    gap: 5px;
    border-top: 1px solid #ccc;
    padding-top: 10px;

    label {
      font-weight: bold;
    }
  }
}
