/* Root of Items */

.root {
    @apply font-sans text-sm;
}

.stickyRoot {
    @apply hidden;
}


/* Error Message. */

.warning {
    @apply leading-6 bg-yellow-200 text-yellow-700 whitespace-pre-wrap font-medium text-base px-8 py-2;
}

@media screen(lg) {
    /* Sticky */
    .stickyRoot {
        @apply static col-end-10 col-start-3 flex-grow justify-self-center lg_flex left-0 top-14 z-20;
        composes: root;
    }
    /* Sample data */
     :global(.panties-photo) {
        @apply p-0 -mx-2 my-0;
    }
     :global(.panties-photo) img {
        @apply px-0 !important;
    }
     :global(.lingerie-photo) {
        @apply p-0 -mx-2 my-0;
    }
     :global(.lingerie-photo) img {
        @apply px-0 !important;
        @apply pt-0 !important;
        @apply w-full;
    }
}