/**
 * @fileOverview Activity contains styles for activity section
 * @name activity
 * @author nnursalim, mdaveshah, dquock, swesthafer
 * @tested browsers Chrome 25+, FF 19+
 */
/**
 * @fileOverview Variables contains variables
 * @name Variables
 * @author hdoan, mdaveshah, ziliu
 * @tested browsers FF 12, Chrome 18, Safari 5 on Mac
 */
/* Font sizes */
/* Inputs */
/** old styles **/
/****************/
/* Colors */
/* button colors */
/* New color variables from Adam Dustan's Patterns sheet: https://ebay.box.com/s/apis0xukrp25jzdvjyky */
/* engagement module colors, named via http://chir.ag/projects/name-that-color */
/* info / warning icon colors */
/* generic colors for colors except text like box-border, shadow, background */
/* card colors */
/* textColor for all the colors of text */
/* font weights */
/* Z-index list */
/* user for a bird's eye view of components based on z-axis */
/* for example, if you want to put a button in header, just assign z-index of that button to @zindexHeader */
/* these will overwrite the bootstrap pre defined variables */
/* TODO: check the clean the non-needed modal styles in bootstrap */
/* the same as bootstrap one, just overwrite */
/* Setting for Sidepanel */
/* This is not used by all side panels, only for the default one */
/* what about larger phones like gs3? what about phablets like the note?
/* responsive breakpoints */
/* borders */
/* Image Paths */
/* Image URIs */
/* Navigation */
/* Activity */
/* send money */
/* data uri for notification */
/* wallet */
/* transfer landing page */
/* shop static landing page */
/* feedback icon */
.clearfix {
  *zoom: 1;
}
.clearfix:before,
.clearfix:after {
  display: table;
  content: "";
  line-height: 0;
}
.clearfix:after {
  clear: both;
}
/*!
 * Datepicker for Bootstrap
 *
 * Copyright 2012 Stefan Petre
 * Improvements by Andrew Rowls
 * Licensed under the Apache License v2.0
 * http://www.apache.org/licenses/LICENSE-2.0
 *
 */
.datepicker {
  padding: 4px;
  border-radius: 4px;
  direction: ltr;
  /*.dow {
    border-top: 1px solid #ddd !important;
  }*/
}
.datepicker-inline {
  width: 220px;
}
.datepicker.datepicker-rtl {
  direction: rtl;
}
.datepicker.datepicker-rtl table tr td span {
  float: right;
}
.datepicker-dropdown {
  top: 0;
  left: 0;
}
.datepicker-dropdown:before {
  content: '';
  display: inline-block;
  border-left: 7px solid transparent;
  border-right: 7px solid transparent;
  border-bottom: 7px solid #ccc;
  border-top: 0;
  border-bottom-color: rgba(0, 0, 0, 0.2);
  position: absolute;
}
.datepicker-dropdown:after {
  content: '';
  display: inline-block;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-bottom: 6px solid #ffffff;
  border-top: 0;
  position: absolute;
}
.datepicker-dropdown.datepicker-orient-left:before {
  left: 6px;
}
.datepicker-dropdown.datepicker-orient-left:after {
  left: 7px;
}
.datepicker-dropdown.datepicker-orient-right:before {
  right: 6px;
}
.datepicker-dropdown.datepicker-orient-right:after {
  right: 7px;
}
.datepicker-dropdown.datepicker-orient-top:before {
  top: -7px;
}
.datepicker-dropdown.datepicker-orient-top:after {
  top: -6px;
}
.datepicker-dropdown.datepicker-orient-bottom:before {
  bottom: -7px;
  border-bottom: 0;
  border-top: 7px solid #999;
}
.datepicker-dropdown.datepicker-orient-bottom:after {
  bottom: -6px;
  border-bottom: 0;
  border-top: 6px solid #ffffff;
}
.datepicker > div {
  display: none;
}
.datepicker.days div.datepicker-days {
  display: block;
}
.datepicker.months div.datepicker-months {
  display: block;
}
.datepicker.years div.datepicker-years {
  display: block;
}
.datepicker table {
  margin: 0;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.datepicker td,
.datepicker th {
  text-align: center;
  width: 20px;
  height: 20px;
  border-radius: 4px;
  border: none;
}
.table-striped .datepicker table tr td,
.table-striped .datepicker table tr th {
  background-color: transparent;
}
.datepicker table tr td.day:hover {
  background: #eeeeee;
  cursor: pointer;
}
.datepicker table tr td.old,
.datepicker table tr td.new {
  color: #999999;
}
.datepicker table tr td.disabled,
.datepicker table tr td.disabled:hover {
  background: none;
  color: #999999;
  cursor: default;
}
.datepicker table tr td.today,
.datepicker table tr td.today:hover,
.datepicker table tr td.today.disabled,
.datepicker table tr td.today.disabled:hover {
  color: #ffffff;
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
  background-color: #e9f981;
  background: -moz-linear-gradient(center bottom, #f9e181 0%, #f9e181 20%, #e9f981 100%);
  /* FF3.6+ */
  background: -webkit-gradient(linear, left bottom, left top, color-stop(0%, #f9e181), color-stop(20%, #f9e181), color-stop(100%, #e9f981));
  /* Chrome,Safari4+ */
  background: -webkit-linear-gradient(bottom, #f9e181 0%, #f9e181 20%, #e9f981 100%);
  /* Chrome10+,Safari5.1+ */
  background: -ms-linear-gradient(bottom, #f9e181 0%, #f9e181 20%, #e9f981 100%);
  /* IE10+ */
  background: -o-linear-gradient(bottom, #f9e181 0%, #f9e181 20%, #e9f981 100%);
  /* Opera 11.10+ */
  background: linear-gradient(bottom, #f9e181 0%, #f9e181 20%, #e9f981 100%);
  /* W3C */
  border-color: #0079c1 #00588b #004b77;
  -webkit-box-shadow: 0 1px #4dbeff inset;
  box-shadow: 0 1px #4dbeff inset;
  *background-color: #e9f981;
  /* Darken IE7 buttons by default so they stand out more given they won't have borders */
  filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
  color: #000;
}
.datepicker table tr td.today:hover,
.datepicker table tr td.today:hover:hover,
.datepicker table tr td.today.disabled:hover,
.datepicker table tr td.today.disabled:hover:hover,
.datepicker table tr td.today:active,
.datepicker table tr td.today:hover:active,
.datepicker table tr td.today.disabled:active,
.datepicker table tr td.today.disabled:hover:active,
.datepicker table tr td.today.active,
.datepicker table tr td.today:hover.active,
.datepicker table tr td.today.disabled.active,
.datepicker table tr td.today.disabled:hover.active,
.datepicker table tr td.today.disabled,
.datepicker table tr td.today:hover.disabled,
.datepicker table tr td.today.disabled.disabled,
.datepicker table tr td.today.disabled:hover.disabled,
.datepicker table tr td.today[disabled],
.datepicker table tr td.today:hover[disabled],
.datepicker table tr td.today.disabled[disabled],
.datepicker table tr td.today.disabled:hover[disabled] {
  color: #ffffff;
  background-color: #e9f981;
  *background-color: #e5f869;
}
.datepicker table tr td.today:active,
.datepicker table tr td.today:hover:active,
.datepicker table tr td.today.disabled:active,
.datepicker table tr td.today.disabled:hover:active,
.datepicker table tr td.today.active,
.datepicker table tr td.today:hover.active,
.datepicker table tr td.today.disabled.active,
.datepicker table tr td.today.disabled:hover.active {
  background-color: #e1f750;
}
.datepicker table tr td.today:hover:hover {
  color: #000;
}
.datepicker table tr td.today.active:hover {
  color: #fff;
}
.datepicker table tr td.range,
.datepicker table tr td.range:hover,
.datepicker table tr td.range.disabled,
.datepicker table tr td.range.disabled:hover {
  background: #eeeeee;
  border-radius: 0;
}
.datepicker table tr td.range.today,
.datepicker table tr td.range.today:hover,
.datepicker table tr td.range.today.disabled,
.datepicker table tr td.range.today.disabled:hover {
  color: #ffffff;
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
  background-color: #d5e37c;
  background: -moz-linear-gradient(center bottom, #e3ce7c 0%, #e3ce7c 20%, #d5e37c 100%);
  /* FF3.6+ */
  background: -webkit-gradient(linear, left bottom, left top, color-stop(0%, #e3ce7c), color-stop(20%, #e3ce7c), color-stop(100%, #d5e37c));
  /* Chrome,Safari4+ */
  background: -webkit-linear-gradient(bottom, #e3ce7c 0%, #e3ce7c 20%, #d5e37c 100%);
  /* Chrome10+,Safari5.1+ */
  background: -ms-linear-gradient(bottom, #e3ce7c 0%, #e3ce7c 20%, #d5e37c 100%);
  /* IE10+ */
  background: -o-linear-gradient(bottom, #e3ce7c 0%, #e3ce7c 20%, #d5e37c 100%);
  /* Opera 11.10+ */
  background: linear-gradient(bottom, #e3ce7c 0%, #e3ce7c 20%, #d5e37c 100%);
  /* W3C */
  border-color: #0079c1 #00588b #004b77;
  -webkit-box-shadow: 0 1px #4dbeff inset;
  box-shadow: 0 1px #4dbeff inset;
  *background-color: #d5e37c;
  /* Darken IE7 buttons by default so they stand out more given they won't have borders */
  filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
  border-radius: 0;
}
.datepicker table tr td.range.today:hover,
.datepicker table tr td.range.today:hover:hover,
.datepicker table tr td.range.today.disabled:hover,
.datepicker table tr td.range.today.disabled:hover:hover,
.datepicker table tr td.range.today:active,
.datepicker table tr td.range.today:hover:active,
.datepicker table tr td.range.today.disabled:active,
.datepicker table tr td.range.today.disabled:hover:active,
.datepicker table tr td.range.today.active,
.datepicker table tr td.range.today:hover.active,
.datepicker table tr td.range.today.disabled.active,
.datepicker table tr td.range.today.disabled:hover.active,
.datepicker table tr td.range.today.disabled,
.datepicker table tr td.range.today:hover.disabled,
.datepicker table tr td.range.today.disabled.disabled,
.datepicker table tr td.range.today.disabled:hover.disabled,
.datepicker table tr td.range.today[disabled],
.datepicker table tr td.range.today:hover[disabled],
.datepicker table tr td.range.today.disabled[disabled],
.datepicker table tr td.range.today.disabled:hover[disabled] {
  color: #ffffff;
  background-color: #d5e37c;
  *background-color: #cede67;
}
.datepicker table tr td.range.today:active,
.datepicker table tr td.range.today:hover:active,
.datepicker table tr td.range.today.disabled:active,
.datepicker table tr td.range.today.disabled:hover:active,
.datepicker table tr td.range.today.active,
.datepicker table tr td.range.today:hover.active,
.datepicker table tr td.range.today.disabled.active,
.datepicker table tr td.range.today.disabled:hover.active {
  background-color: #c7d952;
}
.datepicker table tr td.selected,
.datepicker table tr td.selected:hover,
.datepicker table tr td.selected.disabled,
.datepicker table tr td.selected.disabled:hover {
  color: #ffffff;
  background-color: #808080;
  background: -moz-linear-gradient(center bottom, #b3b3b3 0%, #b3b3b3 20%, #808080 100%);
  /* FF3.6+ */
  background: -webkit-gradient(linear, left bottom, left top, color-stop(0%, #b3b3b3), color-stop(20%, #b3b3b3), color-stop(100%, #808080));
  /* Chrome,Safari4+ */
  background: -webkit-linear-gradient(bottom, #b3b3b3 0%, #b3b3b3 20%, #808080 100%);
  /* Chrome10+,Safari5.1+ */
  background: -ms-linear-gradient(bottom, #b3b3b3 0%, #b3b3b3 20%, #808080 100%);
  /* IE10+ */
  background: -o-linear-gradient(bottom, #b3b3b3 0%, #b3b3b3 20%, #808080 100%);
  /* Opera 11.10+ */
  background: linear-gradient(bottom, #b3b3b3 0%, #b3b3b3 20%, #808080 100%);
  /* W3C */
  border-color: #0079c1 #00588b #004b77;
  -webkit-box-shadow: 0 1px #4dbeff inset;
  box-shadow: 0 1px #4dbeff inset;
  *background-color: #808080;
  /* Darken IE7 buttons by default so they stand out more given they won't have borders */
  filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
  color: #fff;
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
}
.datepicker table tr td.selected:hover,
.datepicker table tr td.selected:hover:hover,
.datepicker table tr td.selected.disabled:hover,
.datepicker table tr td.selected.disabled:hover:hover,
.datepicker table tr td.selected:active,
.datepicker table tr td.selected:hover:active,
.datepicker table tr td.selected.disabled:active,
.datepicker table tr td.selected.disabled:hover:active,
.datepicker table tr td.selected.active,
.datepicker table tr td.selected:hover.active,
.datepicker table tr td.selected.disabled.active,
.datepicker table tr td.selected.disabled:hover.active,
.datepicker table tr td.selected.disabled,
.datepicker table tr td.selected:hover.disabled,
.datepicker table tr td.selected.disabled.disabled,
.datepicker table tr td.selected.disabled:hover.disabled,
.datepicker table tr td.selected[disabled],
.datepicker table tr td.selected:hover[disabled],
.datepicker table tr td.selected.disabled[disabled],
.datepicker table tr td.selected.disabled:hover[disabled] {
  color: #ffffff;
  background-color: #808080;
  *background-color: #737373;
}
.datepicker table tr td.selected:active,
.datepicker table tr td.selected:hover:active,
.datepicker table tr td.selected.disabled:active,
.datepicker table tr td.selected.disabled:hover:active,
.datepicker table tr td.selected.active,
.datepicker table tr td.selected:hover.active,
.datepicker table tr td.selected.disabled.active,
.datepicker table tr td.selected.disabled:hover.active {
  background-color: #666666;
}
.datepicker table tr td.active,
.datepicker table tr td.active:hover,
.datepicker table tr td.active.disabled,
.datepicker table tr td.active.disabled:hover {
  color: #ffffff;
  background-color: #062cb3;
  background: -moz-linear-gradient(center bottom, #0666b3 0%, #0666b3 20%, #062cb3 100%);
  /* FF3.6+ */
  background: -webkit-gradient(linear, left bottom, left top, color-stop(0%, #0666b3), color-stop(20%, #0666b3), color-stop(100%, #062cb3));
  /* Chrome,Safari4+ */
  background: -webkit-linear-gradient(bottom, #0666b3 0%, #0666b3 20%, #062cb3 100%);
  /* Chrome10+,Safari5.1+ */
  background: -ms-linear-gradient(bottom, #0666b3 0%, #0666b3 20%, #062cb3 100%);
  /* IE10+ */
  background: -o-linear-gradient(bottom, #0666b3 0%, #0666b3 20%, #062cb3 100%);
  /* Opera 11.10+ */
  background: linear-gradient(bottom, #0666b3 0%, #0666b3 20%, #062cb3 100%);
  /* W3C */
  border-color: #0079c1 #00588b #004b77;
  -webkit-box-shadow: 0 1px #4dbeff inset;
  box-shadow: 0 1px #4dbeff inset;
  *background-color: #062cb3;
  /* Darken IE7 buttons by default so they stand out more given they won't have borders */
  filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
  color: #fff;
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
}
.datepicker table tr td.active:hover,
.datepicker table tr td.active:hover:hover,
.datepicker table tr td.active.disabled:hover,
.datepicker table tr td.active.disabled:hover:hover,
.datepicker table tr td.active:active,
.datepicker table tr td.active:hover:active,
.datepicker table tr td.active.disabled:active,
.datepicker table tr td.active.disabled:hover:active,
.datepicker table tr td.active.active,
.datepicker table tr td.active:hover.active,
.datepicker table tr td.active.disabled.active,
.datepicker table tr td.active.disabled:hover.active,
.datepicker table tr td.active.disabled,
.datepicker table tr td.active:hover.disabled,
.datepicker table tr td.active.disabled.disabled,
.datepicker table tr td.active.disabled:hover.disabled,
.datepicker table tr td.active[disabled],
.datepicker table tr td.active:hover[disabled],
.datepicker table tr td.active.disabled[disabled],
.datepicker table tr td.active.disabled:hover[disabled] {
  color: #ffffff;
  background-color: #062cb3;
  *background-color: #05269a;
}
.datepicker table tr td.active:active,
.datepicker table tr td.active:hover:active,
.datepicker table tr td.active.disabled:active,
.datepicker table tr td.active.disabled:hover:active,
.datepicker table tr td.active.active,
.datepicker table tr td.active:hover.active,
.datepicker table tr td.active.disabled.active,
.datepicker table tr td.active.disabled:hover.active {
  background-color: #042082;
}
.datepicker table tr td span {
  display: block;
  width: 23%;
  height: 54px;
  line-height: 54px;
  float: left;
  margin: 1%;
  cursor: pointer;
  border-radius: 4px;
}
.datepicker table tr td span:hover {
  background: #eeeeee;
}
.datepicker table tr td span.disabled,
.datepicker table tr td span.disabled:hover {
  background: none;
  color: #999999;
  cursor: default;
}
.datepicker table tr td span.active,
.datepicker table tr td span.active:hover,
.datepicker table tr td span.active.disabled,
.datepicker table tr td span.active.disabled:hover {
  color: #ffffff;
  background-color: #062cb3;
  background: -moz-linear-gradient(center bottom, #0666b3 0%, #0666b3 20%, #062cb3 100%);
  /* FF3.6+ */
  background: -webkit-gradient(linear, left bottom, left top, color-stop(0%, #0666b3), color-stop(20%, #0666b3), color-stop(100%, #062cb3));
  /* Chrome,Safari4+ */
  background: -webkit-linear-gradient(bottom, #0666b3 0%, #0666b3 20%, #062cb3 100%);
  /* Chrome10+,Safari5.1+ */
  background: -ms-linear-gradient(bottom, #0666b3 0%, #0666b3 20%, #062cb3 100%);
  /* IE10+ */
  background: -o-linear-gradient(bottom, #0666b3 0%, #0666b3 20%, #062cb3 100%);
  /* Opera 11.10+ */
  background: linear-gradient(bottom, #0666b3 0%, #0666b3 20%, #062cb3 100%);
  /* W3C */
  border-color: #0079c1 #00588b #004b77;
  -webkit-box-shadow: 0 1px #4dbeff inset;
  box-shadow: 0 1px #4dbeff inset;
  *background-color: #062cb3;
  /* Darken IE7 buttons by default so they stand out more given they won't have borders */
  filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
  color: #fff;
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
}
.datepicker table tr td span.active:hover,
.datepicker table tr td span.active:hover:hover,
.datepicker table tr td span.active.disabled:hover,
.datepicker table tr td span.active.disabled:hover:hover,
.datepicker table tr td span.active:active,
.datepicker table tr td span.active:hover:active,
.datepicker table tr td span.active.disabled:active,
.datepicker table tr td span.active.disabled:hover:active,
.datepicker table tr td span.active.active,
.datepicker table tr td span.active:hover.active,
.datepicker table tr td span.active.disabled.active,
.datepicker table tr td span.active.disabled:hover.active,
.datepicker table tr td span.active.disabled,
.datepicker table tr td span.active:hover.disabled,
.datepicker table tr td span.active.disabled.disabled,
.datepicker table tr td span.active.disabled:hover.disabled,
.datepicker table tr td span.active[disabled],
.datepicker table tr td span.active:hover[disabled],
.datepicker table tr td span.active.disabled[disabled],
.datepicker table tr td span.active.disabled:hover[disabled] {
  color: #ffffff;
  background-color: #062cb3;
  *background-color: #05269a;
}
.datepicker table tr td span.active:active,
.datepicker table tr td span.active:hover:active,
.datepicker table tr td span.active.disabled:active,
.datepicker table tr td span.active.disabled:hover:active,
.datepicker table tr td span.active.active,
.datepicker table tr td span.active:hover.active,
.datepicker table tr td span.active.disabled.active,
.datepicker table tr td span.active.disabled:hover.active {
  background-color: #042082;
}
.datepicker table tr td span.old,
.datepicker table tr td span.new {
  color: #999999;
}
.datepicker th.datepicker-switch {
  width: 145px;
}
.datepicker thead tr:first-child th {
  cursor: pointer;
}
.datepicker thead tr:first-child th:hover {
  background: #eeeeee;
}
.datepicker .cw {
  font-size: 10px;
  width: 12px;
  padding: 0 2px 0 5px;
  vertical-align: middle;
}
.datepicker thead tr:first-child th.cw {
  cursor: default;
  background-color: transparent;
}
.input-append.date .add-on i,
.input-prepend.date .add-on i {
  display: block;
  cursor: pointer;
  width: 16px;
  height: 16px;
}
.input-daterange input {
  text-align: center;
}
.input-daterange input:first-child {
  border-radius: 3px 0 0 3px;
}
.input-daterange input:last-child {
  border-radius: 0 3px 3px 0;
}
.input-daterange .add-on {
  display: inline-block;
  width: auto;
  min-width: 16px;
  height: 18px;
  padding: 4px 5px;
  font-weight: normal;
  line-height: 18px;
  text-align: center;
  text-shadow: 0 1px 0 #ffffff;
  vertical-align: middle;
  background-color: #eeeeee;
  border: 1px solid #ccc;
  margin-left: -5px;
  margin-right: -5px;
}
/**
 * @fileOverview Mixins contains mixins
 * @name Mixins
 * @author hdoan, mdaveshah
 * @tested browsers FF 12, Chrome 18, Safari 5 on Mac
 * Please do not modify Mixins to add IE related styles.
 */
/* overflow auto + native mobile scrollage */
.overflow-auto {
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}
.ellipsis {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
/**
 *  Multi-line truncation utilizing overflow:hidden and specified height of content
 *  http://www.mobify.com/blog/multiline-ellipsis-in-pure-css/
 *
 *  @height - height of content to cut off
 *  @lineheight - spacing between lines
 *  @ellipsiswidth - width of ellipsis area
 */
/**
 *	Vertical separator with radial box shadow right
 *	@width - width of vertical separator
 *	@height1 - height of first darker box shadow
 *	@height2 - height of second lighter box shadow (taller than first height)
 *	@top1 - top position of first box shadow
 *	@top2 - top position of second box shadow
 *	@right - right position of separator
 *	@z - z-index of separator
 *	@borderRadius - how radial the box shadow is
 */
/**
 *	Horizontal separator with radial box shadow down
 *	@height - height of horizontal separator
 *	@width1 - width of first darker box shadow
 *	@width2 - width of second lighter box shadow (longer than first width)
 *	@left1 - left position of first box shadow
 *	@left2 - left position of second box shadow
 *	@bottom - bottom position of separator
 *	@z - z-index of separator
 *	@borderRadius - how radial the box shadow is
 */
/* This mixin is to add a pointer to a dropdown */
/* mixin for creating a triangle */
/* Mixin for bubbles */
/* mixin for creating carets bubbles with a border */
/* mixins for creating caret for customSelectBtn */
/*  START SPINNER  */
/* DEFAULT USAGE: add .hasSpinner classes (in app.less) to the elements that we want to have an overlay and spinner graphic on top of */
/* Applies to Modals and other DIV elements: Apply this mixin selectively to other CSS properties to avoid duplication of CSS code */
/* Just use .spinner() to apply spinner, or along with .overlay() to add overlay behind spinner and block the user interaction on the DIV */
@-webkit-keyframes rotation {
  from {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(359deg);
    transform: rotate(359deg);
  }
}
@-moz-keyframes rotation {
  from {
    -moz-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  to {
    -moz-transform: rotate(359deg);
    transform: rotate(359deg);
  }
}
@-o-keyframes rotation {
  from {
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  to {
    -o-transform: rotate(359deg);
    transform: rotate(359deg);
  }
}
@keyframes rotation {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(359deg);
  }
}
/*  END SPINNER  */
/* mixin to create flat white button (iOS7 style) */
.flatBtn {
  border-left: 0;
  border-right: 0;
  border-bottom: 0;
  background: #ffffff;
  -moz-box-shadow: 0 1px 3px #cccccc;
  -webkit-box-shadow: 0 1px 3px #cccccc;
  box-shadow: 0 1px 3px #cccccc;
  background-color: #faf9f9;
  background-image: -moz-linear-gradient(top, #fffefe, #f3f2f2);
  background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#fffefe), to(#f3f2f2));
  background-image: -webkit-linear-gradient(top, #fffefe, #f3f2f2);
  background-image: -o-linear-gradient(top, #fffefe, #f3f2f2);
  background-image: linear-gradient(to bottom, #fffefe, #f3f2f2);
  background-image: -webkit-linear-gradient(top, #fffefe 0%, #f3f2f2 100%);
  background-image: -o-linear-gradient(top, #fffefe 0%, #f3f2f2 100%);
  background-image: linear-gradient(to bottom, #fffefe 0%, #f3f2f2 100%);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fffffefe', endColorstr='#fff3f2f2', GradientType=0);
}
/**
 * DO NOT EDIT THIS FILE AS IT'S GENERATED CODE.
 * UED: cgrigson, adustin, nvandewater
 * UIE: jlowery
 * Note: If modifications are needed, don't modify this file! Either override or make a PR to:
 * https://github.paypal.com/jlowery/paypal-vxpattern-lib
*/
/* Reversed text and icons, module background color. */
/* Background, info alert background. */
/* Disabled field stroke and label. */
/* Secondary buttons disabled. */
/* Secondary text on dark backgrounds, strokes. */
/* Secondary buttons. */
/* Secondary text on white. */
/* Hover, hit and active for secondary buttons. */
/* 'Slate', primary text, fundamental icons. */
/* Critical alert icon and stroke, minus sign on transactions. */
/* Warning alert on dark background. */
/* Critical alert background. */
/* Warning alert icon and stroke, action icon on transactions. */
/* Warning alert icon and stroke, action icon on transactions. */
/* Warning alert background. */
/* Success alert icon and stroke, plus sign on transactions. */
/* Success alert on dark background. */
/* Success alert background. */
/* Help alert background. */
/* Color of the 'Pay' part of the PayPal logo. */
/* Color of the 'Pal' part of the PayPal logo. Primary buttons, engagement module background. */
/* Disabled primary buttons. */
/* Hover, hit, active for primary buttons. */
/* Text links, accessibility, help/tooltip icon. */
/* Account completion background. */
/* Help/tooltip icon on dark background. */
/* Help alert background. */
/* 25% Lighter PalBlue color. Screen lightens without desaturating. Unfilled profile progress meter. */
/* 60% Lighter PalBlue color. Screen lightens without desaturating. Engagement module icon backgrounds. */
/* 20% Lighter Dark Blue color. Screen lightens without desaturating. Account status icon backgrounds. */
.datepicker {
  font-family: 'HelveticaNeue-Light', 'Helvetica Neue Light', 'Helvetica Neue', Helvetica, Arial, sans-serif;
}
.datepicker .prev:before,
.datepicker .prev:after {
  content: "";
  width: 1px;
  height: 12px;
  margin-top: -11px;
  border-right-width: 2px;
  border-right-style: solid;
  border-right-color: #999999;
  display: block;
  position: absolute;
  left: 14px;
  right: auto;
  top: 50%;
  -moz-transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
  border-radius: 10px;
}
.datepicker .prev:after {
  margin-top: -2px;
  -moz-transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
  left: 14px;
  right: auto;
}
.datepicker .next:before,
.datepicker .next:after {
  content: "";
  width: 1px;
  height: 12px;
  margin-top: -10px;
  border-right-width: 2px;
  border-right-style: solid;
  border-right-color: #999999;
  display: block;
  position: absolute;
  left: auto;
  right: 14px;
  top: 50%;
  -moz-transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
  border-radius: 10px;
}
.datepicker .next:after {
  margin-top: -2px;
  -moz-transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
  left: auto;
  right: 14px;
}
.datepicker .prev,
.datepicker .next {
  display: block;
  position: relative;
  font-size: 0;
}
.datepicker .prev:before,
.datepicker .next:before,
.datepicker .prev:after,
.datepicker .next:after {
  left: 45%;
}
.datepicker th {
  vertical-align: baseline;
}
.datepicker table tr td.active.active,
.datepicker table tr td span.active.active {
  background: #0666b3;
  -webkit-box-shadow: none;
  box-shadow: none;
}
.datepicker table tr td.active.active:hover,
.datepicker table tr td span.active.active:hover,
.datepicker table tr td.active.active:focus,
.datepicker table tr td span.active.active:focus {
  -webkit-box-shadow: none;
  box-shadow: none;
}
.datepicker table tr td.selected {
  background: #666666;
  -webkit-box-shadow: none;
  box-shadow: none;
}
.datepicker table tr td.selected:hover,
.datepicker table tr td.selected:focus {
  -webkit-box-shadow: none;
  box-shadow: none;
}
.datepicker-years thead {
  width: 245px;
  display: table;
}
.datepicker-years .prev,
.datepicker-years .next {
  display: none;
}
.datepicker-years .disabled {
  display: none;
}
.dropdown-menu .yearToClassic {
  margin: 1em 0;
  display: inline-block;
  font-size: 0.857142857em;
  line-height: 1.166666667em;
  letter-spacing: 1px;
}
.dropdown-menu .yearToClassic a {
  padding: 0;
  color: #009cde;
}
.transactionFilters-container {
  width: 100%;
  max-width: 1170px;
  margin: 0 auto;
  padding: 1.6em 0 0.2em;
  display: table;
}
.transactionFilters-container_mobile {
  max-width: 550px;
  margin: 0 auto;
}
.transactionFilters-typeSelect,
.transactionFilters-dateSelect {
  display: inline-block;
  vertical-align: top;
  width: 220px;
  height: 2.5em;
  margin-right: 1em;
  font-family: "HelveticaNeue", "Helvetica Neue", helvetica, Arial, sans-serif;
  font-size: 15px;
  color: #2c2e2f;
  line-height: 1.5em;
  border-color: #9da3a6;
  background: #ffffff;
}
.transactionFilters-typeSelect_mobile {
  margin-bottom: 1em;
  width: 100%;
}
.transactionFilters-filterForm_desktop {
  margin: 0;
  display: table-row;
}
.transactionFilters-filterForm_desktop .textInput {
  margin: 0;
  display: inline;
}
.transactionFilters-filterForm_desktop .textInput label {
  margin-right: 0.3em;
  display: inline;
}
.transactionFilters-filterForm_desktop .textInput input {
  width: 95px;
  height: 2.5em;
  padding: 0 0.5em;
  margin: 0;
  display: inline;
  text-align: center;
}
.transactionFilters-filterForm_desktop .textInput input:not([type=submit]):not([type=radio]):not([type=checkbox]) {
  border-bottom-right-radius: 0;
  border-top-right-radius: 0;
}
.transactionFilters-filterForm_desktop input[readonly] {
  background-color: #ffffff;
}
.transactionFilters-filterForm_desktop .calendar {
  width: 2em;
  height: 38px;
  padding: 0 2px;
  margin-right: 1em;
  display: inline-block;
  position: relative;
  border-style: solid;
  border-width: 1px 1px 1px 0;
  border-color: #cccccc;
  border-bottom-left-radius: 0;
  border-top-left-radius: 0;
  border-bottom-right-radius: 5px;
  border-top-right-radius: 5px;
  background-color: #eeeeee;
  vertical-align: top;
  cursor: pointer;
}
.transactionFilters-filterForm_desktop .calendar:after {
  font-family: "paypal-icons";
  content: '\e509';
  width: 1.214285714em;
  height: 100%;
  line-height: 1.7em;
  font-size: 1.4em;
  position: absolute;
  top: 0;
  background-size: contain;
}
.transactionFilters-desktopInputError.transactionFilters-desktopInputError,
.transactionFilters-desktopInputError:focus.transactionFilters-desktopInputError:focus {
  border-color: #c72e2e;
  background-color: #fff7f7;
}
.transactionFilters-filterForm_mobile {
  display: block;
}
.transactionFilters_desktop {
  min-width: 650px;
  display: table-cell;
  vertical-align: middle;
}
.transactionFilters_desktop label {
  margin-bottom: 0;
}
.spinner.loading {
  padding-top: 5em;
  margin-top: 8em;
  position: relative;
  text-align: center;
  font-size: 1.5em;
}
.spinner.loading:before {
  content: "";
  height: 30px;
  width: 30px;
  margin: -15px auto auto -15px;
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 6;
  border-width: 8px;
  border-style: solid;
  border-color: #2180c0 rgba(0, 0, 0, 0.2) rgba(0, 0, 0, 0.2);
  -webkit-animation: rotation 0.7s infinite linear;
  -moz-animation: rotation 0.7s infinite linear;
  -ms-animation: rotation 0.7s infinite linear;
  animation: rotation 0.7s infinite linear;
  border-radius: 100%;
}
/**
 * @fileOverview	Styles for the filter in activity
 *
 * @name	responsive-filter
 * @author	roking
 */
@media (max-width: 1170px) {
  .transactionFilters-container {
    padding-left: 1em;
    padding-right: 1em;
  }
}
/* Smartphones (portrait and landscape) ----------- */
@media (max-width: 640px) {
  .transactionFilters-container {
    height: auto;
    padding: 0.5em;
  }
  .transactionFilters-overlayTrigger {
    border: 1px solid #cbd2d6;
    height: 41px;
    width: 41px;
    display: inline-block;
    position: fixed;
    top: 10px;
    right: 15px;
    z-index: 1030;
    border-radius: 5px;
  }
  .transactionFilters-overlayTrigger .icon {
    width: 100%;
    display: block;
    color: #666666;
    font-size: 2.0571428571428574em;
    font-size: 2.25rem;
    line-height: 1.0555555555555556em;
    text-align: center;
  }
  .transactionFilters-overlayTrigger:hover,
  .transactionFilters-overlayTrigger:focus {
    text-decoration: none;
  }
}
.transactionFilters-filterForm_mobile .textInput {
  width: 48%;
  padding: 0;
  margin: 4% 1%;
  border-bottom: 4px solid transparent;
  background-color: #f8f8f8;
  display: inline-block;
  border-radius: 0;
}
.transactionFilters-filterForm_mobile .textInput label {
  margin: 0;
  padding: .5em;
  width: 30%;
  display: block;
}
.transactionFilters-filterForm_mobile .textInput input[type="text"],
.transactionFilters-filterForm_mobile .textInput input[type="text"]:focus {
  width: 67%;
  height: 1.7em;
  margin: 0 0 1px 0;
  border: none;
  padding-left: 3px;
  padding-right: 3px;
  background-color: transparent;
  display: inline-block;
  outline-offset: initial;
  border-radius: 0;
  box-shadow: none;
  color: #0666b3;
}
.transactionFilters-filterForm_mobile .textInput.active {
  border-bottom-color: #0666b3;
}
.transactionFilters-filterForm_mobile .calendar {
  width: 1.5em;
  height: 1.7em;
  margin-right: 5px;
}
.transactionFilters-filterForm_mobile .calendar:after {
  width: 1em;
  right: 0.25em;
}
.transactionFilters-filterForm_mobile .datepicker th {
  font-weight: normal;
}
.transactionFilters-searchBtn_mobile {
  height: 2em;
  border: 0;
  width: 100%;
  line-height: 1em;
  color: #ffffff;
  font-weight: 200;
  background: #009cde;
  -webkit-box-shadow: none;
  box-shadow: none;
}
.inline-calendar {
  zoom: 1.1;
}
.inline-calendar .datepicker-inline {
  margin: auto;
  zoom: 1.1;
}
/* Display Mode styles */
.displayMode-container {
  display: table-cell;
  vertical-align: middle;
}
.displayMode-list {
  margin: 0 0 0 auto;
  display: table;
  border-collapse: collapse;
  list-style: none;
  text-align: right;
}
.displayMode-item {
  min-width: 75px;
  display: table-cell;
  vertical-align: top;
  border-bottom: 1px solid #c5c5c5;
  text-align: center;
}
.displayMode-btn {
  padding: 10px 0.5em 7px;
  width: 100%;
  background: none;
  border: none;
  color: #6c7378;
  font-weight: bold;
}
.active .displayMode-btn {
  border-bottom: 2px solid #009cde;
  padding-bottom: 5px;
  color: #2c2e2f;
}
/* Display Mode modifiers */
.icon_displayMode-item {
  vertical-align: -0.1em;
  margin-bottom: 0.75em;
  display: block;
}
@media (max-width: 896px) {
  .displayMode-list {
    position: relative;
  }
  .displayMode-item {
    display: table-row;
  }
  .displayMode-item:last-child {
    border-bottom: none;
  }
  .icon_displayMode-item {
    display: none;
  }
  .active .displayMode-btn {
    border-bottom: none;
    color: #009cde;
  }
}
/**
 * @fileOverview Styles for edit and cancel money request
 * @name modify-request
 * @author nnursalim
 * @tested browsers Chrome 25+, FF 19+, Safari 6, IE8+
 */
/*
 * this forces edit and cancel request modal to be in front of the grey backdrop
*/
body.modal-open .transaction {
  position: absolute;
  top: 0;
}
.editRequest,
.cancelRequest {
  font-size: 1.2em;
}
.editRequest h3,
.cancelRequest h3 {
  font-size: 1.4em;
  text-align: center;
}
.editRequest .modal-body .field,
.cancelRequest .modal-body .field {
  margin: 1em auto;
}
.editRequest .modal-body .field span,
.cancelRequest .modal-body .field span {
  display: inline-block;
}
.editRequest .modal-body .field span:first-child,
.cancelRequest .modal-body .field span:first-child {
  width: 40%;
  text-align: right;
}
.editRequest .modal-body .field span:last-child,
.cancelRequest .modal-body .field span:last-child {
  width: 50%;
  padding-left: 20px;
  text-align: left;
}
.editRequest .amount,
.cancelRequest .amount,
.editRequest .subject,
.cancelRequest .subject,
.editRequest .note,
.cancelRequest .note {
  padding-left: 20px;
  display: inline-block;
}
.editRequest .amount input,
.cancelRequest .amount input,
.editRequest .subject input,
.cancelRequest .subject input,
.editRequest .note input,
.cancelRequest .note input {
  border-radius: 5px;
}
.editRequest .buttons,
.cancelRequest .buttons {
  display: block;
  text-align: center;
  margin: 20px auto;
}
.editRequest .sendEmail,
.cancelRequest .sendEmail {
  display: block;
  text-align: center;
}
.editRequest .onOff label,
.cancelRequest .onOff label {
  display: inline-block;
  font-size: 1em;
}
.editRequest .onoffswitch,
.cancelRequest .onoffswitch {
  display: inline-block;
  margin: 10px;
}
/*** toggle switch ***/
/* http://proto.io/freebies/onoff/ */
.onOff {
  width: 100%;
  padding: 0.8em 1em;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  display: inline-block;
  background: #f5f5f5;
  border-radius: 6px;
}
.onOff > label {
  margin: 0;
  display: inline-block;
  line-height: 35px;
}
.onoffswitch {
  width: 80px;
  margin: auto;
  position: relative;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
/* enables checkbox keyboard usage */
.onoffswitch input[type="checkbox"] {
  width: 100%;
  height: 100%;
  margin: 0;
  position: absolute;
  z-index: 1;
  opacity: 0;
}
.onoffswitch input[type="checkbox"]:focus + .onoffswitch-label {
  box-shadow: 0 0 3px 2px #0666b3;
}
.onoffswitch-label {
  height: 34px;
  margin: 0;
  border: 2px solid;
  border-color: #c5c5c5;
  border-color: rgba(69, 69, 69, 0.14);
  display: block;
  overflow: hidden;
  cursor: pointer;
  border-radius: 6px;
  -webkit-box-shadow: inset 0 3px 3px rgba(0, 0, 0, 0.3);
  box-shadow: inset 0 3px 3px rgba(0, 0, 0, 0.3);
}
.onoffswitch-inner {
  width: 200%;
  margin-left: -100%;
  display: inline-block;
  -moz-transition: margin 0.3s ease-in 0s;
  -ms-transition: margin 0.3s ease-in 0s;
  -webkit-transition: margin 0.3s ease-in 0s;
  -o-transition: margin 0.3s ease-in 0s;
  transition: margin 0.3s ease-in 0s;
}
.onoffswitch-inner .on,
.onoffswitch-inner .off {
  width: 44%;
  height: 32px;
  display: inline-block;
  line-height: 32px;
  font-weight: 600;
  text-shadow: none;
}
.onoffswitch-inner .on {
  padding-left: 0.5em;
  background: #468427;
  background: rgba(70, 132, 39, 0.8);
  color: #ffffff;
}
.onoffswitch-inner .off {
  padding-right: 0.5em;
  text-align: right;
  background-color: #cfcfcf;
  background-image: -moz-linear-gradient(top, #c3c3c3, #e1e1e1);
  background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#c3c3c3), to(#e1e1e1));
  background-image: -webkit-linear-gradient(top, #c3c3c3, #e1e1e1);
  background-image: -o-linear-gradient(top, #c3c3c3, #e1e1e1);
  background-image: linear-gradient(to bottom, #c3c3c3, #e1e1e1);
  background-image: -webkit-linear-gradient(top, #c3c3c3 0%, #e1e1e1 100%);
  background-image: -o-linear-gradient(top, #c3c3c3 0%, #e1e1e1 100%);
  background-image: linear-gradient(to bottom, #c3c3c3 0%, #e1e1e1 100%);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffc3c3c3', endColorstr='#ffe1e1e1', GradientType=0);
  color: #333333;
  text-shadow: 0 1px 1px #ffffff;
}
.onoffswitch-switch {
  width: 33px;
  height: 31px;
  margin: 1px 0 0;
  border: 1px solid;
  border-color: #c5c5c5;
  border-color: rgba(69, 69, 69, 0.14);
  position: absolute;
  top: 0;
  bottom: 0;
  right: 46px;
  background-color: #f4f4f4;
  border-radius: 6px;
  -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.3);
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.3);
  -moz-transition: all 0.3s ease-in 0s;
  -ms-transition: all 0.3s ease-in 0s;
  -webkit-transition: all 0.3s ease-in 0s;
  -o-transition: all 0.3s ease-in 0s;
  transition: all 0.3s ease-in 0s;
}
.onoffswitch input[type="checkbox"]:checked + .onoffswitch-label .onoffswitch-inner {
  margin-left: 0;
}
.onoffswitch input[type="checkbox"]:checked + .onoffswitch-label .onoffswitch-switch {
  right: 0;
}
.accountSection header {
  max-width: 1170px;
  margin: auto;
}
.accountSection .moduleHeader {
  margin-top: 0;
  padding-bottom: 0.5em;
  font-weight: bold;
}
.accountSection .activity {
  padding-right: 2px;
  margin: 52px 0 41px;
  -webkit-box-sizing: content-box;
  -moz-box-sizing: content-box;
  box-sizing: content-box;
  border-collapse: collapse;
}
.accountSection .activity a:hover {
  text-decoration: none;
}
/* filters for transaction */
.navbar-static-top {
  height: 50px;
  /* this is needed because the position is fixed - it allows us to margin other elements */
  position: fixed;
  top: 62px;
  border-top: 4px solid #0079c1;
  border-bottom: 1px solid #d4d4d4;
  background-color: #fafafa;
  background-image: -moz-linear-gradient(top, #ffffff, #f2f2f2);
  background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#ffffff), to(#f2f2f2));
  background-image: -webkit-linear-gradient(top, #ffffff, #f2f2f2);
  background-image: -o-linear-gradient(top, #ffffff, #f2f2f2);
  background-image: linear-gradient(to bottom, #ffffff, #f2f2f2);
  background-image: -webkit-linear-gradient(top, #ffffff 0%, #f2f2f2 100%);
  background-image: -o-linear-gradient(top, #ffffff 0%, #f2f2f2 100%);
  background-image: linear-gradient(to bottom, #ffffff 0%, #f2f2f2 100%);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffffff', endColorstr='#fff2f2f2', GradientType=0);
  box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.1), 0 1px 10px rgba(0, 0, 0, 0.1);
  -moz-transition: top 0.3s ease-in-out;
  -ms-transition: top 0.3s ease-in-out;
  -webkit-transition: top 0.3s ease-in-out;
  -o-transition: top 0.3s ease-in-out;
  transition: top 0.3s ease-in-out;
  z-index: 1000;
}
.navbar-static-top.top {
  top: 0;
}
.backToTop {
  padding: 25px 35px;
  left: 0;
  bottom: 5.6em;
  font-weight: bold;
  background: #959484;
  border-bottom-right-radius: 10px;
  border-top-right-radius: 10px;
  -moz-transition: opacity 0.25s linear;
  -ms-transition: opacity 0.25s linear;
  -webkit-transition: opacity 0.25s linear;
  -o-transition: opacity 0.25s linear;
  transition: opacity 0.25s linear;
  -webkit-box-shadow: 1px 1px 2px #959484;
  box-shadow: 1px 1px 2px #959484;
  opacity: 0;
}
.backToTop.affix-top {
  opacity: 0;
  position: fixed;
}
.backToTop.affix {
  opacity: 0.5;
}
.backToTop.affix:hover {
  display: block;
  opacity: 1;
}
.backToTop:before,
.backToTop:after {
  content: "";
  width: 0;
  height: 20px;
  margin-top: -10px;
  border-right: 5px solid #fff;
  display: block;
  position: absolute;
  right: 56%;
  top: 50%;
  -moz-transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
  border-radius: 10px;
}
.backToTop:after {
  margin-top: -10px;
  -moz-transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
  right: 40%;
}
/* Responsive styles for activity transactions */
@media (max-width: 979px) {
  .navbar-header {
    margin-bottom: 0;
  }
}
@media (max-width: 1024px) {
  .counterparty {
    text-rendering: auto;
  }
}
/* tablet - landscape*/
@media (min-width: 769px) and (max-width: 1024px) {
  .transaction {
    min-width: 250px;
  }
  .tracking .pull-right {
    width: 50%;
  }
}
/* phones to tablets (portrait and landscape) ----------- */
@media (max-width: 768px) {
  .accountSection .activity {
    padding: 0;
    width: 100%;
  }
  .accountSection .activity.detailDisplay {
    display: none;
  }
  .accountSection .activity .row.active,
  .accountSection .activity .row.firstActive {
    border-bottom: 1px solid #c7c7c7;
  }
  .accountSection .activity .row.active a,
  .accountSection .activity .row.firstActive a {
    background: #fff;
    -webkit-box-shadow: none;
    box-shadow: none;
  }
  .accountSection .activity .row.active a li,
  .accountSection .activity .row.firstActive a li,
  .accountSection .activity .row.active a h3,
  .accountSection .activity .row.firstActive a h3 {
    color: #666;
  }
  .accountSection .transaction {
    top: 13px !important;
    /* cringe... had to add !imp to override bootstrap-affix */
    left: 0;
    margin: 75px auto 0;
    width: 83%;
    min-width: 300px;
    /*height: 44em;*/
    display: none;
    position: absolute;
    font-size: 1em;
    border: none;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
    -moz-background-clip: padding-box;
    -webkit-background-clip: padding-box;
    background-clip: padding-box;
  }
  .accountSection .transaction.detailDisplay {
    display: block;
    z-index: 1050;
  }
  .accountSection .transaction.affix {
    bottom: 13px;
    top: 13px;
  }
  .accountSection .transaction .tracking .pull-right {
    width: 50%;
  }
}
/* phone - portrait and landscape */
@media (max-width: 640px) {
  .activity .classicLink .state {
    width: auto;
  }
  .accountSection .activity {
    margin-top: 44px;
  }
  .accountSection .transaction {
    width: 100%;
    height: 100%;
    padding-bottom: 46px;
    margin-top: 50px;
    border-radius: 0;
  }
  .header > .navbar-inner .btn {
    margin-top: 6px;
  }
  .navbar-static-top {
    background-color: rgba(252, 252, 252, 0.88);
    background-image: -moz-linear-gradient(top, #ffffff, rgba(242, 242, 242, 0.7));
    background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#ffffff), to(rgba(242, 242, 242, 0.7)));
    background-image: -webkit-linear-gradient(top, #ffffff, rgba(242, 242, 242, 0.7));
    background-image: -o-linear-gradient(top, #ffffff, rgba(242, 242, 242, 0.7));
    background-image: linear-gradient(to bottom, #ffffff, rgba(242, 242, 242, 0.7));
    background-image: -webkit-linear-gradient(top, #ffffff 0%, rgba(242, 242, 242, 0.7) 100%);
    background-image: -o-linear-gradient(top, #ffffff 0%, rgba(242, 242, 242, 0.7) 100%);
    background-image: linear-gradient(to bottom, #ffffff 0%, rgba(242, 242, 242, 0.7) 100%);
    background-repeat: repeat-x;
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffffff', endColorstr='#b3f2f2f2', GradientType=0);
  }
}
/* phone portrait */
@media (max-width: 479px) {
  .transactionFilters-container {
    padding: 0.5em;
  }
}
/**
 * @fileOverview Styles for the activity section and activity module of summary page
 * @name activityModule
 * Corresponding Dust file is public/templates/widgets/activityModule.dust
 * @author tsullivan
 * @tested Chrome, Firefox, Safari, IE9, IOS6
 */
/* Alternating table row colors */
.activityModule {
  max-width: 1170px;
  margin: 10px auto 0;
  padding: 1.25em 1em 1.5em;
  background-color: #ffffff;
}
.activityModule .moduleHeader {
  border: 0;
  margin-top: 0;
}
.activityModule .moduleHeader_summary {
  margin-bottom: 0;
}
.activityModule .canceled,
.activityModule .denied {
  text-decoration: line-through;
}
.withStatements {
  display: inline-block;
}
.downloads {
  margin-left: 3em;
  display: inline-block;
  color: #0666b3;
}
.transactionList,
.installmentList {
  margin: auto;
  max-width: 1170px;
}
.transactionRow:nth-child(odd),
.installmentRow:nth-child(odd) {
  background-color: #f8f8f8;
}
.isCurrencyConversion {
  width: 14px;
  height: 11px;
  background-repeat: no-repeat;
  /* Hide the text. */
  display: inline-block;
  text-indent: 200%;
  white-space: nowrap;
  overflow: hidden;
}
.currencyCode {
  display: block;
  line-height: 0;
  padding-top: 0.5em;
}
.transactionRow,
.installmentRow {
  position: relative;
  background-color: #ffffff;
}
.transactionRow:nth-child(odd),
.installmentRow:nth-child(odd),
.transactionRow.year-title:nth-child(odd),
.installmentRow.year-title:nth-child(odd) {
  background-color: #f7f9fa;
}
.transactionRow:nth-child(odd) .transactionAmount,
.installmentRow:nth-child(odd) .transactionAmount,
.transactionRow.year-title:nth-child(odd) .transactionAmount,
.installmentRow.year-title:nth-child(odd) .transactionAmount,
.transactionRow:nth-child(odd) .installmentSummary .balance,
.installmentRow:nth-child(odd) .installmentSummary .balance,
.transactionRow.year-title:nth-child(odd) .installmentSummary .balance,
.installmentRow.year-title:nth-child(odd) .installmentSummary .balance {
  background-color: #f7f9fa;
  /* This creates the subtle fade for text trunctation */
}
.transactionRow:nth-child(odd) .transactionAmount:before,
.installmentRow:nth-child(odd) .transactionAmount:before,
.transactionRow.year-title:nth-child(odd) .transactionAmount:before,
.installmentRow.year-title:nth-child(odd) .transactionAmount:before,
.transactionRow:nth-child(odd) .installmentSummary .balance:before,
.installmentRow:nth-child(odd) .installmentSummary .balance:before,
.transactionRow.year-title:nth-child(odd) .installmentSummary .balance:before,
.installmentRow.year-title:nth-child(odd) .installmentSummary .balance:before {
  background-image: -webkit-gradient(linear, left top, right top, from(rgba(248, 248, 248, 0)), to(#f8f8f8));
  background-image: -webkit-linear-gradient(left, rgba(248, 248, 248, 0), #f8f8f8);
  background-image: -moz-linear-gradient(left, rgba(248, 248, 248, 0), #f8f8f8);
  background-image: -ms-linear-gradient(left, rgba(248, 248, 248, 0), #f8f8f8);
  background-image: -o-linear-gradient(left, rgba(248, 248, 248, 0), #f8f8f8);
  background-image: linear-gradient(to right, rgba(248, 248, 248, 0), #f8f8f8);
}
.transactionRow.hasSpinner:before,
.installmentRow.hasSpinner:before {
  position: absolute;
  height: 24px;
  width: 24px;
  top: 55%;
}
.transactionRow.hasSpinner:after,
.installmentRow.hasSpinner:after {
  position: absolute;
}
.transactionRow:nth-child(even) .transactionAmount,
.installmentRow:nth-child(even) .transactionAmount,
.transactionRow.year-title:nth-child(even) .transactionAmount,
.installmentRow.year-title:nth-child(even) .transactionAmount,
.transactionRow:nth-child(even) .installmentSummary .balance,
.installmentRow:nth-child(even) .installmentSummary .balance,
.transactionRow.year-title:nth-child(even) .installmentSummary .balance,
.installmentRow.year-title:nth-child(even) .installmentSummary .balance {
  background-color: #ffffff;
  /* This creates the subtle fade for text trunctation */
}
.transactionRow:nth-child(even) .transactionAmount:before,
.installmentRow:nth-child(even) .transactionAmount:before,
.transactionRow.year-title:nth-child(even) .transactionAmount:before,
.installmentRow.year-title:nth-child(even) .transactionAmount:before,
.transactionRow:nth-child(even) .installmentSummary .balance:before,
.installmentRow:nth-child(even) .installmentSummary .balance:before,
.transactionRow.year-title:nth-child(even) .installmentSummary .balance:before,
.installmentRow.year-title:nth-child(even) .installmentSummary .balance:before {
  background-image: -webkit-gradient(linear, left top, right top, from(rgba(255, 255, 255, 0)), to(#ffffff));
  background-image: -webkit-linear-gradient(left, rgba(255, 255, 255, 0), #ffffff);
  background-image: -moz-linear-gradient(left, rgba(255, 255, 255, 0), #ffffff);
  background-image: -ms-linear-gradient(left, rgba(255, 255, 255, 0), #ffffff);
  background-image: -o-linear-gradient(left, rgba(255, 255, 255, 0), #ffffff);
  background-image: linear-gradient(to right, rgba(255, 255, 255, 0), #ffffff);
}
.year-title .span1 {
  padding: 1em;
  text-align: center;
}
.transactionRow,
.installmentRow {
  min-height: 4em;
  display: block;
}
.transactionRow:last-child,
.installmentRow:last-child {
  border-bottom: none;
}
.transactionRow .transactionDescriptionContainer,
.installmentRow .transactionDescriptionContainer {
  text-decoration: none;
}
.transactionRow .transactionDescriptionContainer:focus,
.installmentRow .transactionDescriptionContainer:focus {
  text-decoration: underline;
}
.transactionRow .transactionDescriptionContainer:active,
.installmentRow .transactionDescriptionContainer:active {
  text-decoration: none;
}
.transactionRow .transactionDescription,
.installmentRow .transactionDescription,
.transactionRow .installmentSummary .creditPlanDescription,
.installmentRow .installmentSummary .creditPlanDescription {
  padding-top: 0.9em;
  line-height: 1.25em;
}
.transactionRow .transactionAmount,
.installmentRow .transactionAmount,
.transactionRow .installmentSummary .balance,
.installmentRow .installmentSummary .balance {
  line-height: 1rem;
  padding-top: 0.55em;
  height: 100%;
}
.transactionRow .transactionAmount.primaryCurrency,
.installmentRow .transactionAmount.primaryCurrency,
.transactionRow .installmentSummary .balance.primaryCurrency,
.installmentRow .installmentSummary .balance.primaryCurrency {
  padding-top: 0.85em;
}
.transactionRow .transactionAmount.currencyConversion,
.installmentRow .transactionAmount.currencyConversion,
.transactionRow .installmentSummary .balance.currencyConversion,
.installmentRow .installmentSummary .balance.currencyConversion {
  padding-top: 1em;
}
.transactionRow .transactionAmount.currencyConversion .currencyCode,
.installmentRow .transactionAmount.currencyConversion .currencyCode,
.transactionRow .installmentSummary .balance.currencyConversion .currencyCode,
.installmentRow .installmentSummary .balance.currencyConversion .currencyCode {
  padding-top: 0.75em;
}
.transactionRow .transactionAmount .currencyCode,
.installmentRow .transactionAmount .currencyCode,
.transactionRow .installmentSummary .balance .currencyCode,
.installmentRow .installmentSummary .balance .currencyCode {
  padding-top: 0.3em;
  font-family: 'HelveticaNeue', 'Helvetica Neue', helvetica, Arial, sans-serif;
}
.transactionRow .actions,
.installmentRow .actions {
  float: right;
}
.transactionRow .transactionType,
.installmentRow .transactionType,
.transactionRow .installmentSummary .creditPlanType,
.installmentRow .installmentSummary .creditPlanType {
  display: block;
  padding-top: 0.02em;
  color: #2c2e2f;
}
.transactionRow .creditPlan-balance,
.installmentRow .creditPlan-balance {
  color: #6c7378;
}
.transactionRow .transactionType,
.installmentRow .transactionType {
  width: 96%;
  white-space: nowrap;
  overflow: hidden;
}
.transactionRow.year-title,
.installmentRow.year-title {
  /* adjust the min-height to 2/3 the height of the transactionRow and vertically center the content */
  min-height: 2.66em;
  padding-top: 0;
  padding-bottom: 0;
  line-height: 2.66em;
}
.transactionRow.year-title .span1,
.installmentRow.year-title .span1 {
  padding-top: 0;
  padding-bottom: 0;
}
.transactionRowHover:hover,
.installmentRow:not(.isInactive):hover {
  background-color: #eeeeee;
  border-left: 4px solid #009cde;
  margin-left: -4px;
}
.transactionRowHover:hover .transactionDetailsContainer .transactionAmount,
.installmentRow:not(.isInactive):hover .transactionDetailsContainer .transactionAmount,
.transactionRowHover:hover .installmentSummary .balance,
.installmentRow:not(.isInactive):hover .installmentSummary .balance {
  background-color: #eeeeee;
  /* This creates the subtle fade for text trunctation */
}
.transactionRowHover:hover .transactionDetailsContainer .transactionAmount:before,
.installmentRow:not(.isInactive):hover .transactionDetailsContainer .transactionAmount:before,
.transactionRowHover:hover .installmentSummary .balance:before,
.installmentRow:not(.isInactive):hover .installmentSummary .balance:before {
  background-image: -webkit-gradient(linear, left top, right top, from(rgba(238, 238, 238, 0)), to(#eeeeee));
  background-image: -webkit-linear-gradient(left, rgba(238, 238, 238, 0), #eeeeee);
  background-image: -moz-linear-gradient(left, rgba(238, 238, 238, 0), #eeeeee);
  background-image: -ms-linear-gradient(left, rgba(238, 238, 238, 0), #eeeeee);
  background-image: -o-linear-gradient(left, rgba(238, 238, 238, 0), #eeeeee);
  background-image: linear-gradient(to right, rgba(238, 238, 238, 0), #eeeeee);
}
.transactionItem {
  padding: 0 0 0.55em;
}
.dateParts {
  display: block;
  padding-top: 0.9em;
}
.dateDay,
.dateMonth {
  display: block;
  text-align: center;
  line-height: 1.1em;
  color: #2c2e2f;
}
.dateMonth {
  text-transform: uppercase;
  font-weight: bold;
}
.transactionDetailsContainer {
  position: relative;
}
/* Inline actions */
.transactionDetailsContainer .action,
.detailedTable-transactionItem_actions .action,
.transactionDetailsContainer .action-highlight,
.detailedTable-transactionItem_actions .action-highlight {
  margin-bottom: 0.175em;
  margin-top: 0.175em;
  margin-left: -0.25em;
}
.transactionDetailsContainer .action .icon,
.detailedTable-transactionItem_actions .action .icon,
.transactionDetailsContainer .action-highlight .icon,
.detailedTable-transactionItem_actions .action-highlight .icon {
  color: #9da3a6;
}
.transactionDetailsContainer .action a,
.detailedTable-transactionItem_actions .action a,
.transactionDetailsContainer .action-highlight a,
.detailedTable-transactionItem_actions .action-highlight a {
  display: inline-block;
  margin: 0;
  padding: 0 0.82em 0 0.4em;
  border-right: 1px solid #2c2e2f;
  white-space: nowrap;
}
.transactionDetailsContainer .action a:first-of-type,
.detailedTable-transactionItem_actions .action a:first-of-type,
.transactionDetailsContainer .action-highlight a:first-of-type,
.detailedTable-transactionItem_actions .action-highlight a:first-of-type {
  padding-left: 0.2em;
}
.transactionDetailsContainer .action a:last-of-type,
.detailedTable-transactionItem_actions .action a:last-of-type,
.transactionDetailsContainer .action-highlight a:last-of-type,
.detailedTable-transactionItem_actions .action-highlight a:last-of-type {
  border-right: none;
}
.transactionDetailsContainer .action-highlight .icon,
.detailedTable-transactionItem_actions .action-highlight .icon {
  color: #f8981f;
}
.transactionDescription,
.transactionAmount,
.installmentSummary .creditPlanDescription,
.installmentSummary .balance {
  color: #2c2e2f;
}
.transactionDescription,
.installmentSummary .creditPlanDescription {
  display: block;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.transactionAmount,
.installmentSummary .balance {
  position: absolute;
  /* Create stacking context for amount */
  right: 1.2em;
  /* Align right */
  top: 0;
  padding-right: 1.2em;
  text-align: right;
  /* Create pseudoelement for the text trancation fading */
}
.transactionAmount:before,
.installmentSummary .balance:before {
  content: '';
  width: 2em;
  height: 98%;
  /* < 100% prevents triggering scrollbar */
  position: absolute;
  left: -2em;
  top: 0;
  z-index: 0;
}
.transactionAmount .netAmount,
.installmentSummary .balance .netAmount {
  color: #2c2e2f;
  font-family: 'HelveticaNeue-Light', 'Helvetica Neue Light', 'Helvetica Neue', Helvetica, Arial, sans-serif;
}
.transactionAmount .balanceAmount,
.installmentSummary .balance .balanceAmount {
  display: block;
  color: #2c2e2f;
}
/**
 * @fileOverview Responsive styles for the activity section and activity module of summary page
 * @name responsive-activityModule
 * Corresponding Dust file is public/templates/widgets/activityModule.dust
 * @author tsullivan
 * @tested Chrome, Firefox, Safari, IE9, IOS6
 */
/* phone portrait */
@media (max-width: 479px) {
  .row-fluid .transactionAmount,
  .row-fluid .installmentSummary .balance {
    margin-left: 1em;
    padding-left: 0.35em;
    padding-right: 0;
  }
  .activityModule {
    padding: 1.25em 0 0.5em;
    border-bottom: none;
    border-top: none;
  }
  .activityModule .moduleHeader {
    padding: 0 1.5em 0.5em;
  }
  .activityModule .transactionItem,
  .activityModule .installmentRow .creditPlan {
    padding: 0 1.4em 0.55em 1.5em;
  }
  .activityModule .dateParts {
    padding-top: 1.05em;
  }
  .activityModule .dateParts .dateDay {
    min-width: inherit;
  }
  .activityModule.none {
    padding: 1.25em 1.5em 0;
  }
  .activityModule.none .moduleHeader {
    padding: 0 0 0.5em;
  }
  .transactionRow .dropdown-toggle,
  .installmentRow .dropdown-toggle {
    margin-right: 0.5em;
  }
  .transactionRow .transactionAmount.primaryCurrency,
  .installmentRow .transactionAmount.primaryCurrency {
    padding-top: 1.05em;
  }
  .transactionRow .transactionAmount.currencyConversion,
  .installmentRow .transactionAmount.currencyConversion {
    padding-top: 1em;
  }
  .transactionAmount,
  .installmentSummary .balance {
    padding-right: 5px;
  }
  .counterparty {
    font-size: 0.8em;
    font-size: 0.875rem;
    line-height: 1.5em;
  }
  .dateParts,
  .transactionAmount,
  .installmentSummary .balance {
    font-size: 0.6857142857142857em;
    font-size: 0.75rem;
    line-height: 1.75em;
    line-height: 1.5em;
    /* preserve baseline alignment with payment status */
  }
  .transactionDetailsContainer {
    padding-left: 1.5em;
  }
  .transactionDetailsContainer .action,
  .transactionDetailsContainer .action-highlight {
    padding-left: 0;
    background: none !important;
  }
  .transactionDetailsContainer .action a:first-of-type,
  .transactionDetailsContainer .action-highlight a:first-of-type {
    padding-left: 0;
  }
}
/**
 * @fileOverview Styles that utilize base64 images for non-retina screens
 * @name nonretina-activityModule.less
 * @author tsullivan
 * @tested browsers Chrome, IOS6
 */
.activityModule .isCurrencyConversion {
  height: 11px;
  width: 13px;
  padding-bottom: 1px;
  background-clip: content-box;
  background-image: url(https://www.paypalobjects.com/webstatic/i/sprite/sprite_summary.png);
  background-position: -316px 0;
}
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  /**
 * @fileOverview Styles that utilize base64 images for retina screens
 * @name retina-activityModule.less
 * @author tsullivan
 * @tested browsers Chrome, IOS6
 */
  .activityModule .isCurrencyConversion {
    background-image: url(https://www.paypalobjects.com/webstatic/i/sprite/sprite_summary_2x.png);
    background-size: 329px 206px;
  }
}
/**
 * Detailed View styles
 */
.detailedModule .moduleHeader {
  margin-bottom: 0.2em;
}
.detailedTable {
  width: 100%;
}
.detailedTable caption {
  padding: 1.25em 0 0 1.5em;
  background: #ffffff;
  line-height: 0;
  text-align: left;
}
.detailedTable thead th {
  padding: 1em 0.9em;
  border-top: 1px solid #dddddd;
  color: #2c2e2f;
}
.detailedTable tbody th {
  font-weight: normal;
}
.detailedView.hasSpinner:before {
  width: 24px;
  height: 24px;
  top: 55%;
}
.detailedView.hasSpinner:after {
  position: absolute;
}
.detailedTable tbody:nth-child(odd) tr {
  background-color: #ffffff;
}
.detailedTable tbody:nth-child(even) tr {
  background-color: #f7f9fa;
}
.detailedTable-transactionItem_row.highlightTransactionRow .detailedTable-transactionColumn_date {
  padding-left: 0.563em;
}
.detailedTable-transactionItem_actions.highlightTransactionRow td {
  padding-left: 0.375em;
}
.detailedTable-transactionItem:hover .detailedTable-transactionItem_row,
.detailedTable-transactionItem:hover .detailedTable-transactionItem_actions {
  background-color: #eeeeee;
  border-left: 4px solid #009cde;
  cursor: pointer;
}
.detailedTable-transactionItem:hover .detailedTable-transactionColumn_date {
  padding-left: 0.563em;
}
.detailedTable-transactionItem:hover .detailedTable-transactionItem_actions td {
  padding-left: 0.375em;
}
.detailedTable-transactionColumn_date {
  width: 6.5%;
  white-space: nowrap;
  text-align: left;
}
.detailedTable-transactionColumn_desc {
  width: 25%;
  text-align: left;
}
.detailedTable-transactionColumn_type {
  text-align: left;
}
.detailedTable-transactionColumn_gross,
.detailedTable-transactionColumn_fee,
.detailedTable-transactionColumn_net {
  width: 12%;
  white-space: nowrap;
  text-align: right;
}
.detailedTable-transactionColumn_desc a {
  color: #2c2e2f;
  text-decoration: none;
}
.detailedTable-transactionColumn_desc a:focus {
  text-decoration: underline;
}
.detailedTable-transactionColumn_desc a:active {
  text-decoration: none;
}
.detailedTable-transactionColumn_date,
.detailedTable-transactionItem_row td {
  vertical-align: top;
  padding: 0.7em;
}
.detailedTable-transactionItem_row.hasActions th,
.detailedTable-transactionItem_row.hasActions td {
  padding-bottom: 0.2em;
}
.detailedTable-transactionItem_actions td {
  padding: 0 0 0.5em 0.5em;
}
.detailedTable-transactionItem_actions a {
  display: inline-block;
  margin: 0;
  padding: 0 0.82em 0 0.4em;
  border-right: 1px solid #2c2e2f;
  white-space: nowrap;
}
.detailedTable-transactionItem_actions a:first-of-type {
  padding-left: 0.2em;
}
.detailedTable-transactionItem_actions a:last-of-type {
  border-right: none;
}
.detailedTable-transactionItem_actions .icon-small:before {
  font-size: 1.58rem;
}
.detailedTable-transactionItem_details td {
  padding: 0 0 0 2px;
}
.detailedTable-yearTitle th {
  padding-left: 0.7em;
  line-height: 2.66em;
  min-height: 2.66em;
  text-align: left;
}
.rtl .transactionAmount,
.rtl .installmentSummary .balance {
  left: 0;
  right: auto;
  padding-left: 1.2em;
  padding-right: 0;
}
.rtl .transactionAmount:before,
.rtl .installmentSummary .balance:before {
  right: -2em;
  left: auto;
}
.banner-notification--container + .navbar {
  margin-bottom: 0;
  position: static;
}
.banner-notification--container ~ .contents > .summaryContainer {
  padding-top: 0;
}
.banner-notification--content {
  width: 100%;
  margin: 0 0 9px 0;
  overflow: hidden;
  background-color: #ffd571;
  color: #2c2e2f;
}
.banner-notification--table {
  display: table;
  max-width: 1170px;
  width: 100%;
  margin: 0 auto;
  padding: 0.72em 2.5em;
}
.banner-notification--table .icon {
  display: table-cell;
  width: 1.5em;
  font-size: 1.5em;
}
.banner-notification--table > p {
  display: table-cell;
  line-height: 1.5em;
}
.loadMoreWrapper {
  margin-top: -10px;
  padding-bottom: 20px;
  text-align: center;
}
.loadMoreWrapper .buttonMultiState {
  position: relative;
  top: 0.6em;
}
.charts {
  background-color: #000000;
}
.charts .chart {
  background-color: #ffffff;
  height: 400px;
  width: 100%;
  margin-bottom: 1em;
}
.charts .dismiss {
  color: #ffffff;
  cursor: pointer;
  float: right;
  margin-bottom: 0.5em;
}
/**
 * @fileOverview Styles for the transaction detail inline
 * @name Transaction
 * @author tsullivan
 */
/**
 * @fileOverview Shared styles for the transaction detail and summary installment detail
 * @name sharedPanel
 * @author tsullivan hkori
 */
.highlightTransactionRow,
.highlightTransactionPanel,
.highlightInstallmentRow,
.highlightInstallmentPanel {
  border-left: 4px solid #009cde;
  margin-left: -4px;
}
.highlightTransactionPanel,
.highlightInstallmentPanel {
  background-color: #ffffff;
  border-left-color: #b2d9ea;
  border-top: 1px solid #e1e7eb;
  border-right: 1px solid #e1e7eb;
  border-bottom: 1px solid #e1e7eb;
  /* animation helper for cool slide-down of the transaction details panel */
}
.highlightTransactionPanel.panel-transition,
.highlightInstallmentPanel.panel-transition {
  -moz-transition: height 0.5s linear;
  -ms-transition: height 0.5s linear;
  -webkit-transition: height 0.5s linear;
  -o-transition: height 0.5s linear;
  transition: height 0.5s linear;
  overflow: hidden;
}
.inlineTransactionDetails .icon-close-small.colorDefault,
.installmentPanel-container .icon-close-small.colorDefault {
  color: #2c2e2f;
}
.inlineTransactionDetails .closeIcon-container,
.installmentPanel-container .closeIcon-container {
  float: right;
  margin-right: 1.4em;
  width: 1.5em;
}
.inlineTransactionDetails .closeIcon-container a:hover,
.installmentPanel-container .closeIcon-container a:hover {
  text-decoration: none;
}
@media (max-width: 768px) {
  .inlineTransactionDetails .closeIcon-container,
  .installmentPanel-container .closeIcon-container {
    margin-top: 0.5em;
    margin-right: 0.5em;
  }
}
@media (max-width: 768px) {
  .inlineTransactionDetails,
  .installmentPanel-container {
    padding: 1em;
  }
}
.fullpageTransactionDetails,
.inlineTransactionDetails {
  max-width: 1170px;
  margin-left: auto;
  margin-right: auto;
}
.fullpageTransactionDetails.fullpageError,
.inlineTransactionDetails.fullpageError {
  max-width: none;
}
.fullpageTransactionDetails dl,
.inlineTransactionDetails dl {
  margin-top: 0;
  margin-bottom: 1.6em;
}
.fullpageTransactionDetails dd,
.inlineTransactionDetails dd {
  margin-left: 0;
}
.fullpageTransactionDetails footer,
.inlineTransactionDetails footer {
  padding-top: 1.5em;
  padding-bottom: 4.5em;
  border-top: 1px solid #eeeeee;
}
.fullpageTransactionDetails footer dl,
.inlineTransactionDetails footer dl {
  margin-bottom: 0;
}
.fullpageTransactionDetails footer ul,
.inlineTransactionDetails footer ul {
  margin-top: 1.4em;
  list-style: none;
}
@media (max-width: 768px) {
  .fullpageTransactionDetails footer,
  .inlineTransactionDetails footer {
    padding-top: 1em;
  }
}
.fullpageTransactionDetails p,
.inlineTransactionDetails p {
  margin-bottom: 1.6em;
}
.fullpageTransactionDetails .smallGray,
.inlineTransactionDetails .smallGray {
  color: #6c7378;
}
.fullpageTransactionDetails .icon-small,
.inlineTransactionDetails .icon-small {
  color: #cbd2d6;
  background: #ffffff;
}
.fullpageTransactionDetails .small-text .icon-small:before,
.inlineTransactionDetails .small-text .icon-small:before {
  font-size: 1.4rem;
}
.fullpageTransactionDetails .marginTopContent,
.inlineTransactionDetails .marginTopContent {
  margin-top: 1em;
}
.fullpageTransactionDetails {
  padding: 1em;
  background-color: #ffffff;
}
.fullpageTransactionDetails .transactionDate {
  margin-bottom: 0.25em;
  font-weight: bold;
}
.fullpageTransactionDetails .breadcrumb,
.fullpageTransactionDetails .transactionTopLevel {
  padding-top: 1em;
  padding-bottom: 1em;
}
.fullpageTransactionDetails .breadcrumb .icon {
  color: #009cde;
  vertical-align: sub;
}
.fullpageTransactionDetails .transactionTopLevel {
  margin-bottom: 1.5em;
  border-bottom: 1px solid #f7f9fa;
}
.fullpageTransactionDetails a.icon:hover {
  text-decoration: none;
}
.fullpageTransactionDetails .transactionNetAmount {
  float: right;
  position: relative;
  top: -1.25em;
}
@media (max-width: 768px) {
  .fullpageTransactionDetails .breadcrumb {
    border-bottom: 1px solid #eeeeee;
  }
}
@media print {
  .fullpageTransactionDetails .transactionTopLevel {
    padding-top: 6mm;
    padding-bottom: 7mm;
    border-color: #6c7378;
  }
  .fullpageTransactionDetails footer {
    padding-top: 6mm;
    border-color: #6c7378;
  }
  .fullpageTransactionDetails .row .halfColForPrint {
    float: left;
    margin-left: 0;
    width: 48.5%;
  }
  .fullpageTransactionDetails .row .thirdOfColForPrint {
    float: left;
    margin-left: 0;
    width: 32.3%;
  }
  .fullpageTransactionDetails .row .fullColForPrint {
    float: none;
    margin-left: 0;
    width: 97%;
  }
}
.inlineTransactionDetails {
  margin-top: 3em;
}
.inlineTransactionDetails .closeIcon-container {
  margin-top: -1.5em;
}
.tdPurchaseDetails .item {
  margin-bottom: 1.5em;
}
.tdPurchaseDetails .numeral {
  text-align: right;
}
.tdPurchaseDetails .primary {
  margin-top: 5px;
  font-weight: bold;
}
.tdPurchaseDetails .purchaseDetailFields {
  padding-top: 1em;
}
.tdPurchaseDetails .purchaseDetailFieldsMain {
  margin-top: 3px;
  padding-top: 0.6em;
  border-top: 1px solid #e1e7eb;
}
.tdRefundDetails .numeral {
  text-align: right;
}
.tdRefundDetails .primary {
  margin-top: 5px;
  font-weight: bold;
}
.tdResCenterLinks li {
  margin-bottom: 0.5em;
  min-height: 1.4em;
}
.tdRefundLink .icon,
.tdPrintLink .icon,
.tdResCenterLinks .icon,
.tdRefundLink .iconifiedText,
.tdPrintLink .iconifiedText,
.tdResCenterLinks .iconifiedText,
.tdRefundLink a,
.tdPrintLink a,
.tdResCenterLinks a {
  display: inline;
}
.tdRefundLink .icon,
.tdPrintLink .icon,
.tdResCenterLinks .icon {
  line-height: 0.6em;
}
.tdRefundLink a,
.tdPrintLink a,
.tdResCenterLinks a,
.tdRefundLink .iconifiedText,
.tdPrintLink .iconifiedText,
.tdResCenterLinks .iconifiedText {
  margin-left: 10px;
}
.tdStatusInfo-icon,
.tdStatusInfo-message {
  display: table-cell;
  vertical-align: top;
}
.tdStatusInfo-icon {
  width: 2.8em;
}
.tdInlineList {
  margin: 0 0 1.6em 0;
  padding: 0;
}
.tdInlineList li {
  list-style: none;
  padding-right: 0.5em;
}
.tdInlineList li:first-child {
  padding-left: 0;
}
.tdInlineList li:after {
  content: '';
  display: inline-block;
  padding-left: 0.5em;
  vertical-align: middle;
  height: 0.9em;
}
.tdInlineList li:last-child:after {
  border: none;
}
.tdInlineList:after {
  content: '';
  display: block;
  clear: left;
}
.tdPosReturnPolicy {
  margin-top: 1.5em;
  padding-top: 1.5em;
  border-top: 1px solid #eeeeee;
}
/* Error messages, when transaction could not be loaded */
.tdInlineError .icon-critical-small {
  color: #c72b2d;
}
/* fullScreenDialog customizations, for error scenario */
/* in the smartphone experience, this is a server-side rendered overpanel */
.tdErrorDialog .icon {
  margin-top: 8px;
  font-size: 90px;
}
.tdErrorDialog.notoverpanel {
  margin-top: 80px;
  /* top padding for non-smartphone fullpage */
}
.tdErrorDialog h2 {
  margin-top: 0.7em;
  margin-bottom: 0.5em;
}
.floating-feedback {
  position: fixed;
  right: 2.85em;
  top: 400px;
  z-index: 1000;
  -moz-transform: rotate(-90deg);
  -webkit-transform: rotate(-90deg);
  -ms-transform: rotate(-90deg);
  -o-transform: rotate(-90deg);
  transform: rotate(-90deg);
}
.floating-feedback a {
  margin-left: -4.25em;
  display: inline-block;
  position: fixed;
  border-radius: 5px 5px 0 0;
  white-space: nowrap;
  -moz-transform: rotate(0deg);
  -webkit-transform: rotate(0deg);
  -ms-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -ms-transform: rotate(-90deg);
}
