.landscape-button__simulate-button {
    margin-top: 22px;
    margin-bottom: 20px;
    width: 100%;
  }

  .landscape-card__body {
    display: flex;
    justify-content: space-around;
    align-content: center;
}

  .landscape-card__form {
    flex-grow: 2;
    flex-shrink: 0;
    border-right: solid 1px #c3c8d2;
    width: 55%;
    padding: 32px 32px 0px 32px;
  }

  .landscape-card__result {
    flex-grow: 1;
    flex-shrink: 0;
    width: 25%;
    padding: 32px 32px 0px 32px;
  }

.result {
  font-family: Roboto, sans-serif;
  font-size: 15px;
}

  .result-gross-value {
    display: flex;
    justify-content: space-between;
  }

  .result-gross-value__label {
    text-align: left;
  }

  .result-gross-value__data {
    text-align: right;
  }

  .result-fee {
    display: flex;
    justify-content: space-between;
  }

  .result-fee__label {
    text-align: left;
    color: #e74c3c;
  }

  .result-fee__data {
    text-align: right;
    color: #e74c3c;
  }

  .result-net-value {
    display: flex;
    justify-content: space-between;
    font-weight: bold;
    border-top: solid 1px #c3c8d2;
  }

  .result-net-value__label {
    text-align: left;
    margin-bottom: 0;
  }

  .result-net-value__data {
    text-align: right;
    margin-bottom: 0;
  }

  .result__explanation{
    color: #c3c8d2;
    font-style: italic;
    font-size: 12px;
  }

  sling-form {
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
    grid-gap: 16px;
  }

  sling-input[name="salesAmount"] {
    grid-column: 1 / 9;
  }

  sling-select[name="cardBrandId"] {
    grid-column: 1 / 4;
  }

  sling-select[name="trxProfileId"] {
    grid-column: 4 / 9;
  }


