/* This is the dashboard styling */

.list-table table {
    width: 100%;
    border-collapse: collapse;
}
.list-table table > tbody > tr > td {
    padding: 15px;
    vertical-align: top;
    font-family: 'Roboto-Light', Arial, sans-serif !important;
}
.list-table table.no-width {
    width: auto;
}
.list-table table > tbody > tr:not([data-rowid]) > td {
    font-family: 'Roboto-Black', Arial, sans-serif !important;
    border-top: solid 2px #B2B2B2;
    border-bottom: solid 1px #B2B2B2;
}

.list-table table > tbody > tr > td:not(:last-child) {
    border-right: solid 1px #B2B2B2;
}

.list-table table > tbody > tr:nth-child(even) > td {
    background-color: #F0F0F0;
}
.list-table table > tbody > tr:last-child > td {
    border-bottom: solid 1px #B2B2B2;
}



.body-list-table table {
    width: 100%;
    border-collapse: collapse;
}
.body-list-table table > tbody > tr > td {
    padding: 15px;
    vertical-align: top;
}
.body-list-table table > tbody > tr:first-child > td {
	font-family: 'Roboto-Black', Arial, sans-serif !important;
    border-top: solid 2px #B2B2B2;
    border-bottom: solid 1px #B2B2B2;
}

.body-list-table table > tbody > tr > td:first-child {
    border-left: solid 2px #B2B2B2;
}
.body-list-table table > tbody > tr > td:last-child {
    border-right: solid 2px #B2B2B2;
}
.body-list-table table > tbody > tr > td:not(:last-child) {
    border-right: solid 1px #B2B2B2;
}
.body-list-table table > tbody > tr > td {
    border-bottom: solid 1px #B2B2B2;
}
.body-list-table table > tbody > tr:nth-child(even) > td {
    background-color: #F0F0F0;
}
.body-list-table table > tbody > tr:last-child > td {
    border-bottom: solid 2px #B2B2B2;
}







.list-photo {
    display: inline-block;
    width: 100px;
    height: 100px;
    cursor: pointer;
    background-color: #FFF;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: contain;
    margin-right: 10px;
}
.list-photo.removable {
    border: solid 1px #B2B2B2;
}
.list-photo.removable:before {
    content: url(../../assets/images/delete_icon.gif);
    top: 5px;
    left: 5px;
    background-color: #FFF;
    vertical-align: middle;
}
.list-photo.selected {
    border: 2px solid #F9CD04;
}




.list-status {
    white-space: nowrap;
}

.list-status:not(.text) {
    font-family: 'Roboto-Black', Arial, sans-serif !important;
    color: #FFF !important;
    display: inline-block;
    padding: 4px 10px;
    border-radius: 40px;
    -moz-border-radius: 40px;
    background-color: #000;
    margin-bottom: 10px;
}
.list-status:not(.text).orange {
    background-color: #FF9900;
}
.list-status:not(.text).green {
    background-color: #668D00;
}
.list-status:not(.text).grey {
    background-color: #999;
}
.list-status:not(.text).red {
    background-color: #CE0000;
}


.list-status.text {
    font-family: 'Roboto-Black', Arial, sans-serif !important;
}
.list-status.text.orange {
    color: #FF9900;
}
.list-status.text.green {
    color: #668D00;
}
.list-status.text.grey {
    color: #999;
}
.list-status.text.red {
    color: #CE0000;
}

.link-action:not(.at-end) {
    background: url(../../assets/images/solid_arrow_small.gif) no-repeat left center;
    padding-left: 25px;
}

.link-action.at-end {
    background: url(../../assets/images/solid_arrow_small.gif) no-repeat right center;
    padding-right: 20px;
    margin-right: 5px;
}

.mini-header {
    display: block;
    margin-top: 5px;
    font-family: 'Roboto-Black', Arial, sans-serif !important;
}

.collapsible-div {
	display: inline-block;
}

.collapsible-div span:not(.trigger) {
	display: none;
}
.collapsible-div .trigger {
	text-decoration: underline;
	cursor: pointer;
	display: block;
}
.collapsible-div.active span:not(.trigger) {
	display: block;
}
.collapsible-div.active .trigger {
	display: none;
}


.events [data-image] {
	padding: 0px;
}

.events .start-date {
	display: inline-block;
    background-color: rgba(255,255,255,0.8);
    border-radius: 0px 0px 0px 5px;
    -moz-border-radius: 0px 0px 0px 5px;
    color: #666;
    font-family: 'Roboto-Black', Arial, sans-serif !important;
    font-size: calc(8px + 0.3vw);
    float: right;
    padding: 3px 4px;
}

.events .online-event {
	display: inline-block;
    background-color: rgba(255,255,255,0.8);
    border-radius: 0px 0px 5px 0px;
    -moz-border-radius: 0px 0px 5px 0px;
    background: url(../../assets/images/video_icon.gif) rgba(255,255,255,0.8) no-repeat center center;
    background-size: contain;
    float: left;
    width: 40px;
    height: 26px;
}



/* -------------------------------------------------------------------------- */
/* CSS for small screens */
/* -------------------------------------------------------------------------- */
@media only screen and (max-width:650px){


.list-table table > tbody > tr > td:not(:last-child) {
    border-right: 0px;
}

.body-list-table table {
    border-top: solid 2px #B2B2B2;
    border-right: solid 2px #B2B2B2;
}

.mini-cell {
	white-space: pre-line !important;
}
td .mini-cell:last-child {
	margin-bottom: 30px !important;
}

}