* {
	box-sizing: border-box;
}

.content-box {
	box-sizing: content-box;
}

html,body {
	font-family: arial, sans-serif;
	font-size: 14px;
	padding: 0;
	margin: 0;
	width: 100%;
	min-height: 100vh;
	color: #444444;
}

body {
	position: relative;
	background: #eeeeee;
	padding-bottom: 6rem;
}

body.loading {
	cursor: wait;
}

a {
	color: inherit;
	text-decoration: underline;
}

ul {
	margin: 1rem 0 1rem 0;
	padding-left: 3rem;
}

ul > li {
	margin: 0 0 1rem 0;
}

h1,h2,h3 {
	margin-top: 0;
	margin-bottom: 1rem;
}

h1 {
	font-size: 1.8rem;
	font-weight: bold;
}

h2 {
	font-size: 1.5rem;
	font-weight: bold;
}

h3 {
	font-size: 1.2rem;
	font-weight: bold;
}

.fa-fw {
	width: 1.5em;
}

.flex-row {
	display: flex;
	flex-direction: row;
	align-items: center;
}

.spacer {
	min-width: 1rem;
	width: 1rem;
	min-height: 1rem;
	height: 1rem;
}

.flex-item.grow {
	flex-grow: 1;
}

.input-search {
	background: transparent;
	width: 100%;
	font-size: 1.2rem;
	padding: 0.7rem 0;
	position: relative;
}

.input-search input {
	font-size: inherit;
	border: 0;
	outline: 0;
	width: 100%;
	padding: 0.5rem 2rem 0.5rem 0;
	border-bottom: 2px solid #cccccc;
	transition: border-bottom 0.5s, color 0.5s;
	color: #444444
}

.input-search input:focus {
	outline: 0;
	border-bottom: 2px solid #aaaaaa;
	color: #000000;
}

.input-search input:focus + .fa {
	color: #aaaaaa;
}

.input-search .fa {
	position: absolute;
	right: 0;
	top: 1.2rem;
	color: #cccccc;
	transition: color 0.5s;
	cursor: pointer;
	user-select: none;
}

.index-search {
	display: flex;
	align-items: center;
	justify-content: center;
}

.top-bar {
	background: #fefefe;
	display: flex;
	align-items: center;
	padding-top: 1rem;
	padding-bottom: 1rem;
	margin-bottom: 1rem;
}

.top-bar > .top-bar-logo {
	margin-left: 1rem;
	margin-right: 1rem;
}

.top-bar > .top-bar-logo > a {
	display: block;
}

.top-bar > .top-bar-logo img {
	display: inline-block;
	height: 4rem;
	width: 4rem;
	animation: logo-animate 1s infinite linear;
	animation-play-state: paused;
	pointer-events: none;
}

.top-bar > .top-bar-logo.animate img {
	animation-play-state: running;
}

@keyframes logo-animate {
	0%		{ transform: rotate(0deg); }
	100%	{ transform: rotate(359deg); }
}

.top-bar > .top-bar-middle {
	width: 100%;
	max-width: 600px;
	position: relative;
	height: 4rem;
	white-space: nowrap;
	margin-right: 1rem;
}

.top-bar > .top-bar-middle > * {
	position: absolute;
	transition: top 0.5s, opacity 0.5s;
	top: -10rem;
	opacity: 0.0;
}

.top-bar > .top-bar-middle > .slogan {
	font-size: 2rem;
	line-height: 4rem;
	font-weight: bold;
	overflow: hidden;
}

.slogan > * {
	vertical-align: baseline;
}

.slogan > .fire {
	color: #DE7304;
	font-family: Arial;
}

.slogan > .ball {
	color: #B30A03;
	font-family: Arial;
}

.slogan > .product {
	margin-left: 0.5rem;
	font-size: 1.5rem;
}

.top-bar > .top-bar-middle > .visible {
	top: 0;
	opacity: 1.0;
}

.top-bar > .top-bar-buttons {
	flex-grow: 1;
	flex-shrink: 0;
	margin-right: 1rem;
	text-align: right;
	position: relative;
}

.top-bar > .top-bar-buttons > * {
	transition: background 0.5s;
}

.top-bar > .top-bar-buttons > *.active {
	background: #DE7304;
}

.top-bar-notifications {
	position: relative;
}

.top-bar-notifications > .count {
	position: absolute;
	font-size: 0.7em;
	bottom: -0.5em;
	right: -0.5em;
	border-radius: 100%;
	color: #aa0b07;
	background: #fefefe;
	border: 1px solid #aa0b07;
	padding: 0.25em 0.5em;
}

.top-bar-notifications > .count:empty {
	display: none;
}

.top-bar-account {
	transition: background 0.5s;
}

.top-bar-account.logged-in {
	background: #DE7304;
}

.content-wrapper {
	width: calc(100% - 2rem);
	margin-left: 1rem;
	margin-right: 1rem;
	transition: margin-left 0.5s, margin-right 0.5s, width 0.5s;
}

.marg-bottom {
	margin-bottom: 1rem;
}

.footer {
	position: absolute;
	left: 0;
	bottom: 0;
	height: 6rem;
	width: 100%;
	background: #fefefe;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding-top: 1rem;
	padding-bottom: 1rem;
}

.footer > * {
	margin-left: 1rem;
	transition: margin-left 0.5s, margin-right 0.5s, width 0.5s;
}

.footer > *:last-child {
	margin-right: 1rem;
	text-align: right;
}

.footer > *:first-child {
	text-align: left;
}

.footer > .public-links.hidden {
	display: none;
}

.footer > .footer-links > * {
	float: left;
    border-right: 1px solid #444;
    padding-right: 0.5rem;
    padding-left: 0.5rem;
}

.footer > .footer-links > *:first-child {
	padding-left: 0;
}

.footer > .footer-links > *:last-child {
	border-right: 1px solid transparent;
	padding-right: 0;
}

.notifications {
	z-index: 9999;
	position: fixed;
	left: 0;
	top: 6rem;
	bottom: 0;
	width: 100%;
	padding: 1rem 1rem 0 1rem;
	overflow: hidden;
	pointer-events: none;
}

.notifications > .card {
	margin: 0 0 1rem auto;
	width: 25rem;
	transition: margin-right 0.5s;
	position: relative;
}

.notifications > .card > .notification-bar {
	height: 0.4rem;
	width: 100%;
	background: rgba(0, 0, 0, 0.1);
	transition: width 4s linear;
	position: absolute;
	bottom: 0;
	left: 0;
	border-bottom-left-radius: 2px;
	border-bottom-right-radius: 2px;
}

.limit-width {
	max-width: 600px;
}

.related-searches {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
}

.related-searches > a {
	background: #fefefe;
	padding: 0.5rem 1rem;
	border-radius: 1rem;
	margin-right: 1rem;
	margin-bottom: 1rem;
	text-decoration: none;
}

.content {
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	align-items: flex-start;
}

.instant-answer {
	width: 100%;
}
.instant-answer > .instant-answer-image {
	width: calc(100% + 2rem);
	border-top-left-radius: 2px;
	border-top-right-radius: 2px;
	margin: -1rem -1rem 0 -1rem;
}
.instant-answer > .instant-answer-icon {
	width: 96px;
	margin-top: -48px;
}
.instant-answer > .instant-answer-title {
	font-size: 1.1rem;
	font-weight: bold;
	margin-top: 0.5rem;
	margin-bottom: 1rem;
}

.card {
	padding: 1rem;
	box-shadow: 0 2px 6px #ccc;
	background: #fefefe;
	border-radius: 2px;
	margin-bottom: 1rem;
	transition: opacity 0.5s;
}
.card > .card-title {
	display: flex;
	font-size: 1.2rem;
	font-weight: bold;
	margin-bottom: 1rem;
}
.card > .card-title > .grow {
	flex-grow: 1;
}
.card > .card-title > .card-status {
	margin-left: 1rem;
	width: 1.5em;
}

.card > p {
	margin: 0 0 1rem 0;
}

.card > p:last-child {
	margin-bottom: 0;
}

.line-h {
	width: 100%;
	margin-top: 0.5rem;
	border-bottom: 1px solid #cccccc;
	margin-bottom: 0.5rem;
}

.search-results {
	width: 100%;
}

.search-result {
	margin-bottom: 2rem;
	position: relative;
}

.search-result:last-child {
	margin-bottom: 0;
}

.search-result {
	display: block;
	overflow: hidden;
	text-overflow: ellipsis;
}

.search-result a {
	display: inline-block;
	text-decoration: none;
	width: fit-content;
}

a.search-result-check {
	display: block;
	color: #fefefe;
	text-decoration: none;
	position: absolute;
	top: 0;
	right: 0;
}

a.search-result-check:visited {
	color: #444444;
}

a.search-result-check + .search-result-title {
	margin-right: 1.5rem;
}

.search-result > .search-result-thumbnail {
	display: block;
	float: left;
	margin-right: 0.5rem;
	margin-top: 0.5rem;
	width: 11rem;
	height: 6rem;
	text-align: center;
	background: #efefef;
}

.search-result > .search-result-thumbnail > img {
	max-width: 11rem;
	height: 6rem;
}

.search-result > .search-result-thumbnail + .search-result-infos {
	margin-top: 0.5rem;
	margin-left: 11.5rem;
}

.search-result > .search-result-title {
	font-size: 1.1em;
	color: #3300b5;
	margin-bottom: 0.2em;
}

.search-result > .search-result-title:hover {
	text-decoration: underline;
}

.search-result > .search-result-infos > .search-result-url {
	color: #0e7744;
	margin-bottom: 0.2em;
}

.search-result > .search-result-infos > .search-result-url:hover {
	text-decoration: underline;
}

.gallery {
	margin: -0.5rem;
}

.circle-glyph,
.top-bar-buttons > span {
	display: inline-block;
	padding: 0.5rem 0;
	color: #fefefe;
	background: #666666;
	border-radius: 100%;
	font-size: 1.2rem;
	user-select: none;
	cursor: pointer;
	margin-left: 0.5rem;
	width: 2.5rem;
	text-align: center;
	vertical-align: middle;
}
.circle-glyph {
	font-size: 0.6rem;
	cursor: inherit;
	padding: 0.3rem 0;
	width: 1.4rem;
}
.top-bar-buttons > span:first-child {
	margin-left: 0;
}

.panel {
	display: none;
	position: absolute;
	top: 5rem;
	right: 1rem;
	left: 1rem;
	text-align: left;
	z-index: 1;
	max-width: 25rem;
	margin-left: auto;
}

.panel > .panel-arrow {
	border-left: 1rem solid transparent;
	border-right: 1rem solid transparent;
	border-bottom: 0.5rem solid #eeeeee;
	position: absolute;
	top: -0.5rem;
}

.panel-account > .panel-arrow {
	right: 0.25rem;
}

.panel-notifications > .panel-arrow {
	right: 3.5rem;
}

.wrapper {
	display: flex;
	align-items: flex-start;
	overflow-x: auto;
	padding-bottom: 1rem;
}

.navigation {
	border-top-left-radius: 0;
	border-bottom-left-radius: 0;
	margin-right: 1rem;
	margin-left: -4.4rem;
	padding: 0;
	width: 3.4rem;
	transition: width 0.5s, font-size 0.5s, margin-left 0.5s;
	font-size: 1.6rem;
	user-select: none;
	flex-shrink: 0;
}

.navigation.visible {
	margin-left: 0;
}

.navigation > a {
	position: relative;
	display: block;
	text-decoration: none;
	padding: 0.5rem;
	transition: background 0.25s;
	white-space: nowrap;
	overflow: hidden;
	cursor: pointer;
}

.navigation > a.active {
	background: #dddddd;
	color: #000000;
}

.navigation > a:hover {
	background: #eeeeee;
}

.navigation > a:first-child {
	border-top-right-radius: 2px;
}

.navigation > a:last-child {
	border-bottom-right-radius: 2px;
}

.navigation > a > .title {
	font-size: 1rem;
	display: none;
	margin-left: 0.5rem;
	margin-right: 2.1rem;
}

.navigation > a > .count {
	font-size: 0.7rem;
	position: absolute;
	right: 0.5rem;
	background: #666666;
	border-radius: 100%;
	width: 1.5rem;
	text-align: center;
	top: 0.3rem;
	height: 1.4rem;
	line-height: 1.4rem;
	display: block;
	color: #fefefe;
	overflow: hidden;
}

.navigation > a > .count:empty {
	display: none;
}

.navigation > .line-h {
	margin: 0;
}

.navigation > .x-navigation-toggle {
	display: none;
	border-bottom: 1px solid #cccccc;
}

.navigation.visible + .content-wrapper {
	transition: margin-left 0.5s;
	margin-left: 0;
}

table {
	width: 100%;
	border-spacing: 0;
}
table.card {
	padding: 0.5rem;
}

table > thead > tr > th {
	padding: 0.5rem;
	text-align: left;
	border-bottom: 1px solid #eeeeee;
}

table > tbody > tr:hover {
	background: #f9f9f9;
}

table > tbody > tr > td {
	padding: 0.5rem;
	text-align: left;
	border-top: 1px solid #eeeeee;
}

table > tbody > tr > td .button{
	margin-bottom: 0;
}

table > tbody > tr:first-child > td {
	border-top: 1px solid transparent;
}

table > thead + tbody > tr:first-child > td {
	border-top: 1px solid #eeeeee;
}

table > tbody > tr > td.row-action {
	width: 2.6rem;
	text-align: center;
	font-size: 0.8rem;
	padding: 0;
}

table > tbody > tr > td.row-action > a {
	display: block;
	padding: 0.6rem 0.5rem;
}

table > tbody > tr > td.row-action > a:hover {
	background: #eeeeee;
}

table > tbody > tr.clickable {
	cursor: pointer;
}

td.shrink, th.shrink{
	width: 0.1%;
	white-space: nowrap;
}

.pagination {
	display: flex;
	align-items: center;
	margin: 0 auto 1rem auto;
	width: fit-content;
	font-size: 0.8rem;
	flex-wrap: wrap;
	justify-content: center;
}
.pagination > * {
	margin-bottom: 1rem;
	margin-right: 1rem;
}
.pagination > a {
	text-decoration: none;
	cursor: pointer;
	min-width: 2rem;
	text-align: center;
	padding: 0.5rem;
	background: #fefefe;
	border-radius: 1rem;
}
.pagination > a.active {
	background: #dddddd;
	color: #000000;
}
.pagination > a.text {
	cursor: default;
}

.form > .form-label, .check-btn {
	display: block;
	margin-bottom: 1rem;
}

.form-group > .form-label{
	font-weight: bold;
}

.form > .form-label{
	font-weight: bold;
}

.form > .form-group {
	display: flex;
	flex-direction: column;
}
.form > .form-group:last-child {
	margin-bottom: 0;
}
.form > .form-group > * {
	margin-bottom: 1rem;
}

label {
	font-size: 1rem;
	display: inline;
}

label.check-btn{
	display: inline-block;
	position: relative;
}

label.check-btn > input:not(:checked) + span{
	background-color: #fff;
}

label.check-btn > input:checked + span{
	background-color: #ddd;
}

label.check-btn > input{
	display: none;
	margin: 0;
	position: absolute;
	left: 0;
	top: 0;
	height: 100%;
	width: 100%;
}

label.check-btn span {
	font-size: 1em;
	display: inline-block;
	padding: 0.5rem 1rem;
	border: 1px solid #dddddd;
	border-radius: 10rem;
	margin-right: 1rem;
	margin-bottom: 1rem;
	text-decoration: none;
	cursor: pointer;
	color: inherit;
	font: inherit;
	background: #f3f3f3;
	transition: background 0.25s, width 0.25s;
}

label.check-btn.multi > input:checked + span, label.check-btn.multi.hasLast > span{
	border-top-right-radius: 0;
	border-bottom-right-radius: 0;
	margin: 0;
	background-color: #ddd;
}

label.check-btn.multi.hasLast > span{
	background-color: #eee;
}

label.check-btn.multi > span:after{
	font: normal normal normal 14px/1 FontAwesome;
	content: "  \f0da";
}

label.check-btn.multi > input:checked + span:after{
	font: normal normal normal 14px/1 FontAwesome;
	content: "  \f0d9";
}

label.check-btn.multi.child > span:after{
	display: none;
	width: 0;
}

label.check-btn.multi.child.show > input:not(:checked) + span {
	display: block;
	width: fit-content;
	background-color: #fafafa;
}

label.check-btn.multi.child > input:not(:checked) + span{
	display: none;
}

label.check-btn.multi.child > span {
	border-radius: 0;
	margin: 0;
	margin-left: -1px;
}

label.check-btn.multi.child > input:checked + span{
	margin-left: -1px;
}

label.check-btn.multi.child.last > span{
	border-top-right-radius: 10rem;
	border-bottom-right-radius: 10rem;
	border-right: 1px solid #ddd;
	margin-right: 1rem;
}

.input-glyph {
	position: absolute;
	top: 1.4rem;
	right: 0;
	color: #999999;
	pointer-events: none;
}

.input-glyph + input,
.input-glyph + select {
	padding-right: 1.7rem;
}

.input-glyph + .input-glyph{
	padding-right: 3rem;
}

.input-glyph + .input-glyph + input,
.input-glyph + .input-glyph + select{
	padding-right: 3rem;
}

input:not([type='checkbox']),
select,
textarea {
	display: inline-block;
	font-size: inherit;
	border: 0;
	outline: 0;
	width: 100%;
	padding: 0.5rem 0 0.5rem 0;
	border-bottom: 2px solid #cccccc;
	transition: border-bottom 0.25s, color 0.25s;
	color: #444444;
	-webkit-appearance: unset;
	appearance: unset;
    border-radius: 0;
    background: unset;
}
textarea {
	background: #f9f9f9;
	resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
	border-bottom: 2px solid #999999;
}

input:disabled,
select:disabled,
textarea:disabled {
	color: #aaaaaa;
	-webkit-text-fill-color:#aaaaaa;
	border-bottom: 2px solid #eeeeee;
}

.form-field {
	position: relative;
	padding-top: 0.8rem;
}
.form-field > .placeholder {
	position: absolute;
	top: 1.3rem;
	left: 0;
	color: #999999;
	transition: top 0.25s, font-size 0.25s, color 0.25s;
	pointer-events: none;
	user-select: none;
}
html.noscript .form-field > .placeholder,
.form-field > *:focus + .placeholder,
.form-field > select + .placeholder,
.form-field > .toggle-list + .placeholder {
	top: 0;
	font-size: 0.8rem;
}

/** non empty */
.form-field > *.has-value + .placeholder {
	top: 0;
	font-size: 0.8rem;
}

/** valid input */
.form-field.validate > *.has-value:valid {
	border-bottom: 2px solid #56b552;
}
.form-field.validate > *.has-value:valid + .placeholder {
	color: #56b552;
}

/** invalid input */
.form-field > *.has-error,
.form-field.validate > *:invalid {
	border-bottom: 2px solid #c9302c;
	color: #c9302c;
}
.form-field > *.has-error + .placeholder,
.form-field.validate > *:invalid + .placeholder {
	color: #c9302c;
}

.button-row {
	display: flex;
	flex-wrap: wrap;
	align-items: flex-start;
	justify-content: flex-start;
	margin-bottom: -1rem;
}

.button-row-spaced {
	flex-wrap: nowrap;
	justify-content: space-between;
}

button, a.button, input.button, label.button {
	font-size: 1em;
	display: inline-block;
	padding: 0.5rem 1rem;
	border: 1px solid #dddddd;
	border-radius: 0.3rem;
	margin-right: 1rem;
	margin-bottom: 1rem;
	text-decoration: none;
	cursor: pointer;
	color: inherit;
	font: inherit;
	background: #f3f3f3;
	transition: background 0.25s;
}

button:disabled, a.button:disabled, input.button:disabled {
	color: #999999;
	cursor: not-allowed;
}

form > input.button{
	font-size: 1rem;
	display: block;
	width: fit-content;
}

form > button{
	font-size: 1rem;
}

form.inline{
	display: inline-block;
}

.form-field > a{
	white-space: nowrap;
	margin-right: 0;
}

label.check-btn span{
	margin-bottom: 0;
}

label.check-btn > section > label{
	display: block;
}

label.check-btn > section > label > span{
	width: 100%;
}

button:hover, a.button:hover {
	background: #fefefe;
}

button:focus {
	outline: 0;
}

.input-search button.fa {
	background: none;
	border: none;
	padding: 0;
	margin: 0;
}

/* xs - smartphone - portrait */
.search-results {
	width: 100%;
}

/* sm - smartphone - landscape */
@media(min-width:576px) {
	.top-bar > .top-bar-logo {
		margin-left: 2rem;
		margin-right: 2rem;
	}
	.top-bar > .top-bar-middle {
		margin-right: 2rem;
	}
	.top-bar > .top-bar-buttons {
		margin-right: 2rem;
	}
	.panel-notifications,
	.panel-account {
		right: 2rem;
		left: 2rem;
	}
	.content-wrapper {
		width: calc(100% - 4rem);
		margin-left: 2rem;
		margin-right: 2rem;
	}
	.footer > *:first-child {
		margin-left: 2rem;
	}
	.footer > *:last-child {
		margin-right: 2rem;
	}
	.navigation.visible + .content-wrapper {
		width: calc(100% - 5.5rem);
		margin-left: 3.5rem;
		margin-right: 2rem;
	}
	.form > .form-group {
		flex-direction: row;
	}
	.form > .form-group.wrap{
		flex-wrap: wrap;
	}

	.form > .form-group > * {
		flex-grow: 1;
		margin-right: 1rem;
	}

	.form-group > .shrink{
		flex-grow: 0;
	}

	.form-group > .shrink button{
		margin-right: 0;
	}

	.form > .form-group > *:last-child {
		margin-right: 0;
	}
	.index-search {
		height: calc(100vh - 15rem);
	}
}

/* md - tablet */
@media(min-width:768px) {
	.content {
		flex-direction: row-reverse;
	}
	.search-results {
		max-width: 600px;
		flex-grow: 2;
	}
	.search-results.focus-images {
		max-width: 100%;
	}
	.instant-answer {
		width: auto;
		flex-grow: 1;
		max-width: 500px;
		margin-left: 1rem;
	}
}

/* lg - desktop */
@media(min-width:992px) {
	.top-bar > .top-bar-logo {
		margin-left: 2.5rem;
		margin-right: 2.5rem;
	}
	.top-bar > .top-bar-middle {
		margin-right: 2.5rem;
	}
	.top-bar > .top-bar-buttons {
		margin-right: 2.5rem;
	}
	.panel-notifications,
	.panel-account {
		right: 2.5rem;
		left: 2.5rem;
	}
	.content-wrapper {
		width: calc(100% - 18rem);
		margin-left: 9rem;
		margin-right: 9rem;
	}
	.footer > *:first-child {
		margin-left: 9rem;
	}
	.footer > *:last-child {
		margin-right: 9rem;
	}
	.navigation > .x-navigation-toggle {
		display: block;
	}
	.navigation {
		margin-left: -21rem;
	}
	.navigation.visible {
		margin-left: 0;
	}
	.navigation.toggled {
		font-size: 1rem;
		border-top-left-radius: 2px;
		border-bottom-left-radius: 2px;
		width: 15rem;
	}
	.navigation.toggled > a:first-child {
		border-top-left-radius: 2px;
	}
	.navigation.toggled > a:last-child {
		border-bottom-left-radius: 2px;
	}
	.navigation.toggled > a > .title {
		display: inline-block;
	}
	.navigation.visible + .content-wrapper {
		width: calc(100% - 7rem);
		margin-left: 4.5rem;
		margin-right: 2.5rem;
	}
	.navigation.toggled.visible {
		margin-left: 1rem;
	}
	.navigation.toggled.visible + .content-wrapper {
		width: calc(100% - 2.5rem);
		margin-left: 0;
	}
}

.sub-title {
	display: inline-block;
	margin-bottom: 0.5rem;
	border-bottom: 1px dotted #444444;
}

/* meta classes */
.text-big		{ font-size: 2rem; }
.text-huge		{ font-size: 3rem; text-align: center; }
.text-monospace { font-family: monospace; }
.text-gray      { color: #999999; }
.text-mute      { font-size: 0.8em; color: #999999; }
.text-nowrap    { white-space: nowrap; }
.text-info		{ color: #337ab7; }
.text-success	{ color: #5cb85c; }
.text-warning	{ color: #f0ad4e; }
.text-danger	{ color: #d9534f; }

.bg-info	{ background-color: #d7e6f3; }
.bg-success	{ background-color: #dbefdb; }
.bg-warning	{ background-color: #fae9d0; }
.bg-danger	{ background-color: #f5d6d5; }

.circle-info { background-color: #337ab7; }
.circle-success { background-color: #5cb85c; }
.circle-warning { background-color: #f0ad4e; }
.circle-danger { background-color: #d9534f; }

/* flex */
.row {
	display: flex;
	margin-right: -1rem;
	align-items: flex-start;
	flex-direction: row;
	flex-wrap: wrap;
}
.row-nowrap, .row.nowrap {
	flex-wrap: nowrap;
}

.row                { margin-bottom: -1rem; }
.row > *            { padding-right: 1rem; padding-bottom: 1rem; }
.row.nowrap > *, .row-nowrap > * { padding-bottom: 0; }
.row > .col-grow    { flex-grow: 1; }

.row > .col-xs-1    { width:   8.3333%; }
.row > .col-xs-2    { width:  16.6667%; }
.row > .col-xs-3    { width:  25.0000%; }
.row > .col-xs-4    { width:  33.3333%; }
.row > .col-xs-5    { width:  41.6667%; }
.row > .col-xs-6    { width:  50.0000%; }
.row > .col-xs-7    { width:  58.3333%; }
.row > .col-xs-8    { width:  66.6667%; }
.row > .col-xs-9    { width:  75.0000%; }
.row > .col-xs-10   { width:  83.3333%; }
.row > .col-xs-11   { width:  91.6667%; }
.row > .col-xs-12   { width: 100.0000%; }

/* sm - smartphone - landscape */
@media(min-width:576px) {
	.row > .col-sm-1    { width:   8.3333%; }
	.row > .col-sm-2    { width:  16.6667%; }
	.row > .col-sm-3    { width:  25.0000%; }
	.row > .col-sm-4    { width:  33.3333%; }
	.row > .col-sm-5    { width:  41.6667%; }
	.row > .col-sm-6    { width:  50.0000%; }
	.row > .col-sm-7    { width:  58.3333%; }
	.row > .col-sm-8    { width:  66.6667%; }
	.row > .col-sm-9    { width:  75.0000%; }
	.row > .col-sm-10   { width:  83.3333%; }
	.row > .col-sm-11   { width:  91.6667%; }
	.row > .col-sm-12   { width: 100.0000%; }
}

/* md - tablet */
@media(min-width:768px) {
	.row > .col-md-1    { width:   8.3333%; }
	.row > .col-md-2    { width:  16.6667%; }
	.row > .col-md-3    { width:  25.0000%; }
	.row > .col-md-4    { width:  33.3333%; }
	.row > .col-md-5    { width:  41.6667%; }
	.row > .col-md-6    { width:  50.0000%; }
	.row > .col-md-7    { width:  58.3333%; }
	.row > .col-md-8    { width:  66.6667%; }
	.row > .col-md-9    { width:  75.0000%; }
	.row > .col-md-10   { width:  83.3333%; }
	.row > .col-md-11   { width:  91.6667%; }
	.row > .col-md-12   { width: 100.0000%; }
}

/* lg - desktop */
@media(min-width:992px) {
	.row > .col-lg-1    { width:   8.3333%; }
	.row > .col-lg-2    { width:  16.6667%; }
	.row > .col-lg-3    { width:  25.0000%; }
	.row > .col-lg-4    { width:  33.3333%; }
	.row > .col-lg-5    { width:  41.6667%; }
	.row > .col-lg-6    { width:  50.0000%; }
	.row > .col-lg-7    { width:  58.3333%; }
	.row > .col-lg-8    { width:  66.6667%; }
	.row > .col-lg-9    { width:  75.0000%; }
	.row > .col-lg-10   { width:  83.3333%; }
	.row > .col-lg-11   { width:  91.6667%; }
	.row > .col-lg-12   { width: 100.0000%; }
}

.row.slim > .col{
	padding-bottom: 0;
}
.row.slim{
	margin-right: -2rem;
}

/* modals */
.modal-shade {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.3);
	opacity: 0.0;
	z-index: -1;
	pointer-events: none;
	transition: opacity 0.5s;
}

.modal-wrapper {
	width: 100%;
	max-width: 40rem;
	margin: 1rem auto 0 auto;
}

@media(min-height:35rem) {
	.modal-wrapper {
		margin-top: 10rem;
	}
}

.modal-wrapper > * {
	display: none;
}

.modal-wrapper > *:last-child {
	display: block;
}

.no-font{
	font-size: 0;
}

thead.sorted{
	white-space: nowrap;
}

thead.sorted > tr > th[data-sort-key] {
  cursor: pointer;
	user-select: none;
}

th > span.sort{
	position: relative;
	padding-left: 1.5rem;
}

th > span.sort:before,
th > span.sort:after {
	border: 4px solid transparent;
	content: "";
	display: block;
	height: 0;
	right: 5px;
	top: 50%;
	position: absolute;
	width: 0;
}
th > span.ASC:before{
	border-bottom-color: #666;
	margin-top: -9px;
}

th > span.DESC:after {
	border-top-color: #666;
	margin-top: 1px;
}

.chip {
	font-size: 1rem;
	display: inline-block;
	padding: 0.5rem 1rem;
	border: 1px solid #dddddd;
	border-radius: 10rem;
	margin-right: 1rem;
	margin-bottom: 1rem;
	text-decoration: none;
	cursor: pointer;
	color: inherit;
	font: inherit;
	background: #fff;
	transition: background 0.25s, width 0.25s;
}

.chip:active{
	background-color: #efefef;
}

form > .chip{
	font-size: 1rem;
}

.input-glyph.btn{
	pointer-events: all;
	cursor: pointer;
	height: 100%;
	width: 2rem;
	top: 0;
}
.input-glyph.btn:before{
	position: absolute;
	top: 1.4rem;
	left: 0;
	right: 0;
}

.pop{
	height: 100vh;
	width: 100vw;
	position: fixed;
	top: 0;
	left: 0;
	background-color: rgba(0, 0, 0, 0.5);
}

.pop > .card{
	width: calc(100% - (2*5rem));
	margin-left: 5rem;
	margin-right: 5rem;
	margin-top: 3rem;
	position: relative;
	max-height: calc(100vh - (2*3rem));
	overflow-y: auto;
	overflow-x: hidden;
}

@media screen and (max-device-aspect-ratio: 1/1){
	.pop > .card{
		margin-left: 2%;
		margin-right: 2%;
		width: 96%;
	}
}

.pop > .close{
	cursor: pointer;
	position: absolute;
	right: 4rem;
	top: 2rem;
	border-radius: 100%;
	background-color: #fff;
	width: 2rem;
	height: 2rem;
	z-index: 99999;
	box-shadow: -5px 5px 10px -3px rgba(0,0,0,0.75);
}

@media screen and (max-device-aspect-ratio: 1/1){
	.pop > .close{
		right: 0rem;
		top: 2rem;
	}
}

.close > span.fa{
	width: 2rem;
	text-align: center;
	line-height: 2rem;
}

.toggle-list {
	display: flex;
	margin-top: 0.2rem;
}

.toggle-list > label {
	position: relative;
	padding: 0.5rem 0;
	font-size: 0;
}

.toggle-list > label:after {
	font-size: 1rem;
	content: '/';
	padding-left: 0.5rem;
	margin-right: 0.5rem;
}

.toggle-list > label:last-child:after {
	content: '';
	margin-right: 0;
}

.toggle-list > label > input {
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	border: 0;
	outline: 0;
	padding: 0;
	margin: 0;
	cursor: pointer;

	-webkit-appearance: unset;
	appearance: unset;
    border-radius: 0;
    background: unset;
}

.toggle-list > label > span {
	font-size: 1rem;
	padding: 0.3rem 0;
	border-bottom: 2px solid transparent;
	transition: border-bottom 0.25s, color 0.25s;
}

.toggle-list > label > span > .fa:before {
	content: "\f10c"; /* box */
	content: "\f096"; /* circle */
}

.toggle-list > label:hover > span {
	border-bottom: 2px solid #999999;
}

.toggle-list > label > input:checked + span {
	border-bottom: 2px solid #5cb85c;
}

.toggle-list > label > input:checked + span > .fa:before {
	content: "\f192"; /* circle + check */
	content: "\f05d"; /* circle + dot */
	content: "\f046"; /* box + check */
}

.toggle-list.list{
	flex-direction: column;
}

.toggle-list.list > label:after {
	display: none;
}

input.file{
	position: absolute;
	opacity: 0;
	top: 0;
	left: 0;
	z-index: -1;
}

.progress{
	width: 100%;
	height: 100%;
	position: relative;
	padding-bottom: 1rem;
}

.progress > div{
	display: inline-block;
	height: 100%;
	background-color: #ccc;
	transition: width 0.5s;
}

.noscroll {
	overflow: hidden;
}

.scroll-x{
	overflow: hidden;
	overflow-x: auto;
}

.scroll-y {
	overflow-y: auto;
}

.mh-25 {
	max-height: 25rem;
}

code{
	display: block;
	background-color: #eee;
	white-space: pre;
	font-size: 1rem;
	padding: 0.5rem;
	font-weight: normal;
}

.no-spinners::-webkit-inner-spin-button, .no-spinners::-webkit-outer-spin-button { 
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    margin: 0; 
}
.account-email{
	display: inline;
	font-weight: 300;
	font-style: italic;
	color: grey;
	opacity: 70%;
}