.pending-activity {
    border: 1px solid #bebebe;
    border-radius: 3px;
    position: relative;
}
.pending-activity > .row {
	padding: 0 15px;
}
.pending-activity > .row:first-child {
	padding-top: 15px;
}
.pending-activity > .row:last-child {
	padding-bottom: 15px;
}

/* FOUNDATION OVERRIDES */
.pending-activity .has-tip {
	border-bottom: none;
}
/* end FOUNDATION OVERRIDES */

/* TOOLTIP */
.pending-activity .help-tip-icon {
	font-size: 1.5rem;
	color: #CCC;
	position: relative;
	top: -5px;
}
.pending-activity .help-tip-icon:hover {
	cursor: help;
}
/* end TOOLTIP */

.pending-activity .pending-activity-header .refresh-transaction-button {
	display: block;
	background: #fff;
	font-weight: 500 !important;
	color: #424242;
	border: none;
	margin-bottom: 0;
	padding-right: 0;
	padding-left: 0;
}
.pending-activity .pending-activity-header .refresh-transaction-button .icon-refresh {
	width: 19px;
	height: 14px;
}

/* TABLE */
.pending-activity table {
	border: none;
	width: 100%;
	position: relative;
}

.pending-activity h3 {
    font-size: 16px;
    font-weight: 600;
}
.pending-activity h2 {
        font-size: 30px;
        font-weight: 300;
    }

.pending-activity table thead {
	background: #0d649a;
}
.pending-activity table thead th {
	background: #0d649a;
	color: #fff;
	font-weight: 300;
	font-size:0.875rem;
}
.pending-activity table thead th:first-child {
	border-radius: 3px 0 0 0;
	width: 23%;
}
.pending-activity table thead th:nth-of-type(2) {
	width: 26%;
}
.pending-activity table thead th:last-child {
	border-radius: 0 3px 0 0;
	text-align: right;
}

.pending-activity table tr:nth-child(odd) {
	background: #daebf5;
}
.pending-activity table tr:nth-child(even) {
	background: #fff;
}

.pending-activity table tr:nth-child(odd) td {
	background: #daebf5;
}
.pending-activity table tr:nth-child(even) td {
	background: #fff;
}
.pending-activity td:nth-of-type(2),
.pending-activity td:nth-of-type(3) {
	/*text-transform: uppercase;*/
}

.pending-activity td {
	font-size: .8rem;
	font-weight: 300;
	/*text-transform: uppercase;*/
}
.pending-activity td:last-child {
	text-align: right;
}

.pending-activity .table-ad-row td {
	padding: 0 !important;
}

.pending-activity .table-ad {
	display: block;
	background: #5394be;
	width: 100%;
	text-transform: none;
	color: #fff;
	padding: 0.52625rem 0.625rem;
	-webkit-transition: background-color 300ms ease-out;
	-moz-transition: background-color 300ms ease-out;
	transition: background-color 300ms ease-out;
}
.pending-activity .table-ad:hover {
	background: #3c7ba3;
}

.pending-activity .table-ad .table-ad-heading {
	font-weight: 500;
	font-size: 1.2em;
	display: block;
}
.pending-activity .table-ad .table-ad-subheading {
	font-weight: 300;
	display: block;
}

.pending-activity .table-ad .button.table-ad-button {
	padding: 0.7rem 1.5rem 0.8rem;
	margin: 0;
	font-size: .9rem;
}
.pending-activity .table-ad:hover .button.table-ad-button {
	background: #00456a;
}

.pending-activity .load-more-button {
	display: block;
	background: #fff;
	font-weight: 500 !important;
	color: #076191;
	border: none;
	width: 100%;
	margin-bottom: 0;
}

.pending-activity .pending-activity-transactions-table table tbody tr {
	display: none;
}
.pending-activity .pending-activity-transactions-table table tbody tr.display-desktop {
	display: block !important;
}




/* NEW TABLE */
.pending-activity-transactions-table {
  padding-bottom: 15px;
}
.pending-activity-main-row {
	margin-left: 0.9375rem !important;
	margin-right: 0.9375rem !important;
}
.pending-activity-header-row {
    background-color: #5394BE;
    color: #FFF;
    padding-top: 10px;
    padding-bottom: 10px;
    font-size: .875rem;
}
.pending-row:nth-child(even) .pending-activity-date-row {
	padding-top:10px; 
	padding-bottom:10px;
	font-size: .8rem;
	background-color: #DAEBF5;
}
.pending-row:nth-child(odd) .pending-activity-date-row {
  padding-top:10px; 
	padding-bottom:10px;
	font-size: .8rem;
	background-color: #FFF;
}
.pending-activity-date-row.desktop .row .column:last-child {
  text-align: right;
}

.pending-row .hide-for-medium-down .column:last-child,
.pending-activity-header-row .column:last-child {
  text-align: right;
}

.pending-activity-data {
  min-height: 1px;
}
/* end NEW TABLE */

	/* MEDIA QUERIES */
  @media only screen and (min-width:1025px) {
    .pending-activity-date-row.desktop {
      display: block;
    }
    .pending-activity-date-row.mobile {
      display: none;
    }
  }
	@media only screen and (max-width:1024px) {
		.pending-activity table,
		.pending-activity thead,
		.pending-activity tbody,
		.pending-activity th,
		.pending-activity td,
		.pending-activity tr {
			display: block;
		}
		.pending-activity thead tr {
			position: absolute;
			top: -9999px;
			left: -9999px;
		}
		.pending-activity tr {
			border: none;
		}
		.pending-activity td {
			border: none;
			position: relative;
			padding-left: 50%;
			font-size: .8rem;
			font-weight: 200 !important;
			text-align: right;
			line-height: .3em;
		}
		.pending-activity td:before {
			position: absolute;
			top: inherit;
			left: 10px;
			width: 45%;
			padding-right: 10px;
			white-space: normal;
			font-weight: 200 !important;
			text-align: left;
			line-height: .3em;
		}

		/* transactions table */
		.pending-activity .pending-activity-transactions-table td:nth-of-type(1):before { 
			content: "Authorization Date:";
		}
		.pending-activity .pending-activity-transactions-table td:nth-of-type(2):before {
			content: "Authorization Number:";
		}
		.pending-activity .pending-activity-transactions-table td:nth-of-type(3):before {
			content: "Description:";
		}
		.pending-activity .pending-activity-transactions-table td:nth-of-type(4):before {
			content: "Amount:";
		}
		
		/* payments table */
		.pending-activity .pending-activity-payments-table td:nth-of-type(1):before {
			content: "Date Submitted:";
		}
		.pending-activity .pending-activity-payments-table td:nth-of-type(2):before {
			content: "Reference Number:";
		}
		.pending-activity .pending-activity-payments-table td:nth-of-type(3):before {
			content: "Funds Available Date:";
		}
		.pending-activity .pending-activity-payments-table td:nth-of-type(4):before {
			content: "Amount:";
		}

		.pending-activity td:nth-of-type(2) {
			padding-left: 40%;
		}
		.pending-activity td:nth-of-type(2),
		.pending-activity td:nth-of-type(3) {
			/*text-transform: uppercase;*/
		}
		.pending-activity td:nth-of-type(2):before,
		.pending-activity td:nth-of-type(3):before {
			text-transform: none;
		}
		
		/* only show first 4 pending activity when mobile */
		.pending-activity tr:nth-child(n+5) {
			display: none;
		}

		.pending-activity .pending-activity-transactions-table table tbody tr.display-mobile {
			display: block !important;
		}
    
    /* NEW TABLE */
    .pending-activity-date-row {
      padding-top:5px; 
      padding-bottom:5px;
      font-size: .75rem;
      background-color: #DAEBF5;
      line-height: 1.8;
    }
    .pending-activity-date-row.desktop {
      display: none;
    }
    .pending-activity-date-row.mobile {
      display: block;
    }
    .pending-activity-data {
      padding-left: 15px !important;
    }


    /* end NEW TABLE */

	}
	@media only screen and (max-width:400px) {
		.pending-activity .column, 
		.pending-activity .columns {
/*			padding: 0 0.4375em;*/
		}
	}
	/* end MEDIA QUERIES */

/* END TABLE */
