:root {
    --single_blue: #38a0ff;
    --single_blue_dark: #2c86db;
    --color_dark: #000000;
}

.single-item section {
    position: relative;
    z-index: 9;
}

.container {
    max-width: 1132px;
    margin: 0 auto;
    padding: 0 16px;
}

.single-item .update_date {
    display: flex;
    align-items: center;
    gap: 3px;
    font-weight: 700;
    margin-bottom: 16px;
}

.single-item .background-svg {
    z-index: -1;
}

/* Heading */
.single_heading {
    color: var(--color-white);
}

.single-item .heading_left {
    text-align: center;
}

.single-item .heading_title h1 {
    font-weight: 900;
}

.single-item .heading_subtitle {
    font-weight: 300;
}

.single-item .heading_short-title {
    font-size: 22px;
    line-height: 1;
    margin-top: -15px;
}

.single-item .heading_wrap {
    display: flex;
    gap: 25px;
    align-items: center;
}

.single-item .heading_description {
    margin-bottom: 72px;
    max-width: 812px;
}

.single-item .heading_description p {
    line-height: 1.75;
}

.single-item .heading_description p + p {
    margin-top: 1rem;
}

.single-item .reviewers {
    display: flex;
    gap: 80px;
}

.single-item .reviewers_mobile {
    display: none;
    font-size: 0.625rem;
    color: var(--color-white);
    line-height: 0.875rem;
    font-weight: 400;
    text-align: center;
}

.single-item .reviewers_mobile a {
    font-weight: 700;
    text-decoration: underline;
}

.single-item .reviewers_written {
    display: flex;
    gap: 20px;
}

.single-item .writer {
    display: flex;
    max-width: 300px;
    align-items: flex-start;
    gap: 8px;
}

.single-item .writer img {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
}

.single-item .written_by {
    font-weight: 700;
    font-size: 14px;
    line-height: 1;
    color: var(--single_blue);
}

.single-item .written_name {
    font-weight: 700;
    font-size: 14px;
    line-height: 1;
}

.single-item .written_position {
    font-weight: 400;
    font-size: 14px;
    line-height: 1;
}

.single-item .rating_block_top {
    display: flex;
    flex-direction: column;
    align-self: stretch;
    box-sizing: border-box;
    width: 245px;
    background-color: var(--color-white);
    flex-shrink: 0;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0px 0px 13px 0px #61a9ea80;
}

.single-item .rating_heading {
    background-color: var(--color_dark);
    color: var(--color-white);
    padding: 15px;
    text-align: center;
    font-weight: 700;
    font-size: 1.125rem;
    line-height: 0.75rem;
}

.single-item .rating_content {
    flex: 1 1 auto;
    padding: 15px 10px 20px;
    overflow: auto;
    display: flex;
    flex-direction: column;
}

.single-item .rating_content_overall {
}

.single-item .rating_score_big {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.single-item .rating-component .rating-value {
    font-size: 1.375rem;
    line-height: 1rem;
    font-weight: 700;
    color: var(--color_dark);
}

.single-item .rating-component {
    display: flex;
    align-items: center;
    gap: 5px 10px;
}

.single-item .rating_content_overall .rating-component .rating-value {
    order: 2;
}

.single-item .rating-stars {
    display: flex;
    gap: 5px;
}

.single-item .rating_blocks-wrap {
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    margin-top: 15px;
}

.single-item .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem 1.5rem;
    font-size: 1.125rem;
    font-weight: 500;
    line-height: 1;
    text-align: center;
    text-decoration: none;
    white-space: nowrap;
    cursor: pointer;
    border: 1px solid transparent;
    border-radius: 22px;
    transition: background-color 0.2s ease, box-shadow 0.2s ease;
    gap: 5px;
    min-height: 34px;
}

.single-item .btn_blue {
    background-color: var(--single_blue);
    color: var(--color-white);
}

.single-item .btn_blue:hover {
    background-color: var(--color-white);
    color: var(--single_blue);
    border: 1px solid var(--single_blue);
}

.single-item .btn_big {
    font-size: 1.25rem;
    line-height: 1.375rem;
}

.single-item .rating_blocks {
    margin-bottom: 28px;
}

/* Wrap */
.double_wrap {
    display: flex;
    gap: 20px 65px;
    margin-bottom: 42px;
}

.double_wrap .list_content {
    flex: 1 1 0;
    min-width: 0;
}

.double_wrap .list_sidebar {
    width: 245px;
}

.single-item .visit_site + .pros_cons_block {
    margin-top: 0;
}

/* Ai girls */
.single-item .rating-distribution {
    display: flex;
    flex-direction: column;
    gap: 24px;
    font-family: sans-serif;
    max-width: 400px;
}

.single-item .rating-row {
    display: flex;
    align-items: center;
}

.single-item .star-label {
    font-size: 1rem;
    line-height: 1;
    font-weight: 400;
}

.single-item .rating-bar {
    flex-grow: 1;
    height: 16px;
    background-color: #eef7ff;
    border: 1px solid #75d6ff;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    margin-left: 20px;
    max-width: 106px;
}

.single-item .rating-fill {
    background-color: #ffc107;
    height: 100%;
    border-radius: 20px 0 0 20px;
    transition: width 0.3s ease;
}

.single-item .user_rating_number {
    display: flex;
}

.single-item .rating-percent {
    text-align: right;
    font-weight: 700;
    font-size: 1rem;
    line-height: 1;
    margin-left: 10px;
}

.single-item .rating_block_spec {
    display: flex;
    align-items: center;
    font-weight: 700;
    font-size: 22px;
    line-height: 28px;
    color: var(--color-white);
}

.single-item .rating_block_spec_plus {
    padding-left: 7.89%;
    padding-right: 7.89%;
}

.single-item .rating_block_spec_sum {
    padding-left: 6.49%;
    padding-right: 6.49%;
}

.single-item .rating_value_text span {
    padding: 10px;
    color: var(--color-white);
    border-radius: 31px;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 0.625rem;
    line-height: 1.125rem;
    display: inline-block;
}

.single-item .detailed_scores {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.single-item .detailed_scores li {
    display: flex;
    font-size: 1rem;
    line-height: 1;
    align-items: center;
}

.single-item .detailed_scores li .rating_score {
    margin-left: auto;
    font-size: 1rem;
    line-height: 1;
    font-weight: 700;
}

.single-item .detailed_scores li .rating_name {
    margin-left: 4px;
}

.single-item .rating_value_text .rating-great {
    background-color: green;
}

.single-item .rating_value_text .rating-superb {
    background-color: #00c714;
}

.single-item .rating_value_text .rating-nice {
    background-color: #d4c81b;
}

.single-item .rating_value_text .rating-okay {
    background-color: #38382f;
}

.single-item .rating_value_text .rating-bad {
    background-color: #b11846;
}

.single-item .user_ratings {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
}

.single-item .user_rating_total {
    font-weight: 700;
    font-size: 1.375rem;
    line-height: 1rem;
}

.single-item .user_rating_text {
    font-weight: 400;
    font-size: 1.125rem;
    line-height: 1rem;
    margin-left: 12px;
}

.single-item .user_rating_score {
    font-weight: 700;
    font-size: 1.375rem;
    line-height: 1rem;
    margin-right: 15px;
}

.single-item .rating_content_logo {
    display: flex;
    gap: 5px;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.single-item .rating_content_logo img {
    width: 78px;
    height: auto;
    justify-content: center;
    display: inline-block;
}

.single-item .rating_logo_text {
    font-weight: 700;
    font-size: 1.375rem;
    line-height: 1;
}

.single-item .rating_text_tiny {
    text-align: center;
    margin-bottom: 10px;
}

.single-item .rating_text_tiny .rating-label {
    font-size: 1.125rem;
    font-weight: 400;
    line-height: 1;
    color: #bebebe;
}

.single-item .rating_link_visit {
    margin-top: auto;
    text-align: center;
}

.single-item .overall_img {
    flex-shrink: 0;
}

.single-item .list_table_brand {
    display: flex;
    gap: 5px;
    align-items: center;
    padding: 17px 17px 35px;
}

.single-item .list_table_brand img {
    width: 78px;
    height: auto;
    display: inline-block;
}

/* List tabble */

.single-item .list_table {
    background-color: var(--color-white);
    box-shadow: 0px 0px 13px 0px #61a9ea80;
    border-radius: 20px;
}

.single-item .list_table_title {
    background-color: #ecf6ff;
    padding: 10px 20px;
    font-weight: 700;
    font-size: 1rem;
    line-height: 1;
}

.single-item .quick_links {
    padding: 10px 20px 36px;
}

.single-item .quick-links_list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.single-item .quick-links_list a {
    color: var(--color_dark);
    text-decoration: none;
    font-size: 16px;
    line-height: 1;
    transition: all 0.2s ease;
}

.single-item .quick-links_list a:hover {
    text-decoration: underline;
}

.single-item .list_table_review {
    padding-top: 10px;
    padding-bottom: 17px;
    border-top: 1px solid var(--single_blue);
    text-align: center;
}

.single-item .list_table_review_a {
    color: var(--single_blue);
    font-size: 20px;
    line-height: 1;
    font-weight: 700;
    text-decoration: none;
    user-select: none;
}

.single-item .list_table_review_a:hover {
    color: var(--single_blue_dark);
}

.single-item .visit_sidebar_but {
    text-align: center;
    margin-top: 10px;
}

/* Comments section */
.single-item .posts_header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    padding-bottom: 20px;
    margin-bottom: 40px;
    border-bottom: 1px solid #61a9ea;
}

.single-item .posts_header h3 {
    margin: 0;
}

.single-item .comment-list {
    display: flex;
    flex-direction: column;
    row-gap: 30px;
}

.single-item .comment {
    box-shadow: 0px 0px 13px 0px #61a9ea80;
    padding: 20px 30px;
    border-radius: 20px;
}

.single-item .vcard {
    display: flex;
    gap: 10px;
    align-items: center;
}

.single-item .vcard .avatar {
    border-radius: 50%;
}

.single-item .comment-metadata {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.single-item .fn {
    font-weight: 700;
    font-size: 1rem;
    line-height: 1;
}

.single-item .comment-time {
    font-weight: 400;
    font-size: 0.75rem;
    line-height: 1;
    color: var(--color_dark);
    text-decoration: none;
}

.single-item .comment-time:hover {
    text-decoration: underline;
}

.single-item .comment-meta {
    margin-bottom: 20px;
}

.single-item .comment-rating {
    margin-bottom: 10px;
}

.single-item .comment-rating .rating-component {
    gap: 3px;
}

.single-item .comment-rating .rating-component .rating-value {
    font-size: 14px;
    line-height: 1;
    font-weight: 700;
}

.single-item .comment-heading {
    font-weight: 700;
    font-size: 1.3125rem;
    line-height: 2rem;
    margin-bottom: 10px;
}

.single-item .comment-text {
    font-size: 1rem;
    line-height: 1.75rem;
}

.single-item .comment-text p {
    margin: 0;
}

.single-item .comment-text p {
    margin: 0;
}

.single-item .comments-pagination {
    display: flex;
    justify-content: center;
    margin-top: 30px;
}

.single-item .comments-pagination .nav-links {
    display: flex;
    gap: 10px;
}

.single-item .comments-pagination .nav-links a {
    display: flex;
    gap: 10px;
}

/* Alternative posts */
.single-item .alternative_posts {
    margin-top: 60px;
    z-index: 1;
}

.alternatives_title {
    margin-bottom: 40px;
}

.single-item .alternative_posts_wrap {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.single-item .alternative_posts .alternative_post {
    flex: 0 0 calc((100% - 2 * 30px) / 3);
    max-width: calc((100% - 2 * 30px) / 3);
    box-shadow: 0px 0px 13px 0px #61a9ea80;
    border-radius: 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    height: auto;
    align-items: stretch;
    align-items: center;
    transition: box-shadow 0.2s ease;
}

/* Recent post */
.recent_post {
    max-width: 100%;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.recent_post .recent_post_head_right {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.recent_post .recent_post_head {
    display: flex;
    padding: 10px 10px 15px;
    gap: 10px 32px;
}

.recent_post .recent_post_logo img {
    max-width: 65px;
    height: auto;
}

.recent_post .recent_post_logo_img {
    display: flex;
    justify-content: center;
    flex-direction: column;
}

.recent_post .recent_post_logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    width: 65px;
    height: 75px;
}

.recent_post .rating-component .rating-value {
    font-weight: 700;
    font-size: 12px;
    line-height: 16px;
}

.recent_post .recent_post_review {
    font-size: 12px;
    font-weight: 400;
    line-height: 16px;
    color: var(--single_blue);
    text-decoration: none;
}

.recent_post .rating-stars {
    gap: 3px;
}

.recent_post .rating-stars .star svg {
    width: 16px;
    height: 16px;
}

.recent_post .recent_post_title {
    font-weight: 700;
    font-size: 14px;
    line-height: 1;
    color: var(--single_blue);
    text-decoration: none;
}

.recent_post .recent_post_title:hover {
    color: var(--single_blue_dark);
}

.recent_post .recent_post_features {
    background-color: #ecf6ff;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.recent_post .recent_post_features li {
    display: flex;
    gap: 5px;
    text-align: left;
    font-size: 10px;
    line-height: 1.5;
    color: var(--color_dark);
}

.recent_post .recent_post_features li svg {
    flex-shrink: 0;
}

.recent_post .recent_post_actions {
    padding-top: 20px;
    margin-bottom: 32px;
    margin-top: auto;
}

.recent_post .user_reviews {
    color: #b5b5b5;
    font-size: 10px;
    line-height: 16px;
    font-weight: 400;
}

.recent_post .recent_post_price {
    font-weight: 700;
    font-size: 18px;
    line-height: 14px;
    margin-bottom: 10px;
}

.recent_post .recent_post_button {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    padding: 10px 30px;
    font-size: 12px;
    line-height: 16px;
    color: #fff;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    line-height: 1;
    background: linear-gradient(180deg, #38a0ff 0%, #003668 100%);
    border-radius: 5px;
    font-weight: 700;
    gap: 5px;
    transition: filter 0.2s;
    white-space: nowrap;
    max-width: 132px;
}

.recent_post .recent_post_button:hover {
    filter: brightness(1.1);
}

.recent_post .recent_post_button svg {
    flex-shrink: 0;
}

.recent_post .after_price_text {
    margin-top: 10px;
    font-size: 10px;
    line-height: 1;
}

.recent_post .after_price_text {
    margin-top: 10px;
    font-size: 10px;
    line-height: 1;
}

.recent_post .after_price_text span {
    background-color: #00c714;
    padding: 2px;
    border-radius: 5px;
    color: var(--color-white);
}

.alternative_posts .alternative-swiper {
    overflow: visible;
}

.single-item .alternative_posts .swiper-pagination {
    display: none;
}

/* Faq blocks */

.single-item .faq-block {
    margin-bottom: 62px;
}

.single-item .faq-question {
    background-color: #ecf6ff;
    border-radius: 10px;
    border: none;
    font-size: 21px;
    line-height: 1;
    font-weight: 700;
    color: #000000;
    padding-bottom: 18px;
}

.single-item .faq-question {
    padding-left: 36px;
    transition: all 0.2s ease;
    padding-top: 20px;
}

.single-item .faq-item {
    border: 0;
    background: #ecf6ff;
    border-radius: 10px;
    margin-bottom: 10px;
}

.single-item .faq-answer p {
    background-color: #ffffff;
    border-radius: 10px;
    padding: 16px;
    padding-right: 24px;
    margin-bottom: 0;
    font-size: 16px;
    line-height: 28px;
}

.single-item .faq-item.active .faq-answer {
    padding: 20px;
    max-height: 1000px;
    padding-top: 0;
}

.single-item .faq-question {
    position: relative;
}

.single-item .faq-question:after {
    content: "";
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%) rotate(0deg);
    width: 24px;
    height: 24px;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M18.7 9.71262L12.7 15.4987C12.5 15.6915 12.3 15.788 12 15.788C11.7 15.788 11.5 15.6915 11.3 15.4987L5.3 9.71262C4.9 9.32689 4.9 8.74828 5.3 8.36254C5.7 7.97681 6.3 7.97681 6.7 8.36254L12 13.4736L17.3 8.36254C17.7 7.97681 18.3 7.97681 18.7 8.36254C19.1 8.74828 19.1 9.32689 18.7 9.71262Z' fill='%23000000'/><mask id='mask0' maskUnits='userSpaceOnUse' x='5' y='8' width='14' height='8'><path d='M18.7 9.71262L12.7 15.4987C12.5 15.6915 12.3 15.788 12 15.788C11.7 15.788 11.5 15.6915 11.3 15.4987L5.3 9.71262C4.9 9.32689 4.9 8.74828 5.3 8.36254C5.7 7.97681 6.3 7.97681 6.7 8.36254L12 13.4736L17.3 8.36254C17.7 7.97681 18.3 7.97681 18.7 8.36254C19.1 8.74828 19.1 9.32689 18.7 9.71262Z' fill='white'/></mask><g mask='url(%23mask0)'><rect y='0.358398' width='24' height='23.1442' fill='%2338A0FF'/></g></svg>");
    background-size: contain;
    background-repeat: no-repeat;
    transition: transform 0.3s ease;
}

.single-item .faq-item.active .faq-question:after {
    content: "";
    transform: translateY(-50%) rotate(180deg);
}

.single-item .top-information {
    display: flex;
    justify-content: space-between;
}

.single-item .list_sticky {
    position: sticky;
    top: 30px;
}

@media (max-width: 1200px) {
    .single-item .rating_blocks-wrap {
        margin-top: 30px;
        flex-direction: column;
        gap: 10px;
    }

    .single-item .rating_block_top {
        margin: auto;
    }

    .single-item .reviewers {
        flex-wrap: wrap;
        gap: 20px;
    }

    .single-item .reviewers_written {
        flex-wrap: wrap;
    }
    .single-item .rating_block_spec {
        color: var(--single_blue);
        justify-content: center;
    }

    .single-item .rating_link_visit {
        margin-top: 28px;
    }
}

@media (max-width: 991px) {
    .double_wrap {
        flex-direction: column;
    }

    .list_sidebar {
        display: none;
    }
}

@media (max-width: 768px) {
    .heading_left {
        display: none;
    }

    .single-item .reviewers {
        flex-wrap: wrap;
        gap: 20px;
    }

    .single-item .reviewers_desktop {
        display: none;
    }

    .single-item .reviewers_mobile {
        display: block;
    }

    .single-item .heading_description p {
        margin-bottom: 48px;
    }

    .single-item .heading_title {
        margin-bottom: 44px;
    }

    .single-item .update_date {
        margin-bottom: 22px;
        font-size: 0.75rem;
        line-height: 1.25rem;
    }

    .alternative_posts .alternative-swiper {
        overflow: hidden;
        padding: 10px;
        margin-left: -10px;
    }

    .single-item .alternative_posts .alternative_post {
        width: 100%;
        max-width: 245px;
        flex: 1 0 100%;
        box-shadow: 0px 0px 13px 0px #61a9ea80;
    }

    .single-item .alternative_posts_wrap {
        flex-wrap: nowrap;
        gap: 0;
    }

    .single-item .alternative_posts .swiper-pagination {
        position: relative;
        margin-top: 10px;
        display: block;
    }

    .single-item .alternative_posts .swiper-pagination-bullet {
        background-color: transparent;
        border-radius: 50%;
        border: 1px solid #61a9ea;
        opacity: 1;
    }

    .single-item .alternative_posts .swiper-pagination-bullet-active {
        background-color: #61a9ea;
        border: 1px solid #61a9ea;
        opacity: 1;
    }

    .single-item .top-information {
        flex-direction: column;
    }
}