.magic-table {
    width: 100%;
    border-collapse: collapse;
}

@media only screen and (max-width: 768px) {
	.magic-table{
		display: block;
		clear: both;
	}
    .magic-table tbody, .magic-table tbody, .magic-table tr, .magic-table td, .magic-table th, .magic-table thead {
        display: block;
    }
}

@media only screen and (max-width: 768px) {
    .magic-table thead tr {
        position: absolute;
        top: -9999px;
        left: -9999px;
    }
}

.magic-table tr {
    background: white;
}

.magic-table tr:nth-of-type(odd) {
    background: #eeeeee;
}

@media only screen and (max-width: 768px) {
    .magic-table tr {
        border: 1px solid #cccccc;
    }
}

.magic-table td {
    padding: 6px;
    border: 1px solid #ccc;
    text-align: left;
}

@media only screen and (max-width: 768px) {
    .magic-table td {
        border: none;
        border-bottom: 1px solid #eee;
        position: relative;
        padding-left: 50%;
    }
    .magic-table td:before {
        position: absolute;
        top: 6px;
        left: 6px;
        width: 45%;
        padding-right: 10px;
        white-space: nowrap;
    }
}

.magic-table th {
    padding: 6px;
    border: 1px solid #ccc;
    text-align: left;
    color: white;
    background-color: black;
}

.magic-table .show-mobile {
    display: none;
}

@media only screen and (max-width: 768px) {
    .magic-table .show-mobile {
        display: inline-block;
    }
}

.magic-table .menuLink {
    font-size: 10px;
}
