/* CUSTOM WIDTHS */

.w-100,
.w-xs-100 {
    width: 100%!important;
}

.w-50,
.w-xs-50 {
    width: 50%!important;
}

.w-25,
.w-xs-25 {
    width: 25%!important;
}


/* BREAKPOINTS */


/* SM breakpoint */

@media (min-width: 576px) {
    /* CUSTOM WIDTHS */
    .w-sm-100 {
        width: 100%!important;
    }
    .w-sm-50 {
        width: 50%!important;
    }
    .w-sm-25 {
        width: 25%!important;
    }
}


/* MD breakpoint*/

@media (min-width: 768px) {
    /* CUSTOM WIDTHS */
    .w-md-100 {
        width: 100%!important;
    }
    .w-md-50 {
        width: 50%!important;
    }
    .w-md-25 {
        width: 25%!important;
    }
}


/* LG breakpoint */

@media (min-width: 992px) {
    /* CUSTOM WIDTHS */
    .w-lg-100 {
        width: 100%!important;
    }
    .w-lg-50 {
        width: 50%!important;
    }
    .w-lg-25 {
        width: 25%!important;
    }
}