.elementor-widget-comparator-card {
    --accent-color: var(--e-global-color-accent, #364151);
    --title-color: var(--e-global-color-primary, #364151);
    --text-color: var(--e-global-color-text, #0F172A);

    width: 100%;

    .container {
        display: flex;
        flex-wrap: wrap;
        gap: 30px;
    }

    .item {
        display: flex;
        flex-direction: column;
        box-shadow: 0 0 5px 0 rgba(0, 0, 0, .15);
        transition: 500ms all;
        border-radius: 8px;
        overflow: hidden;
        width: calc((100% / 3) - (30px - (30px / 3)));

        &:hover {
            box-shadow: 0 0 15px 0 rgba(0, 0, 0, .15);

            .image {
                transform: scale(1.05);
            }
        }

        .container-top {
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 8px;

            .title-text {
                color: var(--title-color);
                font-size: 20px;
                font-weight: 600;
                line-height: normal;
                font-family: 'Poppins', serif;
                text-align: center;
                cursor: pointer;
            }
        }

        .container-image {
            overflow: hidden;
            width: 100%;

            .image {
                object-fit: cover;
                cursor: pointer;
                transition: all 500ms;
                width: 100%;
                max-width: 100%;
                aspect-ratio: 16 / 9;
            }
        }

        .container-bottom {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 12px;
            padding: 15px 30px;
            flex: 1;

            .description-text {
                color: var(--text-color);
                font-size: 16px;
                font-weight: 500;
                line-height: normal;
                font-family: 'Poppins', serif;
                text-align: center;
                flex: 1;
                align-items: center;
                display: flex;
            }

            .button {
                display: inline-block;
                padding: 15px 45px 15px 45px;
                background-color: var(--accent-color);
                border: 1px solid var(--accent-color);
                border-radius: 4px;
                cursor: pointer;
                font-size: 14px;
                font-weight: 600;
                font-family: 'Poppins', serif;
                color: #FFFFFF;
                text-decoration: none;
                text-align: center;
                width: fit-content;
                transition: all 0.3s;

                &:hover {
                    background-color: #FFFFFF;
                    color: var(--accent-color);
                }
            }
        }
    }

    @media (max-width: 1024px) {
        .item {
            width: 100% !important;
        }
    }
}