: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
}

.checkBox {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    margin-top: 16px;
    cursor: pointer
}

.checkBox .compare-checkbox {
    display: flex;
    width:auto;
    min-width: 110px;
    background-color: #f7f9fa;
    border-radius: 4px;
    padding: 6.5px 12.5px;
    font-size: 14px;
    color: #7d7d7d;
    box-sizing: border-box;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none
}

.checkBox .compare-checkbox .checkbox-custom {
    display: flex;
    align-items: center;
    justify-content: center
}

.checkBox .compare-checkbox .compare-checkbox-text {
    margin-left: 8px
}

.x-checkBox {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    margin-top: 16px
}

.x-checkBox .compare-checkbox {
    display: flex;
    width: 110px;
    background-color: #f7f9fa;
    border-radius: 4px;
    padding: 6.5px 12.5px;
    font-size: 14px;
    color: #7d7d7d;
    box-sizing: border-box;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none
}

.x-checkBox .compare-checkbox .checkbox-custom {
    display: flex;
    align-items: center;
    justify-content: center
}

.x-checkBox .compare-checkbox .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%);
}
