// CPA
//------------------------------------

table {
    width: 100%;
    display: table;
    border-collapse: collapse;
    border-spacing: 0;
    margin-bottom: 50px;

    td, th {
        padding: 0;
        padding: 15px 5px;
        display: table-cell;
        text-align: left;
        vertical-align: middle;
        border-radius: 2px
    }

    tbody {
        border: 0;
    }

    thead {
        border-bottom: 1px solid #d0d0d0;
    }

    table, th, td {
        border: none;
    }
}

table.bordered > thead > tr, table.bordered > tbody > tr {
    border-bottom: 1px solid #d5ecec
}

table.striped > tbody > tr:nth-child(odd) {
    background-color: #d5ecec
}

table.striped > tbody > tr > td {
    border-radius: 0
}

table.highlight > tbody > tr {
    transition: background-color .25s ease;
}

table.highlight > tbody > tr:hover {
    background-color: #d5ecec;
}

table.centered thead tr th, table.centered tbody tr td {
    text-align: center;
}

//video
.video-cpa {
    text-align: center;

    iframe {
        @media screen and (max-width:480px) {
            height: 250px;
        }

        @media screen and (max-width:600px) {
            width: 100%;
        }
    }
}