.material-icons-custom {
	font-family: 'Material Icons', "Segoe UI", Roboto, sans-serif;
	font-size: 1.6rem;
	line-height: 1rem;
	vertical-align: middle;
	font-weight: normal;
	font-style: normal;
	letter-spacing: normal;
	text-transform: none;
	display: inline-block;
	white-space: nowrap;
	word-wrap: normal;
	direction: ltr;
	-moz-font-feature-settings: 'liga';
	-moz-osx-font-smoothing: grayscale;
}

.fas {
	vertical-align: middle;
}

.pointer {
	cursor: pointer;
}

.table-button {
	display: inline-block;
	width: 1.5rem;
	text-align: center;
	vertical-align: top;
	padding-bottom: 0.25rem;
	font-size: .8rem;
	color: white;
	border-radius: 3px;
}

.params-list {
	position: relative;
	border-radius: .2rem;
	border: 1px solid #ced4da;
	height: 10rem;
	padding-bottom: 2rem;
}

.params-list .params {
	height: 100%;
	padding-bottom: 2rem;
	overflow-y: scroll;
}

.param {
	display: flex;
	align-items: center;
	font-size: 0.9rem;
	padding: .3rem .5rem;
}

.param label {
	margin-bottom: 0;
}

.param input {
	flex-grow: 1;
	border: none;
	background: #0000001c;
	border-radius: .5rem;
	margin: 0 1rem;
	padding: 1px .5rem;
}

.param .params-icon {
	margin-left: auto;
}

.params-list .params-toolbar {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	height: 2rem;
	border-radius: 0 0 .2rem .2rem;
	border-top: 1px solid #ced4da;
	background-color: var(--gray-dark);
	color: var(--white);
	text-align: right;
	padding: 0 .5rem;
}

.params-icon {
	display: inline-block;
	height: 100%;
	padding: 0 .3rem;
	cursor: pointer;
	transition: .3s;
}

.params-icon:hover {
	color: var(--primary);
}

.table-shadow {
	box-shadow: 0 5px 5px -3px rgba(0, 0, 0, .2), 0 8px 10px 1px rgba(0, 0, 0, .14), 0 3px 14px 2px rgba(0, 0, 0, .12);
}

.table-shadow tbody tr {
	font-weight: lighter;
}

.table-shadow tbody th {
	font-weight: normal;
}

.table-nowrap {
	white-space: nowrap;
}

.table-slim-rows tr th, .table-slim-rows tr td {
	padding-top: .2rem;
	padding-bottom: .2rem;
}

.table-c-storage {
	width: 100%;
	font-size: .9rem;
	line-height: 1.4rem;
	border: 1px solid var(--gray);
}

.table-c-storage thead {
	background-color: var(--gray-dark);
	color: white;
}

.table-c-storage thead th, .table-c-storage thead td {
	padding: .3rem .3rem .3rem .5rem;
}

.table-c-storage th, .table-c-storage td {
	padding-left: .5rem;
}

.table-container {
	width: 90%;
	padding-right: 15px;
	padding-left: 15px;
	margin-right: auto;
	margin-left: auto;
}

@media (max-width: 992px) {
	.table-container {
		width: 100%;
	}
}