/* ONLY put styles for GENERIC components here. Specific styles belong with their web component files */

.responsiveParent {
    width: 100%;
}

.responsiveParent::after {
    content: "";
    display: table;
    clear: both;
    box-sizing: border-box;
}

@media screen and (max-width: 1200px) {
    .responsiveChild {
        width: 100% !important;
    }
}

.responsiveChild {
    float: left;
    box-sizing: border-box;
}
