/**
 * All of the CSS for your public-facing functionality should be
 * included in this file.
 */
 .wpas--rating-header {
    display: flex;
    margin-bottom: 20px;
}
.wpas--rating-wrap {
    clear: both;
    padding: 30px;
    box-shadow: 0 2px 20px rgb(0 0 0 / 8%);
    margin-bottom: 15px;
}
.wpas--rating-score {
    display: inline-flex;
    flex-direction: column;
    text-align: center;
    margin: 0 20px 10px 0;
}
.wpas--rating-score,
figure.wpas--product-img {
    flex-basis: 30%;
    max-width: fit-content;
}
.wpas--rating-meta {
    flex-basis: 70%;
}
span.wpas--overall-score {
    background: #E43917;
    color: #fff;
    font-size: 52px;
    padding: 0px 20px;
    line-height: 80px;
}
span.wpas--rating-text {
    background-color: #000;
    color: #fff;
    font-size: 12px;
    font-weight: bold;
    padding: 6px 0;
}
h4.wpas--rating-title {
    font-size: 26px;
    font-weight: bold;
    color: #000;
    line-height: 30px;
    margin-bottom: 15px;
}
figure.wpas--product-img {
    height: auto;
    margin-left: auto;
    text-align: right;
}
figure.wpas--product-img img {
    max-height: 120px;
}
a.wpas--product-link {
    display: inline-block;
    text-align: center;
    background-color: #da291c;
    padding: 2px 15px;
    color: #fff;
    font-weight: bold;
    border-radius: 3px;
    text-decoration: none !important;
}
a.wpas--product-link:hover {
    box-shadow: -1px 6px 13px rgb(218 41 28 / 40%) !important;
}
hr.wpas-score-separator {
    background-color: #c1c1c1;
    margin-bottom: 20px;
}
.wpas--rating-meter {
    background: #dddddd;
    border-radius: 7px;
}
span.wpas--rating-bar {
    background: #E43917;
    padding: 7px;
    border-radius: 7px;
    display: block;
}
.wpas--rating-detail {
    display: flex;
    justify-content: space-between;
    padding: 0 3px;
}
.wpas--rating-categories .wpas--rating-meter:not(:last-child) {
    margin-bottom: 10px;
}
.wpas--rating-categories {
    margin-bottom: 25px;
}

/* Pros-Cons */
.wpas--pros-cons-wrap {
    display: flex;
    justify-content: space-between;
}
span.wpas--pros-title,
span.wpas--cons-title {
    font-size: 20px;
    font-weight: bold;
}
span.wpas--pros-title {color: #58c649;}
span.wpas--cons-title {color: #f24f4f;}
.wpas--rating-categories {
    margin-bottom: 25px;
}
ul.wpas--pros-list,
ul.wpas--cons-list {
    margin: 0;
    padding: 0;
    list-style: none;
}
ul.wpas--pros-list li {
    font-size: 18px;
}
ul.wpas--pros-list span.icon-checkmark:before {
    background-color: #58c649;
    font-size: 12px;
    padding: 4px;
    border-radius: 50%;
    color: #fff;
    margin-right: 8px;
}
ul.wpas--cons-list span.icon-cross:before {
    font-size: 14px;
    padding: 5px;
    border-radius: 50%;
    color: #f24f4f;
    margin-right: 8px;
}

/* Responsive */
@media (max-width: 767px) {
    .wpas--pros-cons-wrap {
        flex-direction: column;
    }
    .wpas--pros-wrap {
        margin-bottom: 30px;
    }
}
@media (max-width: 567px) {
    .wpas--rating-wrap {
        padding: 15px;
    }
    .wpas--rating-header {
        flex-direction: column;
    }
    figure.wpas--product-img {
        margin-left: 0;
        text-align: left;
        margin-top: 20px;
        flex-basis: 100%;
        max-width: 100%;
    }
    figure.wpas--product-img img {
        max-height: 100%;
        width: auto;
    }
    .wpas--rating-score {
        flex-basis: 100%;
        max-width: 100%;
        margin: 0 0 20px;
    }
}