.order-summary {
    position: fixed;
    bottom: 0;
    right: 0;
    overflow: hidden;
    z-index: 2;
}

.checkout-row .order-summary {
    position: relative;
}

.order-summary .loading {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.order-summary .order-summary-container {
    padding: 1rem 2.5rem;
    background-color: #fbaf28;
    margin: 1rem;
    border-top-left-radius: 1rem;
    border-bottom-left-radius: 1rem;
    border-top-right-radius: 1rem;
}
.order-summary.refresh .order-summary-container {
    opacity: .5;
}

.add-to-order {
    position: relative;
    overflow: hidden;
}
.add-to-order .loading {
    position: absolute;
    top: 0;
    left: 0;
    align-items: center;
    display: flex;
    justify-content: center;
    width: 100%;
    height: 100%;
    background-color: rgb(255 255 255 / 80%);
}
.add-to-order .loading .spinner-border {
    border: 0.15em solid currentColor;
    border-right-color: transparent;
    width: 1.5rem;
    height: 1.5rem;
}


/* Modificari Andrei */

.list-products-summary{
    overflow: auto;
    list-style: none;
    padding: 0;
    margin: 0;
    font-weight: 400;
    opacity: 1;
    transition-timing-function: ease-in;
    max-height: 400px;
}

.list-products-summary li{
    border-bottom: 1px solid #00000024;
    display: flex;
    align-items: center;
}

.order-summary-info input{
    margin-left: auto !important;
}

.list-products-summary.hide{
    opacity: 0;
}

.order-summary .order-summary-container{
    background: #ffc107a3 !important;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

.order-summary-info{
    width: 100%;
}

.order-summary-actions{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;
    padding: 0;
    margin: 0;
    grid-gap: 20px;
    width: 100%;
    margin-top: 15px;
    margin-bottom: 15px;
}

.order-summary-header{
    display: flex;
    align-items: center;
    flex-direction: row;
}

.order-summary-header .btn-minus{
    margin-left: auto;
    font-size: 25px;
}

.order-summary-header .btn-minus:focus{
    box-shadow: none;
    border: none;
}

/* .price-order-summary-total{
    margin-top: 25px;
} */

.order-share-message{
    font-size: 30px;
    transition: all .3s;
}

.order-share-message::before{
    content: 'Comandă de grup';
    position: absolute;
    font-size: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    left: 15px;
    bottom: 15px;
    animation: shake 0.3s;
}

.btn-remove{
    font-size: 30px;
    color: red;
}

.summary-card-product-title .product-attr{
    font-weight: 300 !important;
    line-height: 1;
}

.summary-card-product-title{
    display: inline-flex;
    max-width: 300px;
    vertical-align: middle;
    flex-direction: column;
    font-weight: 500;
}

.checkout-row .checkout-details-col .checkout-details-col-inner .order-summary .order-summary-container{
    background-color: none !important;
    background: none !important;
    backdrop-filter: unset !important;
    padding: 0 !important;
    margin: 0 !important;
}

.btn.focus, .btn:focus{
    box-shadow: none !important;
}

