@charset "UTF-8";

/*
 * Global styles
 */
html, body {
	height: 100%;
}

/*
 * Materialize overrides
 */

/* General */
.materialize .dropdown-content li.divider {
	width: 80%;
	margin-left: 10%;
}
.materialize .input-field {
	margin-top: 1.47rem;
}

/* Autocomplete */
.autocomplete-element:hover, .autoComplete_selected {
	color: black;
}
.autocomplete-element {
	padding: 14px 16px;
	font-size: 16px;
	display: block;
	line-height: 22px;
	background-color: white;
}
.autocomplete-box {
	margin-top: -7px;
	position: absolute;
	z-index: 2;
	min-width: 200px;
	overflow-x: auto;
}
.autoComplete_highlighted {
	font-weight: 600;
}

/* Navbar */
.materialize nav {
	/* disable select */
	-webkit-user-select: none !important;  
	-moz-user-select: none !important;    
	-ms-user-select: none !important;      
	user-select: none !important;
}

.materialize nav .dropdown-content a {
	color: white;
}

.materialize nav ul a.active {
	background-color: rgba(0, 0, 0, 0.1);
}


/* Table */
td.action {
	padding: 9px 15px;
	width: 140px;
}

td.action .btn-small {
	padding: 0px 5px 0px 5px;
}

td.action .btn-small i {
	font-size: 22px;
}

/* Status */
.status-progress, .status-cancel, .status-success {
	padding: 5px 10px 5px 10px;
	border-radius: 4px;
	font-weight: 700;
	color: white;
	font-size: 13px;
}
table tbody.cardview { 
	white-space: normal;
}
table tbody.cardview tr { 
	padding: 0px;
	line-height: 1px;
	margin-bottom: 10px;
	padding-bottom: 6px;
	
}

table tbody.cardview tr td { 
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	width: 140px;
}

table tbody.cardview tr td:hover {
	white-space: wrap;
	overflow: visible;
	width: 100%;
}


/* Pagination */
ul.pagination li {
	margin-right: 5px;
}

ul.pagination li div {
	padding-top: 3px;
}

ul.dropdown-content .active {
	font-weight: 700;
}

/* Flash */
.flash-message {
	border-radius: 4px;
}

.flash-message .close-icon {
	display: none;
}

.flash-message:hover .info-icon {
	display: none;
}

.flash-message:hover .close-icon {
	display: block;
}

/* Formular */
.formular .row {
	margin-bottom: 10px;
}

/* Search Formular */
.search-formular .row {
	margin-bottom: 00px;
}

.search-formular .title {
	min-width: 86px;
	text-align: right;
}
.search-formular .operator {
	max-width: 45px;
	min-width: 45px;
	text-align: center;
}
.search-formular .operator input {
	text-align: center;
	border-bottom: 0px solid black !important;
}

.search-formular .input-field {
	margin-top: 0px;
	margin-bottom: 0px;
}

/*
 * Extra helpers
 */

@media only screen and (min-width : 993px) {
  .hide-on-small-and-large {
    display: none !important;
  }
}

@media only screen and (max-width : 600px) {
  .hide-on-small-and-large {
    display: none !important;
  }
}

@media only screen and (max-width : 375px) {
  .mainmenuburger {
	  padding: 0 .75rem 0 0 !important;
  }
}

[hidden] {
  display: none !important;
}

.nolink { pointer-events: none; }

/* src: https://stackoverflow.com/a/10810170 */
.disable-select {
  -webkit-user-select: none;  
  -moz-user-select: none;    
  -ms-user-select: none;      
  user-select: none;
}

.cursor-pointer {
	cursor: pointer;
}

/* src: https://stackoverflow.com/a/4407335 */
.noselect {
  -webkit-touch-callout: none; /* iOS Safari */
    -webkit-user-select: none; /* Safari */
     -khtml-user-select: none; /* Konqueror HTML */
       -moz-user-select: none; /* Old versions of Firefox */
        -ms-user-select: none; /* Internet Explorer/Edge */
            user-select: none; /* Non-prefixed version, currently
                                  supported by Chrome, Opera and Firefox */
}

.ma1  { margin: 1em !important; }
.ma2  { margin: 2em !important; }
.ma3  { margin: 3em !important; }
.ma4  { margin: 4em !important; }

.mt1 { margin-top: 1em; }
.mt2 { margin-top: 2em; }
.mt3 { margin-top: 3em; }
.mt4 { margin-top: 4em; }

.mb1 { margin-bottom: 1em; }
.mb2 { margin-bottom: 2em; }
.mb3 { margin-bottom: 3em; }
.mb4 { margin-bottom: 4em; }

.ml1 { margin-left: 1em; }
.ml2 { margin-left: 2em; }
.ml3 { margin-left: 3em; }
.ml4 { margin-left: 4em; }

.mr1 { margin-right: 1em; }
.mr2 { margin-right: 2em; }
.mr3 { margin-right: 3em; }
.mr4 { margin-right: 4em; }

.p1  { padding: 1em !important; }
.p2  { padding: 2em !important; }
.p3  { padding: 3em !important; }
.p4  { padding: 4em !important; }

.pr1  { padding-right: 1em; }

.pl1  { padding-left: 1em; }

.f21 { font-size: 21px !important; }
