/* (c) Alejandro A. Corvatta - jul 2021*/

/* If the screen size is 576px wide or more: */
@media screen and (min-width: 576px) {
  .w-sm-100 {width:100%;}
  .w-sm-75 {width:75%!important;}
  .w-sm-50 {width:50%!important;}
  .w-sm-25 {width:25%!important;}
}

/* If the screen size is 768px wide or more: */
@media screen and (min-width: 768px) {
  .w-md-100 {width:100%;}
  .w-md-75 {width:75%!important;}
  .w-md-50 {width:50%!important;}
  .w-md-25 {width:25%!important;}
}

/* If the screen size is 992px wide or more: */
@media screen and (min-width: 992px) {
  .w-lg-100 {width:100%;}
  .w-lg-75 {width:75%!important;}
  .w-lg-50 {width:50%!important;}
  .w-lg-25 {width:25%!important;}
}

/* If the screen size is 1200px wide or more: */
@media screen and (min-width: 1200px) {
  .w-xl-100 {width:100%;}
  .w-xl-75 {width:75%!important;}
  .w-xl-50 {width:50%!important;}
  .w-xl-25 {width:25%!important;}
}

/* If the screen size is 1400px wide or more: */
@media screen and (min-width: 1400px) {
  .w-xxl-100 {width:100%;}
  .w-xxl-75 {width:75%!important;}
  .w-xxl-50 {width:50%!important;}
  .w-xxl-25 {width:25%!important;}
}