/***********************************
GENERAL
*/
.loo-oh {
    overflow: hidden;
}

.loo-pf {
    position: fixed;
}

.loo-dib {
    display: inline-block;
}
.loo-db {
    display: block;
}

.loo-bottomright {
    bottom: 0;
    right: 0;
}

.loo-topright {
    top: 0;
    right: 0;
}

.loo-centerright {
    top: 50%;
    margin-top: -52px !important;
    right: 0;
}

.loo-bottomleft {
    bottom: 0;
    left: 0;
}

.loo-topleft {
    top: 0;
    left: 0;
}

.loo-centerleft {
    top: 50%;
    margin-top: -52px !important;
    left: 0;
}

/***********************************
Fixed bar
*/
.loo-lists-bar {
    z-index: 5;
}

.loo-list-icon {
    position: relative;
    font-size: 0px;
}

.loo-list-icon {
    position: relative;
    font-size: 0px;
}

.loo-count {
    position: absolute;
    bottom: 0;
    right: 0;
    text-align: center;
    display:inline-block;
    font-weight: bold;
}

/***********************************
POPUP
*/
.loo-popup {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    position: fixed;
    z-index: 10;
    display: none;
    align-items: center;
    justify-content: center;
}

.loo-popup[data-js-open="true"] {
    display: flex;
}

body.loo-popup-open {
    overflow: hidden;
}

.loo-popup-container {

    width: 98%;
    max-width: 1440px;
    max-height: 95%;
    padding: 20px;

    position: absolute;
    /* border: solid 1px black;
    background-color: white; */
    z-index: 15;
}

.loo-popup-header {
    display: flex;
    justify-content: space-between;
}
.loo-popup-close {
    display: flex;
}

.loo-popup-body {
    /* 80px - popup padding 80px - header */
    max-height: calc(90vh - 80px - 80px);
    overflow-y: auto;
    overflow-x: hidden;
}

.loo-popup-body p {
    margin: 0px;
}

.loo-popup .loo-popup-backdrop {
    /* background-color: black; */
    position: absolute;
    opacity: 0.5;
    display: block;
    width: inherit;
    height: inherit;
}

.loo-clear-all-wrapper {
    float:right;
}

.loo-clear-all {
    margin-top: 20px;
    padding-right: 20px;
    display: inline-block;
    font-size: 14px;
    text-decoration: underline !important;
}

/***********************************
product grid
*/
.loo-wishlist-wraper {
    display: flex;
    flex-wrap: wrap;
    column-gap: 8px;
    row-gap: 30px;
}

.loo-wishlist-item {
    width: calc(100%);
    max-width: calc(100%);
    flex-grow: 1;
    flex-shrink: 0;
}

/* .loo-wishlist-item-link {
    display: block;
} */

.loo-wishlist-item-image {
    min-height: 150px;
    width: 100%;
}

.loo-wishlist-item-title {
    margin: 0;
}

/***********************************/
/* Extra small devices (phones, 600px and down) */
@media only screen and (max-width: 414px) {
}

/***********************************/
/* Small devices (portrait tablets and large phones, 600px and up) */
@media only screen and (min-width: 415px) {
    .loo-wishlist-item {
        width: calc(50% - 8px * 2 / 3);
        max-width: calc(50% - 8px * 2 / 3);
    }
}

/***********************************/
/* Medium devices (landscape tablets, 768px and up) */
@media only screen and (min-width: 768px) {
    .loo-popup-container {
        width: 95%;
        max-width: 1440px;
        max-height: 95%;
        padding: 30px;
    }

    .loo-wishlist-item {
        width: calc(33% - 8px * 3 / 4);
        max-width: calc(33% - 8px * 3 / 4);
    }
}

/***********************************/
/* Large devices (laptops/desktops, 992px and up) */
@media only screen and (min-width: 992px) {
    .loo-wishlist-item {
        width: calc(25% - 8px * 4 / 5);
        max-width: calc(25% - 8px * 4 / 5);
    }
}

/***********************************/
/* Extra large devices (large laptops and desktops, 1200px and up) */
@media only screen and (min-width: 1200px) {
    .loo-popup-container {
        width: 90%;
        max-width: 1440px;
        max-height: 90%;
        padding: 40px;
    }

    .loo-wishlist-item {
        width: calc(20% - 8px * 4 / 5);
        max-width: calc(20% - 8px * 4 / 5);
    }
}
