﻿/* Tables */

.table-section {
    display: block;
    background: #FFF;
    border: none;
    border-radius: 3px;
    -moz-border-radius: 3px;
    margin: 30px 0;
    /*overflow: hidden;*/

    -webkit-box-shadow: 3px 3px 10px 0 rgba(0,0,0,0.3);
    box-shadow: 3px 3px 10px 0 rgba(0,0,0,0.3);
}
.table-section .table-header {
    display: block;
    position: relative;
    background: #232B3D;
    height: 50px;
    padding-right: 50px;
    text-align: left;
    color: #FFF;
}
.table-section .table-header.table-heading-primary { background: #6F7E95; }
.table-section .table-header.table-heading-secondary { background: #6C727D; }
.table-section .table-header.table-heading-tertiary { background: #989DA4; }

.table-section .table-header .table-count {
    position: relative;
    border-right: 1px solid rgba( 255, 255, 255, 0.35 );
    width: 95px;
    height: 50px;
    padding: 10px 15px;
    font-size: 20px;
    line-height: 30px;
    text-align: left;
    float: left;
}
.table-section .table-header .table-title {
    display: inline-block;
    padding: 15px 20px;
    font-family: 'Open Sans';
    font-size: 14px;
    font-weight: bold;
    line-height: 20px;
    text-transform: uppercase;
    float: left;
}

.table-section .table-header .table-daterange {
    position: relative;
    white-space: nowrap;
    float: left;
}
.table-section .table-header .table-daterange .daterange-toggle {
    position: relative;
    background: none;
    border: none;
    border-left: 1px solid rgba( 255, 255, 255, 0.35 );
    outline: 0;
    width: 50px;
    height: 50px;
    padding: 0;
    font-size: 20px;
    line-height: 50px;
    color: #fff;
    cursor: pointer;
}
.table-section .table-header .table-daterange .daterange-toggle i {
    margin: 0;
}
.table-section .table-header .table-daterange .daterange-input {
    display: inline-block;
    border-left: 1px solid rgba( 255, 255, 255, 0.35 );
    height: 50px;
    padding: 10px 15px;
    overflow: hidden;
    float: left;
}
.table-section .table-header .table-daterange .daterange-input .daterange-divider {
    display: inline-block;
    margin: 0 15px;
    font-size: 16px;
}
.table-section .table-header .table-daterange .daterange-input .form-control {
    display: inline-block;
    width: 150px;
    height: 30px;
    padding: 5px 15px;
    font-size: 16px;
    line-height: 20px;
    color: #000;
}
.table-section .table-header .table-search {
    position: relative;
    white-space: nowrap;
    float: left;
}
.table-section .table-header .table-search .search-toggle {
    position: relative;
    background: none;
    border: none;
    border-left: 1px solid rgba( 255, 255, 255, 0.35 );
    outline: 0;
    width: 50px;
    height: 50px;
    padding: 0;
    font-size: 20px;
    line-height: 50px;
    color: #fff;
    cursor: pointer;
}
.table-section .table-header .table-search .search-toggle i {
    margin: 0;
}
.table-section .table-header .table-search .search-input {
    display: inline-block;
    border-left: 1px solid rgba( 255, 255, 255, 0.35 );
    height: 50px;
    padding: 10px 15px;
    overflow: hidden;
    float: left;
}
.table-section .table-header .table-search .search-input .form-control {
    height: 30px;
    padding: 5px 15px;
    font-size: 16px;
    line-height: 20px;
    color: #000;
}
.table-section .table-header .table-status {
    display: inline-block;
    height: 50px;
    padding: 15px 20px;
    line-height: 20px;
}
.table-section .table-header .table-status .status {
    display: table-cell;
    padding: 0 30px;
    font-family: 'Open Sans';
    font-size: 12px;
    line-height: 14px;
    vertical-align: middle;
}
.table-section .table-header .table-status .status i {
    font-size: 14px;
}
.table-section .table-header .table-toggle {
    position: absolute;
    border-left: 1px solid rgba( 255, 255, 255, 0.35 );
    top: 0;
    right: 0;
    bottom: 0;
    width: 50px;
    cursor: pointer;
}
.table-section .table-header .table-toggle:after,
.table-section .table-header .table-toggle:before {
	content: '';
    display: block;
	position: absolute;
	border-top: 1px solid #FFF;
	top: 50%;
	left: 50%;
	height: 0;
	width: 10px;
    
    -moz-transition: margin 0.2s linear;
    -webkit-transition: margin 0.2s linear;
    -o-transition: margin 0.2s linear;
    transition: margin 0.2s linear;
}
.table-section .table-header .table-toggle:after {
	margin-left: -2px;
    -moz-transform: rotate(55deg);
    -webkit-transform: rotate(55deg);
    -o-transform: rotate(55deg);
    -ms-transform: rotate(55deg);
    transform: rotate(55deg);
}
.table-section .table-header .table-toggle:before {
	margin-left: -8px;
    -moz-transform: rotate(125deg);
    -webkit-transform: rotate(125deg);
    -o-transform: rotate(125deg);
    -ms-transform: rotate(125deg);
    transform: rotate(125deg);
}
.table-section.closed .table-header .table-toggle:after {
	margin-left: -8px;
}
.table-section.closed .table-header .table-toggle:before {
	margin-left: -2px;
}

.table-section .table-body {
    width: 100%;
}
.table-section .table-body table {
    width: 100%;
}
.table-section .table-body table th,
.table-section .table-body table td {
    padding: 0 10px;
    vertical-align: middle;
}
.table-section .table-body table th:first-child,
.table-section .table-body table td:first-child {
    padding-left: 20px;
}
.table-section .table-body table th:last-child,
.table-section .table-body table td:last-child {
    padding-right: 20px;
}
.table-section .table-body table thead {
    background: #DFE2E5;
}
.table-section .table-body table thead th,
.table-section .table-body table thead td {
    height: 40px;
    padding-top: 10px;
    padding-bottom: 10px;
    font-family: 'Open Sans';
    font-size: 11px;
    line-height: 20px;
    color: #666666;
}
.table-section .table-body table tbody {
    background: #FFF;
}
.table-section .table-body table tbody th,
.table-section .table-body table tbody td {
    border-top: 1px solid #CCCCCC;
    height: 46px;
    padding-top: 10px;
    padding-bottom: 10px;
    font-family: Lato;
    font-size: 12px;
    line-height: 20px;
    color: #000;
}
.table-section .table-body table tbody tr:first-child th,
.table-section .table-body table tbody tr:first-child td {
    border-top: none;
}
.table-section .table-body table tbody tr:hover {
    background: rgba( 31, 189, 212, 0.05 );
}
.table-section .table-body table tbody tr.disabled th,
.table-section .table-body table tbody tr.disabled td {
    background: #e5e5e5;
}

/*
.table {
    display: block;
    background: #FFF;
    border: none;
    border-radius: 3px;
    -moz-border-radius: 3px;
    margin: 30px 0;
    overflow: hidden;

    -webkit-box-shadow: 3px 3px 10px 0 rgba(0,0,0,0.3);
    box-shadow: 3px 3px 10px 0 rgba(0,0,0,0.3);
}
.table .table-header {
    display: block;
    position: relative;
    background: #232B3D;
    height: 50px;
    padding-right: 50px;
    color: #FFF;
}
.table .table-header.table-heading-primary { background: #6F7E95; }
.table .table-header.table-heading-secondary { background: #6C727D; }
.table .table-header.table-heading-tertiary { background: #989DA4; }
.table .table-header .table-title {
    display: inline-block;
    padding: 15px 20px;
    font-family: 'Open Sans';
    font-size: 14px;
    font-weight: bold;
    line-height: 20px;
    text-transform: uppercase;
    float: left;
}
.table .table-header .table-status {
    display: table;
    height: 50px;
    float: right;
}
.table .table-header .table-status .status {
    display: table-cell;
    padding: 0 30px;
    font-family: 'Open Sans';
    font-size: 12px;
    line-height: 14px;
    vertical-align: middle;
}
.table .table-header .table-status .status i {
    font-size: 14px;
}
.table .table-header .table-toggle {
    position: absolute;
    border-left: 1px solid rgba( 255, 255, 255, 0.35 );
    top: 0;
    right: 0;
    bottom: 0;
    width: 50px;
    cursor: pointer;
}
.table .table-header .table-toggle:after,
.table .table-header .table-toggle:before {
	content: '';
    display: block;
	position: absolute;
	border-top: 1px solid #FFF;
	top: 50%;
	left: 50%;
	height: 0;
	width: 10px;
    
    -moz-transition: margin 0.2s linear;
    -webkit-transition: margin 0.2s linear;
    -o-transition: margin 0.2s linear;
    transition: margin 0.2s linear;
}
.table .table-header .table-toggle:after {
	margin-left: -2px;
    -moz-transform: rotate(55deg);
    -webkit-transform: rotate(55deg);
    -o-transform: rotate(55deg);
    -ms-transform: rotate(55deg);
    transform: rotate(55deg);
}
.table .table-header .table-toggle:before {
	margin-left: -8px;
    -moz-transform: rotate(125deg);
    -webkit-transform: rotate(125deg);
    -o-transform: rotate(125deg);
    -ms-transform: rotate(125deg);
    transform: rotate(125deg);
}
.table.closed .table-header .table-toggle:after {
	margin-left: -8px;
}
.table.closed .table-header .table-toggle:before {
	margin-left: -2px;
}

.table .table-body table {
    width: 100%;
}
.table .table-body table th,
.table .table-body table td {
    padding: 0 20px;
    vertical-align: middle;
}
.table .table-body table thead {
    background: #DFE2E5;
}
.table .table-body table thead th,
.table .table-body table thead td {
    height: 40px;
    padding-top: 10px;
    padding-bottom: 10px;
    font-family: 'Open Sans';
    font-size: 11px;
    line-height: 20px;
    color: #666666;
}
.table .table-body table tbody {
    background: #FFF;
}
.table .table-body table tbody th,
.table .table-body table tbody td {
    border-top: 1px solid #CCCCCC;
    height: 46px;
    padding-top: 10px;
    padding-bottom: 10px;
    font-family: Lato;
    font-size: 12px;
    line-height: 20px;
    color: #000;
}
.table .table-body table tbody tr:first-child th,
.table .table-body table tbody tr:first-child td {
    border-top: none;
}
.table .table-body table tbody tr:hover {
    background: rgba( 31, 189, 212, 0.05 );
}
*/