| 1234567891011121314151617181920212223242526272829303132333435363738 | 
							- /**
 -  * 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;
 - }
 
 
  |