.dc-table-card {
    font-family: 'Open Sans', sans-serif;
    text-align: center;
}

.dc-table-card .card {
    background: #fff;
    border-radius: 3px;
    box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.2), 0 3px 10px 0 rgba(0, 0, 0, 0.19);
    width: 233px;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-right:20px;
    margin-bottom:20px;
    padding-top:20px;
}

.dc-table-card .card a.call-to-action {
    background: #0080cf;
    display: block;
    text-transform: uppercase;
    color: #fff;
    font-size: 18px;;
    font-weight: bold;
    text-decoration: none;
    line-height: 56px;
    border-radius:0 0 3px 3px;
    transition-duration: 175ms;
}

.dc-table-card .card a.review-link {
    display: block;
    background: #5c5c5c;
    color: #dcdcdc;
    font-size: 12px;
    text-decoration: none;
    text-transform: uppercase;
    line-height: 24px;
    transition-duration: 175ms;
}

.dc-table-card .card a.call-to-action:hover,
.dc-table-card .card a.review-link:hover {
    background: #50ac66;
    color: #fff;
}

.dc-table-card .card .logo-bookie {
    border-radius: 50%;
    max-width: 99px;
}
.dc-table-card .card .bonus {
    margin: 9px 0;
    text-align: center;
}


.dc-table-card .card h3 {
    font-size: 18px;
    margin: 5px 0 20px;
}

.dc-table-card .card h4 {
    color: #3fb34f;
    font-size: 18px;
    margin: 0;
    padding: 0 30px;
    text-align: center;
}

.dc-table-card .card p {
    font-size: 10px;
    padding: 0 30px;
    text-align: center;
    margin: 0;
    color: #3d3d3d;
}

.dc-table-card .term-txt {
    margin:0 0 10px;
    background: #fff;
}

.dc-table-card .term-txt p {
    color: rgb(174, 174, 174);
    text-align: left;
    background: #fff;
}

@media(max-width: 500px) {
    .dc-table-card {
		display: flex;
		justify-content: center 
	}
    .dc-table-card > * {
        display: none !important;
    }
    
    .dc-table-card > :first-child {
        display: block !important;
    }
}