.bx_cart .text > div:not(.empty) {
    padding: 0 10px;
}

.bx_cart.opened + .bx_cart_items {
    display: block;
}

.bx_cart_items {
    display: none;
}

.bx_cart_items {
    background: #FAFAFA;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    position: absolute;
    width: 500px;
    padding: 30px 20px;
    z-index: 1001;
}

.bx_cart_items .close {
    background: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAwAAAAMCAYAAABWdVznAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAC9SURBVHgBnZHdCcMgFEbVdIBu0HSC0hEkoI/tCp0kZoOO0A36rCCO0IySAfzpVSKkVin0gqjcc+D6iRCUMaZHPyozBA5759xLSilasFLqYa19JoFSumCM74SQsSZFGPqXEMIt3nFuaK1H772ANXHORQFTxtj8IZQSgH0JfwlbKZ4BPm/h9IZSgACOsC2rcC37pPFACiGIWhC7GryOMcN4sSVAQjkI3IBRK730cQCfanCsYRimOF7XdQf0T70BXluJt1vr650AAAAASUVORK5CYII=') no-repeat center;
    background-size: contain;
    right: 20px;
    top: 30px;
    position:absolute;
    cursor: pointer;
    width: 12px;
    height: 12px;
}
.bx_cart_items_title {
    font-family: 'Roboto';
    font-weight: 700;
    font-size: 16px;
    line-height: 19px;
    margin-bottom: 30px;
}
.bx_cart_items_list {
    max-height: 240px;
    overflow-y: auto;
    padding-right: 10px;
}
.bx_cart_items_list .item {
    display: flex;
    margin-bottom: 10px;
}
.bx_cart_items_list .item:not(:last-child) {
    border-bottom: 1px solid #EFEFEF;
    padding-bottom: 10px;
}
.bx_cart_items_list .item .left {
    margin-right: 20px;
}
.bx_cart_items_list .item .right {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.bx_cart_items_list .item .title {
    font-family: Roboto;
    font-size: 16px;
    font-weight: 400;
    line-height: 19px;
    letter-spacing: 0em;
    text-align: left;
}

.bx_cart_items_list .item .price {
    font-family: Roboto;
    font-size: 16px;
    font-weight: 700;
    line-height: 19px;
    letter-spacing: 0em;
    text-align: left;
}

.bx_cart_items_list .item .remove {
    font-family: Roboto;
    font-size: 16px;
    font-weight: 400;
    line-height: 19px;
    letter-spacing: 0em;
    text-align: left;
    color: #6B6B6B;
    cursor: pointer;
}

.bx_cart_items_list .item .image {
    border: 1px solid #EFEFEF;
    border-radius: 4px;
    width: 100px;
}
.bx_cart_items_list .item .cart_line {
    display: flex;
    width: 100%;
    justify-content: space-between;
}

.bx_cart_items_total {
    margin: 20px 0;
}

.bx_cart_items_buttons .btn-outline {
    border-radius: 4px;
    background: #d0080a;
    color: white;
    border-color: #d0080a;
}
.bx_cart_items_buttons .btn-outline:hover {
    color: #d0080a;
}
.bx_cart_items_buttons .btn-outline:before {
    background: white;
}
.bx_cart_items_buttons {
    display: flex;
    justify-content: space-around;
    align-items: baseline;
}
.bx_cart_items_buttons .clear_basket {
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 19px;
    text-decoration-line: underline;
    cursor: pointer;
}
@media screen and (max-width: 1740px){
    .bx_cart_items {
        right: 0;
    }
}