html {
	height: 100%;
	min-height: 100%;
	overflow: hidden;
}

body {
	height: 100%;
	min-height: 100%;
	overflow: hidden;
}

#root {
	height: 100%;
	overflow: auto;
}

.btn-live-green {
	background-color: #28c281;
	border-color: #28c281;
}

.text-live-green {
	color: #28c281;
}

.login-background {
	background: #2b3d51/*#387895*/;
}

.login-card {
	border: 5px solid #28c281 !important;
	-webkit-box-shadow: none !important;
	-moz-box-shadow: none !important;
	box-shadow: none !important;
}

.account-bg {
	box-shadow: 0 2px 6px 0 rgba(0,0,0,.2), 0 0 0 1px rgba(0,0,0,.05);
}

#login-logo {
	margin-bottom: 10px;
}

#login-title {
	font-size: 34px;
}

account-pages {
	background-color: #ccc;
}

/* ### Main ### */

#profile-icon {
	color: white;
	font-size: 25px;
}

#title-box {
	height: 65px;
}

#main-logo {
	margin-bottom: 2px;
}

.w100 {
	width: 100%;
}

.caret {
    position: absolute;
    left: 90%;
    top: 45%;
}

/* ### GROUPS ### */
#group-table td {
	position: relative;
}

.remove-button {
	position: absolute;
	right: 7px;
	top: 7px;
}

.edit-button {
	position: absolute;
	right: 102px;
	top: 7px;
}

.slide-up {
	animation: slide-up 0.4s ease;
}

.popup-fade {
	animation: popup-fade 0.3s ease;
}

.checkbox {
	margin: 0
}

.checkbox > label::after {
	padding-top: 2px;
	padding-left: 2px;
}

@keyframes slide-up {
	0% {
		opacity: 0;
		transform: translateY(20px);
	}
	100% {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes popup-fade {
	0% {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}