/* hide mobile only things on desktop */
@media (min-width: 768px) {	.mobile-only { display: none;}}
@media (max-width: 767px) {	.desktop-only { display: none !important;}}

#table {
	min-width: 50rem;
}
.pusher {
	overflow-x: auto !important;
}
/* Set size of content window to right of sidebar*/
@media (min-width: 768px) {
	.pusher {
		/* minus size of side bar */
		width: calc(100% - 260px - 10px);
		/* pad the sides slightly */
		padding: 0 2rem;
		/* set page to never scroll horizonatlly and only scroll vertically if it needs to */
		overflow-y: auto;
	}
}
@media (max-width: 767px) {
	.pusher {
		padding: 0 1rem;
	}
	.profile__name {
	    max-width: 4rem;
	}
	 #header__text {
		max-width: 14rem;
	}
}

/* semantic-ui extension */
.inline {
	display: inline !important;
}
.link {
	text-decoration: underline;
	cursor: pointer;
}
.ui.tight.grid > * {
	padding: 0 !important;
	margin: 0;
}
.nomargin {
	margin: 0 !important;
}


/* specific hidding of elements */
.hidden {
	display: none;
}
.client-only, .solicitor-only {
	display: none;
}


/* legal sphere colors */
body {
	background-color: #fafafa
}
.legal-sphere-theme {
	background-color: #DB6262 !important;
	color: white !important;
}
.legal-sphere-color {
	color: #DB6262 !important;
}
.legal-sphere-color-bg {
	background-color: #DB6262 !important;
}

/* page loading icon */
#pageLoadingModal {
	width: 100vw;
	height: 100vh;
	top: 0;
	left: 0;
	z-index: 10000;
	position: absolute;
	display: grid;
	grid-template-areas: "one";
	background-color: #181616;
}

#pageLoadingModal > img {
	grid-area: one;
	margin: auto;
	width: 50vw;
	max-width: 30rem;

	transition: all 1s ease-out;

	animation-duration: 0.5s;
	animation-name: changewidth;
	animation-iteration-count: infinite;
	animation-direction: alternate;
}
#pageLoadingModal[style*="none"] {
	transition: all 0.5s ease-out;
}
@keyframes changewidth {
	from {
		width: 50vw;
		max-width: 30rem;
	}
	to {
		width: 55vw;
		max-width: 35rem;
	}
}

.profile__pic {
	margin: auto;
}
.header__acount-dropdown > .profile__pic {
	margin-right: 0.5rem;
}
