| 123456789101112131415161718192021222324252627282930313233343536373839404142 | 
							- /**
 -  * Hides an element.
 -  */
 - .hide {
 -     display: none !important;
 - }
 - 
 - /**
 -  * Shows an element.
 -  */
 - .show {
 -     display: block !important;
 - }
 - 
 - /**
 -  * Shows an inline element.
 -  */
 - .show-inline {
 -     display: inline-block !important;
 - }
 - 
 - /**
 - * Shows as a list item
 - **/
 - .show-list-item {
 -     display: list-item !important;
 - }
 - 
 - /**
 -  * Shows a flex element.
 -  */
 - .show-flex {
 -     display: -webkit-box !important;
 -     display: -moz-box !important;
 -     display: -ms-flexbox !important;
 -     display: -webkit-flex !important;
 -     display: flex !important;
 - }
 - 
 - .hidden {
 -   display: none;
 - }
 
 
  |