.mobile-minicart {
    display: block;
    position: absolute;
    z-index:999999999999;
}
.col-xs-12 {
    min-height: 0;
}
.mobile-minicart-wrapper {
    width: 290px;
    position: fixed;
    background: #fff;
    z-index: 9999;
    top: 0;
    height: 100vh;
    transition: .5s;
    right: 0;
    margin-right: -300px;
    padding: 0 15px;
    overflow-y: auto;
}
.minicart-loading-container {
    width: 100%;
    height: 200px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    border-top: 1px solid lightgray;
    padding: 10px;
    font-size: 40px;
}

.mobile-minicart-wrapper.active {
    margin-right: 0;
}

.mobile-minicart-backdrop {
    display: block;
    height: 0;
    opacity: 0;
    transition: opacity 0.2s linear;
}

.mobile-minicart-backdrop.active {
    opacity: 1;
    width: 100vw;
    height: 100vh;
    position: fixed;
    z-index: 99998;
    background-color: #00000080;
    top: 0;
    left: 0;
}
.mobile-minicart-footer {
    padding-top: 10px;
    display: flex;
    justify-content: center;
    padding-bottom: 50px;
}
.minicart-view-cart-btn,
.minicart-checkout-btn {
    margin-bottom: 50px;
}
.minicart-notification {
    padding: 5px;
    text-align: center;
}

.mobile-minicart-header-text {
    font-size: 36px;
    line-height: 62px;
}

/* Transitions */
.slidedown-enter-active,
.slidedown-leave-active {
    transition: max-height 1s ease-in-out;
}

.slidedown-enter-to,
.slidedown-leave-from {
    overflow: hidden;
    max-height: 1000px;
}

.slidedown-enter-from,
.slidedown-leave-to {
    overflow: hidden;
    max-height: 0;
}

.fade-enter-active,
.fade-leave-active {
    transition: opacity 0.5s ease;
}

.fade-enter-from,
.fade-leave-to {
    opacity: 0;
}








/** LineItems **/
.mmcli {
    display: flex;
    padding: 10px 0;
    border-top: 1px solid lightgray;
}

.mmcli-image-container {
    flex: 1;
}
.mmcli-image {
    width: 80px;
    height: 75px;
}
.mmcli-delete {
    color: black;
    position: absolute;
    background-color: white;
    padding: 2px 4px;
    border-radius: 10px;
    cursor: pointer;
    margin-top: -5px;
    margin-left: -5px;
    box-shadow: 0px 1px 5px 0px #00000040;
    font-size: 12px;
}
.mmcli-delete:hover {
    background-color: lightgray;
}

.mmcli-delete-confirm-container {
    width: 100%;
    display: flex;
    flex-direction: column;
}
.mmcli-delete-confirm-message {
    width: 100%;
    text-align: center;
}
.mmcli-delete-actions {
    display: flex;
    justify-content: center;
    padding: 5px;
}
.mmcli-delete-yes {
    margin-right: 10px;
}


.mmcli-details {
    flex-grow: 1;
    padding: 5px;
    display: flex;
    flex-direction: column;

    font-size: 14px;
    font-weight: bold;
    color: #444;
    min-width: 0;
}
.mmcli-label {
    font-weight: normal;
    color: gray;
    display: inline;
}
.mmcli-description {
    white-space: nowrap;
    overflow-x: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
    width: 100%;
}
.mmcli-description.show-full {
    white-space: normal;
}
.mmcli-stock-number {
    color: gray;
}
.mmcli-details-row {
    display: flex;
    justify-content: space-between;
}
.mmcli-qty-container {
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    padding: 0 30px 10px 30px;

}
.mmcli-qty-plus,
.mmcli-qty-minus {
    color: black;
    background-color: white;
    border-radius: 10px;
    cursor: pointer;
    box-shadow: 0px 1px 5px 0px #00000040;
    font-size: 18px;
    height: 20px;
    width: 20px;
    text-align: center;
    display: flex;
    flex: 1;
    flex-direction: column;
    justify-content: center;
}
.mmcli-qty-plus:hover,
.mmcli-qty-minus:hover {
    background-color: lightgray;
}
.mmcli-qty {
    width: 100%;
    text-align: center;
    flex: 1;
}



.mobile-minicart-totals {
    border-top: 1px solid lightgray;
    padding-top: 10px;
    text-align: right;
}
.cart-no-items-container {
    padding: 5px;
    width: 100%;
    text-align: center;
    border-top: 1px solid lightgray;
}
.minicart-close-btn-container {
    position: relative;
    top: -50px;
    cursor: pointer;
}