/** START - Multiusers - tabs **/
.lemonsoft-multiuser-content .tab {
	overflow: hidden;
	/*border: 1px solid #ccc;*/
	background-color: #f7f7f7;
	margin-bottom: 10px;
}

.lemonsoft-multiuser-content .tab button {
	background-color: inherit;
	float: left;
	border: none;
	outline: none;
	cursor: pointer;
	padding: 14px 16px;
	transition: 0.3s;
	margin: 0;
}

.lemonsoft-multiuser-content .tab button:hover, .lemonsoft-multiuser-content .tab button.active {
	background-color: #ccc;
}

.lemonsoft-multiuser-content .tabcontent {
	display: none;
	padding: 6px 12px;
	/*border: 1px solid #ccc;*/
	border-top: none;
}

/** END - Multiusers - tabs **/

/** START - Multiusers - user selection **/
#multiuser-user-selection > .user-selection > a, #multiuser-user-selection > .user-selection > div {
	cursor: pointer;
	padding: 0.5em;
	position: relative;
	display: block;
	border-radius: 5px;
	border: 1px solid #ddd;
	/*margin-right: 10px;*/
	transition: all .3s;
}

button.user-selection-list {
	margin-right: 10px !important;
}

div.user {
	font-size: 1.0em;
}

#multiuser-user-selection > .user-selection > .disabled {
	cursor: not-allowed !important;
	background-color: rgba(230, 230, 230, 0.75) !important;
	color: inherit !important;
}

/** END - Multiusers - selection **/

/** START - Multiusers - spinner **/
.lemonsoft-multiuser-content .spinner {
	display: none;
	border: 2px solid #f3f3f3;
	border-top: 2px solid #3498db;
	border-radius: 50%;
	width: 40px;
	height: 40px;
	animation: spin 1s linear infinite;
	position: absolute;
	margin-left: auto;
	margin-right: auto;
	left: 0;
	right: 0;
	text-align: center;
}

.lemonsoft-multiuser-content .spinner.active {
	display: block;
}

@keyframes spin {
	0% {
		transform: rotate(0deg);
	}
	100% {
		transform: rotate(360deg);
	}
}

/** END - Multiusers - spinner **/

/** START - Multiusers - bottom indication **/
#user-selection-indication {
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
	width: 100%;
	color: #fff;
	background: #1e2224;
	z-index: 2500;
	font-size: 14px;
	line-height: 1;
	text-align: center;
	padding: 5px;
	opacity: 0.5;
	transition: opacity 1s ease-in-out;
}

#user-selection-indication:hover {
	opacity: 1;
}

#user-selection-indication .indication-text {
	margin: 0;
}

#user-selection-indication .indication-text a {
	color: #ffc908;
	text-decoration: none;
}

#user-selection-indication .indication-text a:hover {
	text-decoration: underline;
}

#user-selection-indication.disabled:after {
	cursor: not-allowed;
	content: "";
	position: absolute;
	left: 0;
	top: -20px;
	right: 0;
	bottom: 0;
	border-radius: 3px;
	background-color: rgba(0, 0, 0, 0.1);
}

/** END - Multiusers - bottom indication **/

/* START - Multiusers - loading screen */
.lemonsoft-multiuser-content.disabled:after {
	cursor: not-allowed;
	content: "";
	position: absolute;
	left: 0;
	top: -20px;
	right: 0;
	bottom: 0;
	border-radius: 3px;
	background-color: rgba(0, 0, 0, 0.1);
}

/** END - Multiusers - loading screen **/