.basket-area {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(25, 19, 35, 0.70);
    z-index: 9;
}

.basket-element {
    background: #100721;
    width: 100%;
    max-width: 450px;
    right: 0;
    top: 72px;
    position: relative;
    padding: 10px 0px 50px 25px;
    min-height: 626px;
    margin-left: auto;
    display: flex;
    flex-direction: column;
}

.basket-summary-empty {
    width: 100%;
    font-size: 14px !important;
    font-weight: 300 !important;
    padding: 192px 0px;
    text-align: center;
}

.basket-header {
    height: 80px;
    display: flex;
    justify-content: space-between;
    padding: 0px 0px 10px 0px;
    margin: 0px 25px 0px 0px;
    align-items: center;
    font-size: 28px;
    color: #EBE4FA;
    border-bottom: 1px solid rgba(255, 255, 255, .2);
}

.basket-footer {
    height: 80px;
    border-top: 1px solid rgba(255, 255, 255, .2);
    padding: 25px 0px 25px 0px;
    margin: 15px 25px 0px 0px;
}

.basket-footer-summary {
    display: flex;
    justify-content: space-between;
    align-items: start;
    font-size: 14px;
    color: #EBE4FA;
}

.basket-footer-summary span {
    color: rgba(235, 228, 250, 0.70);
}

.basket-footer-summary div {
    font-size: 22px;
    font-weight: 400;
}

.basket-footer-summary div span {
    color: #fff;
    font-size: 14px;
}

.basket-footer-summary p {
    font-size: 14px;
}

.basket-footer .btn-home {
    font-size: 16px;
    font-weight: 400;
    margin-top: 20px;
    color: #EBE4FA;
}

.basket-footer .btn-home-classic {
    font-size: 16px;
    text-align: center;
    text-decoration: underline;
    padding: 20px 0px;
    color: #EBE4FA;
    transition: .2s;
}

.basket-footer .btn-home-classic:hover {
    opacity: .5;
}

.basket-list {
    flex-grow: 1;
    height: 318px;
    overflow: scroll;
}

.basket-list .accordion {
    padding: 0px 25px 0px 0px;
}

.border-top-collapse {
    width: 100%;
    border-top: 1px solid rgba(235, 228, 250, .1);
    padding-top: 15px;
}

.arrow::before {
    content: "";
    background-image: url('img/arrow_up.png');
    background-repeat: no-repeat;
    background-size: 24px;
    float: right;
    width: 24px;
    height: 24px;
    cursor: pointer;
    margin: -3px 0px 0px 0px;
    transition: .2s;
}

.basket-delete {
    content: "";
    background-image: url('img/basket-delete.png');
    background-repeat: no-repeat;
    background-size: 18px;
    float: right;
    width: 17px;
    height: 24px;
    margin: 0px;
    transition: .2s;
    cursor: pointer;
}

.basket-delete:hover {
    opacity: .5;
}

.collapsed .arrow::before {
    content: "";
    transform: rotate(-180deg);

}

.card-header-basket {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 10px 0px 10px 0px;
    color: #EBE4FA;
}

.card-body-basket {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    font-size: 14px;
    color: #EBE4FA;
}

.card-body-basket div {
    padding: 2px 0px;
}

.card-header-basket-type {
    flex-grow: 2;
    font-size: 16px;
    font-weight: 400;
    padding: 0px 0px 0px 25px;
}

.basket-logo {
    background-image: url('img/logo-basket.png');
    background-repeat: no-repeat;
    background-size: 100%;
    width: 65px;
    height: 65px;
}

.card-payments {

    background-image: url('img/payments.png');
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    width: 100%;
    margin: 15px 0px 0px 0px;
    height: 30px;
}

.term-flex {
    display: flex;
    gap: 3px;
    align-items: start;
    justify-content: start;
}

.term-flex label {
    display: flex;
}


.table-summary-products {
    font-size: 14px;
    font-weight: 300;
    color: rgba(235, 228, 250, 0.70);
    margin: 0px 0px 10px 0px;
    border-top: 1px solid rgba(235, 228, 250, .1);
    padding: 25px 0px 0px 0px;

}

.summary-photo-avatar {
    width: 110px;
    height: 110px;
    object-fit: cover;
}

.table-summary-products .strong_content_title {
    font-size: 16px;
    font-weight: 400;
    color: #EBE4FA;
}

.table-summary-products .d-table-cell {
    padding: 4px 0px;
    vertical-align: top;
}

.table-summary-products .strong_contents {
    padding-left: 10px;
    color: rgba(235, 228, 250, 0.70);
}

@media only screen and (max-width: 960px) {

    .basket-element {
        width: 100%;
        max-width: 450px;
        right: 0;
        top: 0;
        position: relative;
        padding: 10px 0px 125px 15px;
        min-height: 700px;
        margin-left: auto;
        display: flex;
        flex-direction: column;
        overflow: scroll;
    }
}