﻿/*Basic css*/

/*Tables*/
.bsaPlgEditionsTable {
    border-collapse: collapse;
    width: 100%;
    padding: 0;
    margin: 0;
}

    .bsaPlgEditionsTable caption {
        margin-bottom: 15px;
        text-align: center;
        font-weight: 700;
    }

    .bsaPlgEditionsTable th,
    .bsaPlgEditionsTable td {
        text-align: center;
    }

@media only screen and (max-width: 800px) {
    .bsaPlgEditionsTable {
        border: none;
    }

        .bsaPlgEditionsTable thead {
            display: none;
        }

        .bsaPlgEditionsTable tbody tr {
            margin-bottom: 15px;
            display: block;
        }

        .bsaPlgEditionsTable tbody td {
            border-bottom: none;
            text-align: right;
            display: block;
        }

            .bsaPlgEditionsTable tbody td::before {
                content: attr(data-label);
                font-weight: bold;
                float: left;
            }

            .bsaPlgEditionsTable tbody td:last-child {
                border-bottom: 1px solid;
            }
}
