.blue {
  color: #007aff !important;
}

.red {
	color: #ff3b30 !important;
}

.dark {
	color: #555152;
}

.background-blue {
	background-color: #007aff !important;
}

.background-red {
	color: #ff3b30 !important;
}

.background-dark {
	background-color: #555152 !important;
}

.mt-3 {
	margin-top: 1rem!important;
}

.mb-3 {
	margin-bottom: 1rem!important;
}

.mat-card {
	font-family: Avenir Next;
	width: 100%;
	background: #fff;
	color: rgba(0,0,0,.87);
	padding: 20px;
	border: 1px solid #dbdfe9;
	border-radius: 4px;
}

.mat-card h3 {
	margin: 3px 0;
}

.mat-card .row {
	margin: 0 0 10px 0;
}

.mat-card-header .mat-card-title {
	font-size: 26px;
}

.mat-card-content, .mat-card-subtitle {
    font-size: 14px;
}

.mat-card-subtitle {
    color: rgba(0,0,0,.54);
}

.mat-card .mat-icon-button {
	line-height: 28px;
    height: 29px;
    width: 28px;
}

.mat-icon-button {
	border: none;
	color: inherit;
    background: 0 0;
}

.mat-icon-button:focus {
    outline: none;
}

.small-icon {
    height: 18px;
    width: 18px;
    font-size: 19px !important;
}

.caption {
  	font-size: 12px !important;
  	line-height: 16px;
  	text-transform: uppercase;
  	letter-spacing: 1.5px;
  	color: #94979b;
  	font-weight: 500;
}

.caption.caption-xs {
    font-size: 10px!important;
    line-height: 14px;
}

.mat-card-row {
    background: #f5f5f5;
	font-family: 'Avenir Next';
	color: #555152;
	height: 45px!important;
	border: 1px solid rgba(0,0,0,.12)!important;
	background-color: rgba(245,247,250,.8)!important;
	margin-bottom: 3px;
	align-items: center;
	display: flex;
	font-size: 13px;
}

/* select starting stylings ------------------------------*/
.my-select {
	position: relative;
	width: 350px;
}

.select-text {
	position: relative;
	font-family: inherit;
	background-color: transparent;
	width: 350px;
	padding: 10px 10px 10px 10px;
	font-size: 14px;
	border-radius: 0;
	border: none;
	border-bottom: 1px solid rgba(0,0,0, 0.12);
}

	/* Remove focus */
	.select-text:focus {
		outline: none;
		border-bottom: 1px solid rgba(0,0,0, 0);
	}

/* Use custom arrow */
.my-select .select-text {
	appearance: none;
	-webkit-appearance: none;
}

.my-select:after {
	position: absolute;
	top: 18px;
	right: 10px;
	/* Styling the down arrow */
	width: 0;
	height: 0;
	padding: 0;
	content: '';
	border-left: 6px solid transparent;
	border-right: 6px solid transparent;
	border-top: 6px solid rgba(0, 0, 0, 0.12);
	pointer-events: none;
}

/* BOTTOM BARS ================================= */
.select-bar {
	position: relative;
	display: block;
	width: 350px;
}

	.select-bar:before, .select-bar:after {
		content: '';
		height: 2px;
		width: 0;
		bottom: 1px;
		position: absolute;
		background: #2F80ED;
		transition: 0.2s ease all;
	}

	.select-bar:before {
		left: 50%;
	}

	.select-bar:after {
		right: 50%;
	}

/* active state */
.select-text:focus ~ .select-bar:before, .select-text:focus ~ .select-bar:after {
	width: 50%;
}

/* HIGHLIGHTER ================================== */
.select-highlight {
	position: absolute;
	height: 60%;
	width: 100px;
	top: 25%;
	left: 0;
	pointer-events: none;
	opacity: 0.5;
}

.select-search {
	position: relative;
	width: 350px !important;
	background-color: white !important;
	position: relative !important;
	/*font-family: inherit;*/
	padding: 10px 10px 10px 10px !important;
	/*font-size: 18px !important;*/
	border-radius: 0 !important;
	border: none !important;
	border-bottom: 1px solid rgba(0,0,0, 0.12) !important;
}