/** Shopify CDN: Minification failed

Line 92:1 Expected "}" to go with "{"

**/
/* Related */
.related_lookbooks {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 20px;
    padding: 60px;
}

.related_lookbooks .related_lookbooks_item {
    position: relative;
    display: block;
    cursor: pointer;
}

.related_lookbooks .lookbook_related_title {
    font-size: 1.5rem;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    color: white;
    text-align: center;
    width: 100%;
}

.related_lookbooks .lookbook_related_image {
    height: 200px;
    overflow: hidden;
}

@media screen and (max-width: 768px) {
    .related_lookbooks {
        padding: 15px;
    }
}

/* Nos lookbooks */
.nos_lookbooks {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 20px;
    padding: 60px;
}

.nos_lookbooks .lookbook {
    position: relative;
    display: block;
    cursor: pointer;
    overflow: hidden;
    height: 544px;
}

.nos_lookbooks .lookbook_title {
    font-size: 1.5rem;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    color: white;
    text-align: center;
    width: 100%;
}

.nos_lookbooks .lookbook_image {
    height: 100%
}

.lookbooks_title {
    margin-top: 50px;
    display: flex;
    justify-content: center;
}

@media screen and (max-width: 768px) {
    .nos_lookbooks {
        padding: 15px;
        grid-template-columns: repeat(1, 1fr);
    }

    .nos_lookbooks .lookbook {
        height: 300px;
    }

    .lookbooks_title {
        margin-top: 30px;
        margin-bottom: 20px;
}