﻿.table th, .table td {
	padding: 0.9rem;
	vertical-align: top;
	border-top: none;
	border-bottom: none;
}

.table tbody tr {
	border-top: 1px solid #002800;
	border-bottom: 1px solid #002800;
}

.nowrap {
    white-space: nowrap;
}

/* Responsive design */
@media screen and (max-width: 767px) {
    .responsive-table thead {
        display: none;
    }

	.responsive-table tr {
		display: block;
		margin-bottom: 1em;
	}

	.responsive-table tbody tr {
		border-bottom: none;
	}

    .responsive-table td {
        display: block;
        text-align: left;
        position: relative;
        padding-left: 0%;
    }

        .responsive-table td:before {
            content: attr(data-label);
            display: block;
            position: absolute;
            left: 0;
            top: 0;
            width: 50%;
            padding-right: 10px;
            font-weight: bold;
        }

        .responsive-table td.nowrap:before {
            white-space: nowrap;
        }
}
