.comparator {
    background-color: transparent;
    flex-wrap: wrap;
    justify-content: space-evenly;
    padding-top: 5px;
    align-items: center;
}
.comparator-bar {
    position: fixed;
    overflow: hidden;
    overflow-y: auto;
    background-color: rgb(240 246 250);
    max-height: 218px;
    width: 100%;
    bottom: 0;
    z-index: 4;
    box-shadow: 0px 3px 20px #B1B1B1;
}
.comparator-container {
    gap: 25px;
    margin: 30px 20px;
}
.comparator-container>div {
    width: 23%;
}
.comparator-container>div.separator {
    width: 23%;
    margin-left: 58px;
}
.comparator-accordion .flecha i {
    top: -8px;
    position: relative;
}
.comparator-table {
    margin-bottom: 0;
}
.accordion-second-titulo.comparator-table {
    justify-content: space-evenly;
    z-index: 9;
}
.comparator-card {
    width: 380px;
    padding: 7px 12px;
    justify-content: left;

}
.comparator-card img {
    margin-right: 30px;
}
.comparator-card-title {
    font-size: 15px;
}
.comparator-card-content {
    font-weight: 100;
}
.comparator-card-trim,
.comparator-card-title {
    font-weight: 900;
}
.comparator-card-trim,
.comparator-card-content {
    font-size: 12px;
}
.comparator-card-header .fa-times-circle {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 9;
    font-size: 25px;
    background-color: white;
    border-radius: 50%;
}
.comparator-table {
    gap: 25px;
}
.comparator-table li,
div.comparator-table>span {
    display: inline-block;
    list-style-type: none;
    width: 25%;
    box-sizing: border-box;
    padding: 10px 15px;
}
div.comparator-table>span,
div.comparator-table div {
    width: 28%;
}
.fixed-arrow {
    width: fit-content;
    position: absolute;
    top: 50%;
    right: 2px;
    transform: translateY(-50%)
}
.comparator-bullet {
    background-color: transparent;
    border: 1px solid grey;
    border-radius: 50%;
    box-sizing: border-box;
    display: inline-block;
    width: 20px;
    height: 20px;
}
.comparator-bullet.comparator-bullet-fill {
    background-color: grey;
}
.btn-comparator {
    margin-right: 20px;
    height: fit-content;
    margin-bottom: 10px;
}
.close-comparator {
    position: absolute;
    top: 8px;
    right: 15px;
    align-items: center;
    font-size: 14px;
}
.comparator-floating-component p.show-comparator {
    display: none;
    color: black;
    position: absolute;
    background-color: white;
    padding: 2px 7px;
    border-top: 1.5px dashed var(--filtrobg)
}
.comparator-floating-component:hover p.show-comparator {
    display: block;
}

@media only screen and (max-width: 768px) {
    .comparator {
        max-height: 130px;
        overflow: hidden;
        overflow-y: auto;
        padding: 0 25px;
        gap: 8px;
    }
    .btn-comparator {
        margin: 15px 0;
        height: 34px;
        display: flex;
        align-items: center;
        width: 50%;
        justify-content: center;
    }
    .btn-comparator+p+button {
        width: 50%;
    }
    .comparator-table,
    .comparator-container {
        flex-wrap: wrap;
    }
    .comparator-table li {
        width: 100%;
    }
    ul.comparator-table {
        padding-left: 0;
    }
    .comparator-container>div {
        width: 100%;
    }
    .comparator-container>div.separator {
        height: 0;
        width: 0;
        margin: 0;
    }
    .accordion-second-titulo.comparator-table {
        top: 0;
        display: block;
    }
}