
.review-summary {
    position: relative;
    display: flex;
    width: 100%;
    border: 1px solid #d1d1d3;
    margin: 20px 0;
    -webkit-box-shadow: 4px 4px 12px 0px #9698a0;
    -moz-box-shadow: 4px 4px 12px 0px #9698a0;
    box-shadow: 4px 4px 12px 0px #9698a0;
}

.review-summary .review-summary-item {
    flex-basis: 33.3%;
    padding: 10px;
    text-align: center;
    display: flex;
    flex-direction: column;
}

.review-summary .review-summary-item + .review-summary-item {
    border-left: 1px solid #d1d1d3;
}

.review-summary .review-summary-item .review-summary-body {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

.review-summary .review-summary-item img {
    max-width: 200px;
    max-height: 200px;
    height: auto;
    width: auto;
    margin: 0 auto;
    display: block;
}

.review-badge {
    width: 106px;
    text-align: center;
    min-height: 80px;
}

.review-summary .review-badge {
    margin: -10px auto 10px auto;
}

.review-item .review-badge {
    position: absolute;
    right: 50px;
}

.review-badge .review-badge-top {
    width: 114px;
    height: 6px;
}

.review-badge.review-badge-red .review-badge-top {
    background: url('/static/images/review/review-badge-red-top.png') no-repeat;
}

.review-badge.review-badge-black .review-badge-top {
    background: url('/static/images/review/review-badge-black-top.png') no-repeat;
}

.review-badge .review-badge-bottom {
    width: 106px;
    height: 12px;
}

.review-badge.review-badge-red .review-badge-bottom {
    background: url('/static/images/review/review-badge-red-bottom.png') no-repeat;
}

.review-badge.review-badge-black .review-badge-bottom {
    background: url('/static/images/review/review-badge-black-bottom.png') no-repeat;
}

.review-badge.review-badge-red .review-badge-middle {
    background-color: #f64845;
}

.review-badge.review-badge-black .review-badge-middle {
    background-color: #000;
}

.review-badge h3 {
    margin: 0 !important;
    padding: 7px !important;;
    font-size: 14px !important;
    color: #fff !important;
    text-transform: uppercase;
}

.review-summary .review-summary-item h2 {
    margin: 10px 0;
    font-size: 22px;
}

.review-rating {
    height: 20px;
    width: 100px;
    background-image: url('/static/images/review/review-star-gray.png');
    margin: 0 auto;
}

.review-rating .review-rating-stars {
    height: 20px;
    width: 0;
    background-image: url('/static/images/review/review-star-gold.png');
}

.review-rating.review-rating-0_5 .review-rating-stars {width: 10px}
.review-rating.review-rating-1_0 .review-rating-stars {width: 20px}
.review-rating.review-rating-1_5 .review-rating-stars {width: 30px}
.review-rating.review-rating-2_0 .review-rating-stars {width: 40px}
.review-rating.review-rating-2_5 .review-rating-stars {width: 50px}
.review-rating.review-rating-3_0 .review-rating-stars {width: 60px}
.review-rating.review-rating-3_5 .review-rating-stars {width: 70px}
.review-rating.review-rating-4_0 .review-rating-stars {width: 80px}
.review-rating.review-rating-4_5 .review-rating-stars {width: 90px}
.review-rating.review-rating-5_0 .review-rating-stars {width: 100px}

.review-summary .review-button-orange {
    display: inline-block;
    background-color: #ffa41c;
    height: 50px;
    width: 100%;
    margin: 20px 0;
    border-radius: 5px;
    text-decoration: none;
    text-transform: uppercase;
    color: white;
    font-family: 'Figtree';
    font-weight: bold;
    font-size: 18px;
    line-height: 50px;
}

.review-summary .review-button-orange:hover {
    background-color: #fa8900;
}

.review-summary-nav {
    display: none;
}

table.review-list {
    width: 100%;
}

table.review-list th h3 {
    margin: 0;
    padding: 10px;
    background: #f4f4f4;
}

table.review-list tr td {
    border-top: 1px solid #f4f4f4;
    border-right: 1px solid #f4f4f4;
}

table.review-list tr.first-row td {
    border-top: none;
}

table.review-list tr td:last-child {
    border-right: none;
}

table.review-list .review-button-orange {
    width: 150px;
    height: 32px;
    line-height: 32px;
    font-size: 12px;
}

table.review-list h3.review-list-title {
    font-size: 16px;
    margin: 0;
}

table.review-list h3.review-list-title a {
    color: inherit;
}

table.review-list img {
    max-width: none !important;
}

table.review-list-mobile {
    display: none;
}

@media screen and (max-width: 768px) {
    table.review-list-desktop {
        display: none;
    }
    table.review-list-mobile {
        display: table;
    }

    table.review-list img {
        max-width: 100% !important;
        height: auto;
    }

    table.review-list h3.review-list-title {
        font-size: 14px !important;
    }

    table.review-list .review-rating {
        margin-top: 20px;
    }
}

@media screen and (max-width: 768px) {
    .review-summary-nav {
        display: block;
        position: absolute;
        top: 50%;
        margin-top: -20px;
    }

    .review-summary-nav.review-summary-nav-prev {
        left: 15px;
    }

    .review-summary-nav.review-summary-nav-next {
        right: 15px;
    }

    .review-summary .review-summary-item {
        flex-basis: 100%;
        display: none;
    }

    .review-summary .review-summary-item:first-of-type {
        display: flex;
    }

}

.review-item.review-item-embeded {
    position: relative;
    border: 1px solid #d1d1d3;
    -webkit-box-shadow: 4px 4px 12px 0px #9698a0;
    -moz-box-shadow: 4px 4px 12px 0px #9698a0;
    box-shadow: 4px 4px 12px 0px #9698a0;
}

.review-item.review-item-embeded .blog-body {
    padding: 0 20px;
}

.review-item.review-item-embeded .review-item-pros-cons {
    padding: 0 20px;
}

.review-item.review-item-embeded h2 {
    margin: 0;
    padding: 20px;
    max-width: calc(100% - 100px);
}

.review-item.review-item-embeded.review-item-embeded-collapsed {
    max-height: 800px;
    overflow: hidden;
}

.review-item.review-item-embeded .review-item-embeded-show-more {
    display: none;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background: linear-gradient(0deg, rgba(255,255,255,1) 0%, rgba(255,255,255,1) 50%, rgba(255,255,255,0) 100%);
}

.review-item.review-item-embeded.review-item-embeded-collapsed .review-item-embeded-show-more {
    display: flex;
}

.review-item.review-item-embeded .review-item-embeded-show-more a {
    color: #1588e2;
    padding: 20px;
    align-self: flex-end;
    cursor: pointer;
}

.review-item.review-item-embeded .review-item-embeded-show-more a:hover {
    text-decoration: underline;
}

.review-item .review-item-image {
    text-align: center;
    padding: 20px;
    background: rgb(225,225,225);
    background: linear-gradient(90deg, rgba(225,225,225,1) 0%, rgba(255,255,255,1) 30%, rgba(255,255,255,1) 60%, rgba(225,225,225,1) 100%);
}

.review-item .review-item-image img {
    margin: 0 auto;
    max-width: 100%;
    height: auto;
}

.review-item-button {
    text-align: center;
}

.review-button-orange {
    display: inline-block;
    background-color: #ffa41c;
    height: 50px;
    width: 240px;
    margin: 20px auto;
    border-radius: 5px;
    text-decoration: none;
    text-transform: uppercase;
    color: white;
    font-family: 'Figtree';
    font-weight: bold;
    font-size: 18px;
    line-height: 50px;
    text-align: center;
}

.review-button-orange:hover {
    background-color: #fa8900;
    text-decoration: none;
    color: white;
}

.review-item-pros-cons {
    width: 100%;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.review-item-pros-cons .review-item-cons, .review-item-pros-cons .review-item-pros {
    flex-basis: 45%;
}

@media screen and (max-width: 768px) {
    .review-item-pros-cons .review-item-cons, .review-item-pros-cons .review-item-pros {
        flex-basis: 100%;
    }
    .review-item-pros-cons .review-item-cons {
        margin-top: 20px;
    }

}

.review-item-pros-cons .review-item-cons {
    border: 1px solid #db615a;
}

.review-item-pros-cons .review-item-cons .review-item-pros-cons-header {
    background-color: #db615a;
}

.review-item-pros-cons-header {
    color: white;
    padding: 10px;
}

.review-item-pros-cons-header h4 {
    line-height: 1;
    margin: 0;
    font-family: 'Figtree';
    font-weight: bold;
    font-size: 18px;
}

.review-item-pros-cons .review-item-pros {
    border: 1px solid #60cf65;
}

.review-item-pros-cons .review-item-pros .review-item-pros-cons-header {
    background-color: #60cf65;
}

.review-item-pros-cons ul {
    margin-top: 10px;
}

.review-item-pros-cons .review-item-pros ul {
    list-style-image: url('/static/images/review/review-list-item-pros.png');
}

.review-item-pros-cons .review-item-cons ul {
    list-style-image: url('/static/images/review/review-list-item-cons.png');
}