    .cards::after {
        content: "";
        display: table;
        clear: both
    }

    .cards [class*="col-"] {
        box-sizing: border-box
    }

    .cards .col-sm-4 {
        float: left;
        width: 100%
    }

    .cards .col-sm-offset-4 {
        margin-left: 0
    }

    @media (min-width:768px) {
        .cards .col-sm-4 {
            width: 33.3333%
        }

        .cards .col-sm-offset-4 {
            margin-left: 33.3333%
        }
    }

    .cards .col-text {
        padding: 14px 18px;
        font-weight: 700;
        text-transform: uppercase;
    }

    .cards .col-A,
    .cards .col-B,
    .cards .col-C,
    .cards .col-D {
        background: #ff9700;
        color: #fff;
        font-family: 'CJOnlyOneNewTitleBold', sans-serif;
    }

    .cards .col-D.top {
        margin-top: 0
    }

    .cards .col-list {
        margin: 0;
        padding: 18px 22px 22px;
        list-style-position: outside;
        background: #fff;
    }

    .cards .col-list li {
        margin-bottom: 10px
    }

    .cards .col-list ul {
        margin-top: 8px
    }

    .cards .colA,
    .cards .colB,
    .cards .colC,
    .cards .colD {
        margin-bottom: 20px;
    }

    html .cards .col-A {
        background: rgba(239, 21, 30, 0.75);
    }

    html .cards .col-B {
        background: rgba(0, 0, 0, 0.75);
    }

    html .cards .col-C {
        background: rgba(255, 151, 0, 0.75);
    }

    html .cards .col-D {
        background: rgba(0, 110, 205, 0.75);
    }

    .terms-popover-wrap {
        position: relative;
    }

    .terms-popover-wrap button {
        font-weight: 900;
    }

    .terms-popover-trigger {
        background: none;
        border: 0;
        padding: 0;
        margin: 0;
        color: inherit;
        font: inherit;
        text-decoration: underline;
        cursor: pointer;
    }

    .terms-popover {
        position: absolute;
        top: calc(100% + 10px);
        left: 0;
        z-index: 1000;
        width: 320px;
        max-width: min(320px, 90vw);
        background: #fff;
        border: 1px solid rgba(0, 0, 0, .2);
        border-radius: 6px;
        box-shadow: 0 5px 14px rgba(0, 0, 0, .18);
        opacity: 0;
        visibility: hidden;
        transform: translateY(6px);
        transition: opacity 180ms ease, transform 180ms ease, visibility 0s linear 180ms;
    }

    .terms-popover.is-open {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
        transition: opacity 180ms ease, transform 180ms ease, visibility 0s;
    }

    .terms-popover::before {
        content: "";
        position: absolute;
        top: -8px;
        left: 18px;
        width: 14px;
        height: 14px;
        background: #f7f7f7;
        border-top: 1px solid rgba(0, 0, 0, .2);
        border-left: 1px solid rgba(0, 0, 0, .2);
        transform: rotate(45deg);
    }

    .terms-popover-title {
        padding: 8px 14px;
        font-size: 14px;
        font-weight: 700;
        background: #f7f7f7;
        border-bottom: 1px solid #ebebeb;
        border-radius: 6px 6px 0 0;
    }

    .terms-popover-content {
        padding: 12px 14px;
        font-size: 14px;
        line-height: 1.45;
    }

    .terms-popover-content p {
        margin: 0 0 12px;
    }

    .terms-popover-content p:last-child {
        margin-bottom: 0;
    }

    .terms-popover-content a {
        font-weight: 700;
    }

    .terms-popover-trigger:hover {
        transform: scale(1);
        background: transparent;
        color: #aaa;
    }