@import '~@ripedata/components/src/common';

.apptt {
  &-base {
    @extend %text-chart;
    background: #EBF5FB;
    border-radius: 2px;
    pointer-events: none;
    padding: 12px;
  }

  /* CHOOSE SIZE */

  &-small {
    width: 125px;
  }

  &-standard {
    width: 200px;
  }

  &-wide {
    width: 300px;
  }

  /* SPACING */

  &-topMargin {
    margin-top: 20px;
  }

  &-bottomMargin {
    margin-bottom: 20px;
  }

  /* ADDITIONAL FORMATS */

  &-title {
    @extend %text-chart-title;
    margin-bottom: 10px;
  }

  &-large {
    font-family: 'Open Sans', sans-serif;
    font-size: 11px;
    color: $color-black;
  }

  &-super-title {
    @extend %text-chart-title;
    margin-bottom: 10px;
    text-transform: uppercase;
  }

  &-emph {
    font-family: 'Open Sans', sans-serif;
    font-size: 11px;
    font-weight: 600;
    color: $color-black;
  }

  &-note{
    font-style: italic;
  }

  /* TABLES*/
  &-table {
    @extend %text-chart;
    border-spacing: 0;
    table-layout: auto;
    width: 100%;

    &-header td {
      @extend %text-chart-title;
      border-bottom: 2px solid $color-turquoise;
    }

    td {
      padding-left: 10px;
      padding-right: 10px;
      vertical-align: top;
    }


  }


}
