﻿.wallet-card-wrapper {
    /*display: flex;*/
    /*flex-direction: column;*/
    /*width: 48%;*/
    /*margin: 4%;*/
}
.wallet-card {
    padding: 15px;    
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 15px;
    box-shadow: 0 0 6px 0 rgba(34, 34, 34, 0.2);
    background-color: white;
}
.wallet-card p {
    color: black;
}
.wallet-card .rating-stars {
    background-position: right 0px;
}
.wallet-card .primary-cta {
    padding: 0;
    margin-top: 5px;
}
.wallet-card .link-cta {
    display: block;
    text-align: center;
    margin-top: 10px;
}
.wallet-card__heading {
    font-weight: 500;
}
.wallet-card__logo {
    height: 125px;
    margin-top: -15px;
    margin-left: -15px;
    margin-right: -15px;
    background-color: white;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    margin-bottom: 25px;
    border-bottom-color: #DDDDDD;
    border-bottom-style: solid;
    border-bottom-width: 1px;
    padding: 35px;
    background-origin: content-box;
}
.wallet-card__text {
    width: 60%;
    float: left;
}
.wallet-card__text p {
    font-size: 14px;
    line-height: 1.14;
    color: #444444;
    margin-top: 7px;
}
.wallet-card__rating {
    width: 40%;
    float: left;
    text-align: right;
}
.wallet-card__rating-text {
    font-size: 12px;
    display: block;
    margin-top: 7px;
    line-height: 1.14;
}
.wallet-card .rating-stars {
    background-position-x: right !important;
}

@media only screen and (min-width: 992px) {
    .wallet-card-wrapper {
        display: flex;
        flex-direction: column;
        width: 48%;
        margin: 2%;
    }
    .wallet-card {
        width: 100%;
        float: left;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }
    .wallet-card__content {
        -webkit-box-flex: 1;
        -ms-flex-positive: 1;
        flex-grow: 1;
    }
    .wallet-card:last-child {
        margin-right: 0;
    }
    .review-content__similar-reviews .wallet-card-wrapper {
        width: 48%;
        margin-right: 2%;
    }
    .review-content__similar-reviews .wallet-card:nth-of-type(2) {
        margin-right: 0;
    }
}