.setup-fields input {
	display: block;
	padding: 5px;
	width: 100%;
	margin-bottom: 5px;
}

.setup-fields label {
	padding: 2.5px;
}

.setup-fields select {
	display: block;
	width: 100%;
	cursor: pointer;
	margin-bottom: 5px;
}

.setup-fields input[type="checkbox"] {
	display: inline-block;
	padding: 0;
	width: initial;
	margin: 0 5px;
}

/* GLOBAL CLASSES */
.line-separator { 
	display: block;
	width: 100%;
	height: 1px;
	background: #e5e5e5; 
}

.normalize-location-y {
	transform: translateY(0) !important;
}

.selected { 
	transform: rotate3d(1, 1, 0, 10deg);
    -webkit-box-shadow: 0 8px 6px -6px rgba(51, 51, 51, 0.35) !important;
	-moz-box-shadow: 0 8px 6px -6px rgba(51, 51, 51, 0.35) !important;
	box-shadow: 0 8px 6px -6px rgba(51, 51, 51, 0.35) !important;
}

/* PICK BOX */
.pick-box {
	display: none;
	width: 100%;
    height: 250px;
    border: 1px solid #ddd;
    box-shadow: inset 0 1px 2px rgba(0,0,0,.07);
    margin-top: 5px;
    position: relative;
	overflow-y: auto;
}

.pick-box .loader {
	display: inline-block;
    position: absolute;
    top: 50%;
    left: 50%;
    width: 48px;
    height: 48px;
    background-size: contain;
    background-repeat: no-repeat;
    margin-left: -24px;
    margin-top: -24px;
}

.pick-box #users-list {
	transform: translateY(-100%);
	-webkit-transition: all 0.25s ease-in-out;
	-moz-transition: all 0.25s ease-in-out;
	-o-transition: all 0.25s ease-in-out;
	transition: all 0.25s ease-in-out;
}

.pick-box #users-list .user {
    background: none;
    border: none;
    border-bottom: 1px solid #e5e5e5;
    display: block;
    width: 98%;
    margin: 0px auto;
    text-align: left;
    padding: 5px 0;
	text-decoration: none;
	outline: 0;
	box-shadow: none;

	-webkit-transition: all 0.15s ease-in-out;
	-moz-transition: all 0.15s ease-in-out;
	-o-transition: all 0.15s ease-in-out;
	transition: all 0.15s ease-in-out;
}
.pick-box #users-list .user:hover {
	border-bottom: 1px solid #08c;
}
.pick-box #users-list .user:active {
    transform: rotate3d(1, 1, 0, 10deg);
    -webkit-box-shadow: 0 8px 6px -6px rgba(51, 51, 51, 0.35);
	-moz-box-shadow: 0 8px 6px -6px rgba(51, 51, 51, 0.35);
	box-shadow: 0 8px 6px -6px rgba(51, 51, 51, 0.35);
}

.pick-box #users-list .user img {
	width: 54px;
	height: 54px;
	display: inline-block;
	vertical-align: middle;
	margin-right: 5px;
}
.pick-box #users-list .user h1 {
	display: inline-block;
	font-size: 1.25rem;
	font-weight: normal;
    margin: 0;
    padding: 0;
    vertical-align: middle;
}