:root {
    --card-3-width: 388px;
    --card-4-width: 290px
}

.bottom_card * {
    box-sizing: border-box;
    padding: 0
}

.bottom_card ul,.bottom_card ol {
    list-style: none
}

.bottom_card h1,.bottom_card h2,.bottom_card h3,.bottom_card h4,.bottom_card h5,.bottom_card h6,.bottom_card p {
    margin: 0;
    padding: 0
}

.compare-checkbox {
    display: flex;
    align-items: center;
    margin-right: 8px;
    background-color: #f7f9fa;
    border-radius: 4px;
    height: 29px;
    padding: 0px 12px;
    font-size: 14px;
    color: #7d7d7d
}

.compare-checkbox-text {
    margin-left: 8px
}

.bottom_card {
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100vw;
    background: #fff;
    box-shadow: 0 -2px 18px rgba(0,0,0,.15);
    border-top-left-radius: 28px;
    border-top-right-radius: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999991 !important;
    transition: all 0.3s;
    transform: translateY(100%);
}
.bottom_card.show{
    transform: translateY(0%);
}
.active {
    cursor: pointer
}

.active:active {
    transform: scale(0.8)
}
