/*
================================================

Space Vanta Theme 1.0

Module:
List Collection / Collection Panel

Version:
FRAME-004-B

Purpose:
Collection Content Panels

Responsibility:
Panel Visibility
Panel Content Position

Does NOT control:
Collection Selector
Product Grid
Product Card

================================================
*/


/* =================================================
   Panel
================================================= */

.sv-list-collection__panel {

    width: 100%;

    min-width: 0;

    margin: 0;

    padding: 0;

}


/* =================================================
   Panel Content
================================================= */

.sv-list-collection__panel-content {

    width: 100%;

    min-width: 0;

    margin-top: 40px;

}


/* =================================================
   Inactive Panel
================================================= */

.sv-list-collection__panel[data-collection-active="false"] {

    display: none;

}


/* =================================================
   Active Panel
================================================= */

.sv-list-collection__panel[data-collection-active="true"] {

    display: block;

}


/* =================================================
   Mobile
================================================= */

@media (max-width: 767px) {

    .sv-list-collection__panel-content {

        margin-top: 32px;

    }

}