&ColLayout {
    @apply flex flex-wrap;
}

&ColLayout &Col {
    @apply w-full py-2 md:flex-1 md:p-2 md:w-auto;
}
&ColLayout&.break-sm &Col{
    @apply sm:flex-1 sm:p-2 sm:w-auto;
}
&ColLayout&.break-lg &Col{
    @apply md:px-0 md:w-full md:flex-auto lg:flex-1 lg:p-2 lg:w-auto;
}

&ColLayout&.col-justify-normal{	@apply justify-normal; }
&ColLayout&.col-justify-start{	@apply justify-start; }
&ColLayout&.col-justify-end{    @apply justify-end; }
&ColLayout&.col-justify-center{	@apply justify-center; }
&ColLayout&.col-justify-between{@apply justify-between; }
&ColLayout&.col-justify-around{	@apply justify-around; }
&ColLayout&.col-justify-evenly{	@apply justify-evenly; }
&ColLayout&.col-justify-stretch{@apply justify-stretch; }