/* Display */
.hidden { display: none; }
.hide-mobile { display: none; }
.show-mobile { display: block; }
@media (min-width: 1025px) {
  .hide-mobile { display: block; }
  .show-mobile { display: none; }
}

.responsive-wrap,
.table-wrap { width: 100%; max-width: 100%; overflow: auto; -webkit-overflow-scrolling: touch; }

/* Positioning */
.nomargin { margin: 0 !important; }
.nopadding { padding: 0 !important; }

.datepicker { cursor: pointer; background: hsl(var(--white)) url('../images/icon-calendar.png') no-repeat right 0.625rem center; }

/* Text Transformation */
.text-upper { text-transform: uppercase !important; }
.text-lower { text-transform: lowercase !important; }
.text-cap { text-transform: capitalize !important; }

