/**
 * Flex Grid -
 * Version: 0.3.5
 *
 * Simple grid built with flex box and sass.
 *
 * Matthew Simo - matthew.a.simo@gmail.com
 */
/**
 * Grid setup
 *
 * The grid will calculate dimensions based on these two variables:
 * $fg-columns will inform the grid loops how many columns there should be.
 * $fg-gutter will inform the grid loops how big eac column's gutters should be.
 *
 * The grid will name columns, rows, offsets based on these three variables:
 * $fg-class-row string used for the row class
 * $fg-class-col string used for the column class
 * $fg-class-off string used for the offset class
 */
/**
 * Break point namespace object
 *
 * Set the default namespace object with these defaults with the
 * understanding that you can pass in whatever you might require for your site.
 *
 * $fg-breakpoints is a Sass list with nested lists inside. Each sub list defines two things.
 * 1. The namespace for that breakpoint. (Required) (i.e. xs, sm, md, lg)
 * 2. The min-width measurement for the breakpoint for that namespace. (i.e. 48em, 62em, 75em)
 *
 * Note: These should be in the proper order (at least till libsass handles map keys properly).
 *
 * Note: If the measurement is left out then it will be skipped when generating
 * the grid and applied to global styles.
 *
 */
/**
 * Class Name Defaults
 *
 * Define class names for columns, rows and offsets in case compatibility with other
 * libraries is necessary.


/**
 * Calculate column size percentage
 */
/**
 * Spacing mixin to create uniform margin/padding
 */
/**
 * Row wrapper class, flex box parent.
 */
.row {
  box-sizing: border-box;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  margin-left: -0.5rem;
  margin-right: -0.5rem;
}

.col-lg-12, .col-lg-11, .col-lg-10, .col-lg-9, .col-lg-8, .col-lg-7, .col-lg-6, .col-lg-5, .col-lg-4, .col-lg-3, .col-lg-2, .col-lg-1, .col-md-12, .col-md-11, .col-md-10, .col-md-9, .col-md-8, .col-md-7, .col-md-6, .col-md-5, .col-md-4, .col-md-3, .col-md-2, .col-md-1, .col-sm-12, .col-sm-11, .col-sm-10, .col-sm-9, .col-sm-8, .col-sm-7, .col-sm-6, .col-sm-5, .col-sm-4, .col-sm-3, .col-sm-2, .col-sm-1, .col-xs-12, .col-xs-11, .col-xs-10, .col-xs-9, .col-xs-8, .col-xs-7, .col-xs-6, .col-xs-5, .col-xs-4, .col-xs-3, .col-xs-2, .col-xs-1, .col-lg, .col-md, .col-sm, .col-xs {
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  flex-grow: 0;
  flex-shrink: 0;
  min-height: 1px;
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}

.col-lg, .col-md, .col-sm, .col-xs {
  flex-grow: 1;
  flex-basis: 0;
  max-width: 100%;
}

/**
 * Generate a set of grid column classes using a namespace
 *
 * .col-[namespace] for intelligent column division
 * .col-[namespace]-[number] for a column that covers a specific number of columns (e.g. 1-12 by default)
 * .off-[namespace]-[number] for pushing a col a specific number of columns (e.g. 1-11 by default)
 * .off-[namespace]-reset for resetting a col's offset for that and larger namespaces
 */
/**
 * Build the grid in two steps, to help minimize file size
 * Step 1, for each namespace, create the grid-base
 * Step 2, for each namespace, wrap the col width/offset measurements in their breakpoint media query
 */
.col-xs-1 {
  flex-basis: 8.3333333333%;
  max-width: 8.3333333333%;
}

.col-xs-2 {
  flex-basis: 16.6666666667%;
  max-width: 16.6666666667%;
}

.col-xs-3 {
  flex-basis: 25%;
  max-width: 25%;
}

.col-xs-4 {
  flex-basis: 33.3333333333%;
  max-width: 33.3333333333%;
}

.col-xs-5 {
  flex-basis: 41.6666666667%;
  max-width: 41.6666666667%;
}

.col-xs-6 {
  flex-basis: 50%;
  max-width: 50%;
}

.col-xs-7 {
  flex-basis: 58.3333333333%;
  max-width: 58.3333333333%;
}

.col-xs-8 {
  flex-basis: 66.6666666667%;
  max-width: 66.6666666667%;
}

.col-xs-9 {
  flex-basis: 75%;
  max-width: 75%;
}

.col-xs-10 {
  flex-basis: 83.3333333333%;
  max-width: 83.3333333333%;
}

.col-xs-11 {
  flex-basis: 91.6666666667%;
  max-width: 91.6666666667%;
}

.col-xs-12 {
  flex-basis: 100%;
  max-width: 100%;
}

.off-xs-1 {
  margin-left: 8.3333333333%;
}

.off-xs-2 {
  margin-left: 16.6666666667%;
}

.off-xs-3 {
  margin-left: 25%;
}

.off-xs-4 {
  margin-left: 33.3333333333%;
}

.off-xs-5 {
  margin-left: 41.6666666667%;
}

.off-xs-6 {
  margin-left: 50%;
}

.off-xs-7 {
  margin-left: 58.3333333333%;
}

.off-xs-8 {
  margin-left: 66.6666666667%;
}

.off-xs-9 {
  margin-left: 75%;
}

.off-xs-10 {
  margin-left: 83.3333333333%;
}

.off-xs-11 {
  margin-left: 91.6666666667%;
}

.off-xs-reset {
  margin-left: 0;
}

@media only screen and (min-width: 768px) {
  .col-sm-1 {
    flex-basis: 8.3333333333%;
    max-width: 8.3333333333%;
  }

  .col-sm-2 {
    flex-basis: 16.6666666667%;
    max-width: 16.6666666667%;
  }

  .col-sm-3 {
    flex-basis: 25%;
    max-width: 25%;
  }

  .col-sm-4 {
    flex-basis: 33.3333333333%;
    max-width: 33.3333333333%;
  }

  .col-sm-5 {
    flex-basis: 41.6666666667%;
    max-width: 41.6666666667%;
  }

  .col-sm-6 {
    flex-basis: 50%;
    max-width: 50%;
  }

  .col-sm-7 {
    flex-basis: 58.3333333333%;
    max-width: 58.3333333333%;
  }

  .col-sm-8 {
    flex-basis: 66.6666666667%;
    max-width: 66.6666666667%;
  }

  .col-sm-9 {
    flex-basis: 75%;
    max-width: 75%;
  }

  .col-sm-10 {
    flex-basis: 83.3333333333%;
    max-width: 83.3333333333%;
  }

  .col-sm-11 {
    flex-basis: 91.6666666667%;
    max-width: 91.6666666667%;
  }

  .col-sm-12 {
    flex-basis: 100%;
    max-width: 100%;
  }

  .off-sm-1 {
    margin-left: 8.3333333333%;
  }

  .off-sm-2 {
    margin-left: 16.6666666667%;
  }

  .off-sm-3 {
    margin-left: 25%;
  }

  .off-sm-4 {
    margin-left: 33.3333333333%;
  }

  .off-sm-5 {
    margin-left: 41.6666666667%;
  }

  .off-sm-6 {
    margin-left: 50%;
  }

  .off-sm-7 {
    margin-left: 58.3333333333%;
  }

  .off-sm-8 {
    margin-left: 66.6666666667%;
  }

  .off-sm-9 {
    margin-left: 75%;
  }

  .off-sm-10 {
    margin-left: 83.3333333333%;
  }

  .off-sm-11 {
    margin-left: 91.6666666667%;
  }

  .off-sm-reset {
    margin-left: 0;
  }
}
@media only screen and (min-width: 992px) {
  .col-md-1 {
    flex-basis: 8.3333333333%;
    max-width: 8.3333333333%;
  }

  .col-md-2 {
    flex-basis: 16.6666666667%;
    max-width: 16.6666666667%;
  }

  .col-md-3 {
    flex-basis: 25%;
    max-width: 25%;
  }

  .col-md-4 {
    flex-basis: 33.3333333333%;
    max-width: 33.3333333333%;
  }

  .col-md-5 {
    flex-basis: 41.6666666667%;
    max-width: 41.6666666667%;
  }

  .col-md-6 {
    flex-basis: 50%;
    max-width: 50%;
  }

  .col-md-7 {
    flex-basis: 58.3333333333%;
    max-width: 58.3333333333%;
  }

  .col-md-8 {
    flex-basis: 66.6666666667%;
    max-width: 66.6666666667%;
  }

  .col-md-9 {
    flex-basis: 75%;
    max-width: 75%;
  }

  .col-md-10 {
    flex-basis: 83.3333333333%;
    max-width: 83.3333333333%;
  }

  .col-md-11 {
    flex-basis: 91.6666666667%;
    max-width: 91.6666666667%;
  }

  .col-md-12 {
    flex-basis: 100%;
    max-width: 100%;
  }

  .off-md-1 {
    margin-left: 8.3333333333%;
  }

  .off-md-2 {
    margin-left: 16.6666666667%;
  }

  .off-md-3 {
    margin-left: 25%;
  }

  .off-md-4 {
    margin-left: 33.3333333333%;
  }

  .off-md-5 {
    margin-left: 41.6666666667%;
  }

  .off-md-6 {
    margin-left: 50%;
  }

  .off-md-7 {
    margin-left: 58.3333333333%;
  }

  .off-md-8 {
    margin-left: 66.6666666667%;
  }

  .off-md-9 {
    margin-left: 75%;
  }

  .off-md-10 {
    margin-left: 83.3333333333%;
  }

  .off-md-11 {
    margin-left: 91.6666666667%;
  }

  .off-md-reset {
    margin-left: 0;
  }
}
@media only screen and (min-width: 1200px) {
  .col-lg-1 {
    flex-basis: 8.3333333333%;
    max-width: 8.3333333333%;
  }

  .col-lg-2 {
    flex-basis: 16.6666666667%;
    max-width: 16.6666666667%;
  }

  .col-lg-3 {
    flex-basis: 25%;
    max-width: 25%;
  }

  .col-lg-4 {
    flex-basis: 33.3333333333%;
    max-width: 33.3333333333%;
  }

  .col-lg-5 {
    flex-basis: 41.6666666667%;
    max-width: 41.6666666667%;
  }

  .col-lg-6 {
    flex-basis: 50%;
    max-width: 50%;
  }

  .col-lg-7 {
    flex-basis: 58.3333333333%;
    max-width: 58.3333333333%;
  }

  .col-lg-8 {
    flex-basis: 66.6666666667%;
    max-width: 66.6666666667%;
  }

  .col-lg-9 {
    flex-basis: 75%;
    max-width: 75%;
  }

  .col-lg-10 {
    flex-basis: 83.3333333333%;
    max-width: 83.3333333333%;
  }

  .col-lg-11 {
    flex-basis: 91.6666666667%;
    max-width: 91.6666666667%;
  }

  .col-lg-12 {
    flex-basis: 100%;
    max-width: 100%;
  }

  .off-lg-1 {
    margin-left: 8.3333333333%;
  }

  .off-lg-2 {
    margin-left: 16.6666666667%;
  }

  .off-lg-3 {
    margin-left: 25%;
  }

  .off-lg-4 {
    margin-left: 33.3333333333%;
  }

  .off-lg-5 {
    margin-left: 41.6666666667%;
  }

  .off-lg-6 {
    margin-left: 50%;
  }

  .off-lg-7 {
    margin-left: 58.3333333333%;
  }

  .off-lg-8 {
    margin-left: 66.6666666667%;
  }

  .off-lg-9 {
    margin-left: 75%;
  }

  .off-lg-10 {
    margin-left: 83.3333333333%;
  }

  .off-lg-11 {
    margin-left: 91.6666666667%;
  }

  .off-lg-reset {
    margin-left: 0;
  }
}
.flex-center {
  -webkit-justify-content: center !important;
  justify-content: center !important;
  -webkit-align-items: center !important;
  align-items: center !important;
}

.flex-center__x {
  -webkit-justify-content: center !important;
  justify-content: center !important;
}

.flex-center__y {
  -webkit-align-items: center !important;
  align-items: center !important;
}

.flex-column__lg, .flex-column__md, .flex-column__sm {
  display: none !important;
}

.flex-column {
  -webkit-flex-direction: column;
  flex-direction: column;
}

@media (max-width: 48em) {
  .flex-column__xs {
    -webkit-flex-direction: column;
    flex-direction: column;
  }
}
@media (min-width: 48em) and (max-width: 64em) {
  .flex-column__sm {
    -webkit-flex-direction: column;
    flex-direction: column;
  }
}
@media (min-width: 64em) and (max-width: 75em) {
  .flex-column__md {
    -webkit-flex-direction: column;
    flex-direction: column;
  }
}
@media (min-width: 75em) {
  .flex-column__lg {
    -webkit-flex-direction: column;
    flex-direction: column;
  }
}
@media (max-width: 48em) {
  .hidden-xs {
    display: none !important;
  }
}
@media (min-width: 48em) and (max-width: 64em) {
  .hidden-sm {
    display: none !important;
  }
}
@media (min-width: 64em) and (max-width: 75em) {
  .hidden-md {
    display: none !important;
  }
}
@media (min-width: 75em) {
  .hidden-lg {
    display: none !important;
  }
}
.visible-xs-block {
  display: none !important;
}

@media (max-width: 48em) {
  .visible-xs-block {
    display: block !important;
  }
}
.visible-sm-block {
  display: none !important;
}

@media (min-width: 48em) and (max-width: 64em) {
  .visible-sm-block {
    display: block !important;
  }
}
.visible-md-block {
  display: none !important;
}

@media (min-width: 64em) and (max-width: 75em) {
  .visible-md-block {
    display: block !important;
  }
}
.visible-lg-block {
  display: none !important;
}

@media (min-width: 75em) {
  .visible-lg-block {
    display: block !important;
  }
}
.visible-xs-inline-block {
  display: none !important;
}

@media (max-width: 48em) {
  .visible-xs-inline-block {
    display: inline-block !important;
  }
}
.visible-sm-inline-block {
  display: none !important;
}

@media (min-width: 48em) and (max-width: 64em) {
  .visible-sm-inline-block {
    display: inline-block !important;
  }
}
.visible-md-inline-block {
  display: none !important;
}

@media (min-width: 64em) and (max-width: 75em) {
  .visible-md-inline-block {
    display: inline-block !important;
  }
}
.visible-lg-inline-block {
  display: none !important;
}

@media (min-width: 75em) {
  .visible-lg-inline-block {
    display: inline-block !important;
  }
}
.visible-xs-inline {
  display: none !important;
}

@media (max-width: 48em) {
  .visible-xs-inline {
    display: inline !important;
  }
}
.visible-sm-inline {
  display: none !important;
}

@media (min-width: 48em) and (max-width: 64em) {
  .visible-sm-inline {
    display: inline !important;
  }
}
.visible-md-inline {
  display: none !important;
}

@media (min-width: 64em) and (max-width: 75em) {
  .visible-md-inline {
    display: inline !important;
  }
}
.visible-lg-inline {
  display: none !important;
}

@media (min-width: 75em) {
  .visible-lg-inline {
    display: inline !important;
  }
}
.visible-xs {
  display: none !important;
}

@media (max-width: 48em) {
  .visible-xs {
    display: -webkit-flex !important;
    display: flex !important;
  }
}
.visible-sm {
  display: none !important;
}

@media (min-width: 48em) and (max-width: 64em) {
  .visible-sm {
    display: -webkit-flex !important;
    display: flex !important;
  }
}
.visible-md {
  display: none !important;
}

@media (min-width: 64em) and (max-width: 75em) {
  .visible-md {
    display: -webkit-flex !important;
    display: flex !important;
  }
}
.visible-lg {
  display: none !important;
}

@media (min-width: 75em) {
  .visible-lg {
    display: -webkit-flex !important;
    display: flex !important;
  }
}
.suspensionBox {
  background-color: red;
}

.margintop40 {
  margin-top: 40px !important;
}

.todo {
  background-color: red;
  font-size: 20px;
  color: black;
}

.shaded-box {
  padding: 20px 30px;
  background-color: #ecefee;
}

.factsheet {
  font-family: "Montserrat", Arial, sans-serif;
}
.factsheet * {
  font-family: "Montserrat", Arial, sans-serif;
}
.factsheet > row {
  margin-top: 40px;
}
.factsheet .fitimg.centerimg {
  margin: 0 auto;
}
.factsheet .fitimg img {
  width: 100%;
  max-width: 1000px;
  height: auto;
}
.factsheet .hc2greyblock {
  background-color: transparent;
  white-space: break-spaces;
  width: 120px;
  z-index: 0;
  padding: 5px;
}
.factsheet table.fact_numbers {
  background-color: unset;
  font-size: 110%;
}
.factsheet table.fact_numbers thead th {
  background-color: unset;
  font-size: 12pt;
}
.factsheet table.fact_numbers thead th img {
  display: block;
  width: auto;
  max-height: 50px;
}
.factsheet table.fact_numbers tbody tr th {
  padding-top: 20px;
}
.factsheet table.fact_numbers th, .factsheet table.fact_numbers td {
  background-color: unset;
  border-width: 0;
}
.factsheet table.fact_numbers tr th {
  margin: auto 0;
}
.factsheet table.fact_numbers tr td {
  font-size: 30pt;
  font-weight: 900;
}
.factsheet table.fact_numbers tr.td_gradual_blue {
  color: #00afba;
}
.factsheet table.fact_numbers tr.td_gradual_black {
  color: #788288;
}
.factsheet table.fact_numbers tr.td_gradual_grey {
  color: #a6b1b8;
}
.factsheet table.fact_numbers tr, .factsheet table.fact_numbers col {
  transition: all 0.3s;
}
.factsheet table.fact_numbers col.hover {
  background-color: rgba(0, 140, 203, 0.2);
}
@media (max-width: 48em) {
  .factsheet table.fact_numbers thead tr th {
    font-size: 9px;
  }
  .factsheet table.fact_numbers tbody tr th {
    font-size: 12px;
    padding-top: 2px;
  }
  .factsheet table.fact_numbers tr th, .factsheet table.fact_numbers tr td {
    padding: 2px 4px;
    text-align: center;
    vertical-align: middle;
  }
  .factsheet table.fact_numbers tr td {
    font-size: 20px;
  }
}
.factsheet h2 {
  font-size: 2.2em;
}
.factsheet h3 {
  font-size: 1.8em;
}
.factsheet p {
  padding-bottom: 5px;
  margin-top: 5px;
  margin-bottom: 5px;
}
.factsheet p:first-of-type {
  margin-top: 18px;
}
.factsheet p:last-of-type {
  padding-bottom: 20px;
  margin-bottom: 18px;
}
.factsheet ul.black_diamond {
  list-style: none;
  margin: 0;
  padding-left: 0;
}
.factsheet ul.black_diamond li {
  padding-bottom: 8px;
  padding-left: 1.2em;
  text-indent: -1.2em;
}
.factsheet ul.black_diamond li:before {
  background-image: url(/sites/all/themes/ota/img/bullet-triangle.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position-y: 5px;
  width: 30px;
  content: " ";
  margin-right: 10px;
  padding-right: 10px;
  height: 30px;
  color: #ad0874;
}
.factsheet ul.black_diamond.nospacing li {
  padding-bottom: 0;
}
.factsheet .fact_bignumber {
  white-space: nowrap;
  overflow: hidden;
  font-size: 44pt;
  font-family: "Montserrat", Arial, sans-serif;
  font-weight: 900;
}
.factsheet .fact_bigthinnumber {
  white-space: nowrap;
  overflow: hidden;
  font-size: 44pt;
  font-family: "Montserrat", Arial, sans-serif;
  font-weight: 100;
}
.factsheet .text_lightgrey {
  color: #ddd;
}
.factsheet .text_bold {
  font-weight: bold;
}
.factsheet .text_boldest {
  font-weight: 900;
}
.factsheet .text_grey {
  color: #aaa;
}
.factsheet .text_pink {
  color: #ad0874;
}
.factsheet .text_rose {
  color: #f592bb;
}
.factsheet .text_candy {
  color: #ec0089;
}
.factsheet .text_darkpink, .factsheet .text_magenta {
  color: #ae0774;
}
.factsheet .text_green {
  color: #064d32;
}
.factsheet .text_darkmagenta {
  color: #630740;
}
.factsheet .text_aqua {
  color: #00afba;
}
.factsheet .text_blue {
  color: #1e384b;
}
.factsheet .text_lightblue {
  color: #0070c0;
}
.factsheet .text_centre {
  text-align: center;
}
.factsheet .text_centre span, .factsheet .text_centre p, .factsheet .text_centre h2, .factsheet .text_centre h3, .factsheet .text_centre h4, .factsheet .text_centre h5, .factsheet .text_centre h6 {
  text-align: center;
}
.factsheet .bold_grey, .factsheet .bold_white, .factsheet .bold_pink, .factsheet .bold_candy, .factsheet .bold_aqua, .factsheet .bold_magenta {
  margin: 6px auto 0 0;
  padding: 4px 8px;
  color: black;
  font-weight: 900;
}
.factsheet .bold_grey {
  background-color: #ddd;
}
.factsheet .bold_white {
  background-color: white;
}
.factsheet .bold_candy {
  background-color: #ec0089;
  color: white;
}
.factsheet .bold_aqua {
  background-color: #00afba;
  color: white;
}
.factsheet .bold_magenta {
  background-color: #ae0774;
  color: white;
}
.factsheet .fill_magenta {
  fill: #ae0774;
}
.factsheet .fill_pink {
  fill: #ad0874;
}
.factsheet .vertical_center {
  vertical-align: middle;
}

.border_bottom_pink {
  border-bottom-color: #ad0874;
  border-bottom-width: 6px;
  border-bottom-style: solid;
  border-bottom-left-radius: 6px;
  border-bottom-right-radius: 6px;
}

.border_bottom_dark {
  border-bottom-color: #ddd;
  border-bottom-width: 6px;
  border-bottom-style: solid;
  border-bottom-left-radius: 6px;
  border-bottom-right-radius: 6px;
}

.border_left_dark {
  border-left-color: #ddd;
  border-left-width: 6px;
  border-left-style: solid;
}

.border_sandwich_black {
  border-color: black;
  border-width: 1px 0 0 0;
  border-style: solid;
  border-radius: 0;
  margin-top: 40px;
}
.border_sandwich_black h4 {
  margin-top: 10px !important;
}
.border_sandwich_black .bold_magenta {
  margin-top: 12px !important;
}

#toTopBtn {
  display: none;
  /* Hidden by default */
  position: fixed;
  /* Fixed/sticky position */
  bottom: 20px;
  /* Place the button at the bottom of the page */
  right: 30px;
  /* Place the button 30px from the right */
  z-index: 99;
  /* Make sure it does not overlap */
  border: none;
  /* Remove borders */
  outline: none;
  /* Remove outline */
  background-color: #ae0774;
  /* Set a background color */
  color: white;
  /* Text color */
  font-weight: bold;
  cursor: pointer;
  /* Add a mouse pointer on hover */
  padding: 15px;
  /* Some padding */
  border-radius: 10px;
  /* Rounded corners */
  font-size: 18px;
  /* Increase font size */
}
#toTopBtn:hover {
  background-color: #555;
  /* Add a dark-grey background on hover */
}

.sr-only:not(:focus):not(:active) {
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  height: 1px;
  overflow: hidden;
  position: absolute;
  white-space: nowrap;
  width: 1px;
}

/*# sourceMappingURL=factsheets.css.map */
