html {
	/* width: 100%; */
	height: 100%;
	/* background: #4d4e4f; */
	background: linear-gradient(to bottom, #121212, #1E1E1E);
	font-family: 'Roboto', sans-serif;
	font-size: 1em;
	margin: 0;
	padding: 0;
	-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

/* ::selection {
	color: none;
	background: none;
}

::-moz-selection {
	color: none;
	background: none;
} */

body {
	/* width:100%; */
	height: 100%;
	overflow-y: auto;
	overflow-x: hidden;
	-webkit-font-smoothing: antialiased;
	font-family: 'Roboto', sans-serif;
}

h1 {
	font-size: 2em;
	color: white;
}

.summary>div>div>p {
	margin-top: 0;
	margin-bottom: 0;
}

.disable-select {
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

.react-list-select {
	display: inline-block;
	position: relative;
	outline: none;
	list-style: none;
	padding: 0;
	margin: 0;
	width: 100%;
}

.react-list-select--item {
	padding: 0;
	cursor: pointer;
	position: relative;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	-o-user-select: none;
	user-select: none;
}

.react-list-select--item.is-selected {
	-webkit-user-select: inherit;
	-moz-user-select: inherit;
	-ms-user-select: inherit;
	-o-user-select: inherit;
	user-select: inherit;
}

.disable-select {
	user-select: none;
	/* supported by Chrome and Opera */
	-webkit-user-select: none;
	/* Safari */
	-khtml-user-select: none;
	/* Konqueror HTML */
	-moz-user-select: none;
	/* Firefox */
	-ms-user-select: none;
	/* Internet Explorer/Edge */
}

.react-list-select--item.is-disabled {
	cursor: default;
}

.react-list-select {
	/* background: #fafafa;
	border: 1px solid #cacaca; */
	margin-right: 0.5em;
}

.react-list-select--item.is-selected {
	background: #d7e7ff;
}

.react-list-select:focus .react-list-select--item.is-focused::before,
.react-list-select:focus .react-list-select--item.is-focused::after {
	content: '';
	position: absolute;
	top: 0;
	bottom: 0;
	width: 2px;
	background: #79b9ff;
}

.react-list-select:focus .react-list-select--item.is-focused::before {
	left: 0;
}

.react-list-select:focus .react-list-select--item.is-focused::after {
	right: 0;
}

.react-list-select--item.is-disabled {
	color: #afafaf;
}

.page-editor h1 {
	font-size: 2.5em;
	color: black;
}

#root>div {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
	padding-top: 0px;
	display: flex;
	overflow-y: auto;
}

.navbar-header .navbar-brand {
	font-family: 'Catamaran', 'Helvetica', 'Arial', 'sans-serif';
	font-weight: 200;
	letter-spacing: 1px;
	color: rgba(255, 255, 255, 0.7);
	/* height: inherit!important; */
}

.navbar-header .navbar-brand:hover,
.navbar-header .navbar-brand:focus {
	color: white;
}

.smooth-font {
	/* Adjust font size */
	font-size: 100%;
	-webkit-text-size-adjust: 100%;
	/* Font varient */
	font-variant-ligatures: none;
	-webkit-font-variant-ligatures: none;
	/* Smoothing */
	text-rendering: optimizeLegibility;
	-moz-osx-font-smoothing: grayscale;
	/* font-smoothing: antialiased; */
	-webkit-font-smoothing: antialiased;
	text-shadow: rgba(0, 0, 0, .01) 0 0 1px;
}

.smooth-font-white {
	/* Adjust font size */
	font-size: 100%;
	-webkit-text-size-adjust: 100%;
	/* Font varient */
	font-variant-ligatures: none;
	-webkit-font-variant-ligatures: none;
	/* Smoothing */
	text-rendering: optimizeLegibility;
	-moz-osx-font-smoothing: grayscale;
	/* font-smoothing: antialiased; */
	-webkit-font-smoothing: antialiased;
	text-shadow: rgba(255, 255, 255, .01) 0 0 1px;
}

.player-modal-slide-up-enter {
	transform: translateY(100%);
}

.player-modal-slide-up-enter-active {
	transform: translateY(0);
	transition: transform 400ms ease;
}

.player-modal-slide-up-exit {
	transform: translateY(0);
}

.player-modal-slide-up-exit-active {
	transform: translateY(100%);
	transition: transform 400ms ease;
}

.player-comments-modal {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	max-width: unset;
	height: 100%;
	padding: 0px;
	overflow: hidden;
	background: #F9A200;
	background-clip: padding-box;
	border-radius: 0px;
	margin: 0px;
	z-index: 4;
}

.custom-overlay {
	background: rgba(0, 0, 0, 0.75);
	display: flex;
	align-items: flex-start;
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	overflow-y: auto;
	overflow-x: hidden;
	z-index: 1000;
	padding: 0 !important;
}

.custom-modal-preview {
	width: 100%;
	max-width: 100%;
	position: relative;
	padding: 0 !important;
	background: #ffffff;
	background-clip: padding-box;
	box-shadow: 0 12px 15px 0 rgba(0, 0, 0, 0.25);
	border-radius: 15px;
	margin: 0;
	z-index: 1001;
	overflow: hidden;
}

.custom-modal-overlay {
	background: rgba(0, 0, 0, 0.75);
	display: flex;
	align-items: flex-start;
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	overflow-y: hidden;
	overflow-x: hidden;
	z-index: 1000;
	padding: 0;
}

.custom-modal-chat {
	width: 100%;
	max-width: 100%;
	height: 100%;
	position: relative;
	padding: 10 !important;
	background: #ffffff;
	background-clip: padding-box;
	box-shadow: 0 12px 15px 0 rgba(0, 0, 0, 0.25);
	border-radius: 15px;
	margin: 0;
	z-index: 1001;
	overflow: hidden;
}

.custom-modal-chat>div {
	display: flex;
	flex-direction: row;
	height: 100%;
}

.custom-modal-markup {
	max-width: unset;
	position: relative;
	padding: 10 !important;
	background: #ffffff;
	background-clip: padding-box;
	box-shadow: 0 12px 15px 0 rgba(0, 0, 0, 0.25);
	border-radius: 15px;
	margin: auto;
	z-index: 1001;
	overflow: auto;
	height: 100%;
	width: -webkit-fill-available;
}

.custom-modal-markup>div {
	height: 100%;
}

.custom-modal-invoice {
	width: 400px;
	max-width: 100%;
}

.custom-modal {
	width: 95%;
	max-width: 800px;
	position: relative;
	padding: 1.2rem;
	background: #ffffff;
	background-clip: padding-box;
	box-shadow: 0 12px 15px 0 rgba(0, 0, 0, 0.25);
	border-radius: 15px;
	margin: auto;
	z-index: 1001;
	overflow: visible;
}

.custom-modal-playlists {
	width: 100%;
	max-width: 900px;
	position: relative;
	padding: 1.65rem;
	background: #ffffff;
	background-clip: padding-box;
	box-shadow: 0 12px 15px 0 rgba(0, 0, 0, 0.25);
	border-radius: 15px;
	margin: auto;
	z-index: 1001;
	overflow: hidden;
	max-height: -webkit-fill-available;
}

.custom-modal-2 {
	overflow: auto;
	height: 90%;
	/* max-height: 75%;
    width: 75%;    
    max-width: 800px;
    position: relative;
    padding: 1.2rem;
    background: #ffffff;
    background-clip: padding-box; */
	box-shadow: 0 12px 15px 0 rgba(0, 0, 0, 0.25);
	border-radius: 15px;
}

.custom-modal.templates {
	width: 90%;
	max-width: 90% !important;
	max-height: 90%;
	height: 90%;
	overflow-y: hidden;
	overflow-x: hidden;
	position: relative;
	display: flex;
	flex-direction: column;
}

.custom-modal.pdf {
	width: 100%;
	max-width: 100% !important;
	max-height: 100%;
	height: 100%;
	overflow-y: hidden;
	overflow-x: hidden;
	position: relative;
	display: flex;
	flex-direction: column;
}

.custom-modal.fitScreen {
	width: 90%;
	max-width: 90% !important;
	max-height: 90%;
	height: 90%;
	overflow-y: hidden;
	overflow-x: hidden;
	position: relative;
	display: flex;
	flex-direction: column;
}

.custom-player-modal {
	width: 100%;
	position: relative;
	background: #000000;
	background-clip: padding-box;
	box-shadow: 0 12px 15px 0 rgba(0, 0, 0, 0.25);
	border-radius: 15px;
	margin: auto;
	z-index: 1001;
	overflow: hidden;
}

.custom-player-modal-status-detail {
	width: 100%;
	position: relative;
	background: #000000;
	background-clip: padding-box;
	box-shadow: 0 12px 15px 0 rgba(0, 0, 0, 0.25);
	border-radius: 15px;
	margin: auto;
	z-index: 1001;
	overflow: hidden;
	height: 100vh;
	display: flex;
	flex-direction: column;
}

.custom-player-modal-overlay {
	display: flex;
	position: fixed;
	inset: 0px;
	background-color: rgba(255, 255, 255, 0.75);
	z-index: 1002;
}

.custom-player-status-modal {
	width: 95%;
	max-width: 800px;
	position: relative;
	padding: 1.2rem;
	background: #ffffff;
	background-clip: padding-box;
	box-shadow: 0 12px 15px 0 rgba(0, 0, 0, 0.25);
	border-radius: 15px;
	margin: auto;
	z-index: 1001;
	overflow: hidden;
}

.custom-player-modal-close-button {
	width: 28px;
	height: 28px;
	background-color: #d1342c;
	border-radius: 5px;
	font-size: 22px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	color: black;
}

.template-card>div {
	cursor: pointer;
	position: relative;
}

.template-card:hover>div {
	background-color: #EEEEEE;
}

.selectCircle {
	position: absolute;
	right: 5px;
	bottom: 5px;
	width: 30px;
	height: 30px;
	border-radius: 15px;
	border: 1px solid #B2DBFF;
	display: flex;
	justify-content: center;
	align-items: center;
}

.selectCircle>* {
	display: none;
	position: relative;
	color: white;
}

.template-card.selected .selectCircle {
	background-color: #B2DBFF;
}

.template-card.selected .selectCircle>* {
	display: block;
}

.template-card.selected .thumbnail {
	border: 1px solid #B2DBFF;
}

@media (min-width:756px) {
	.custom-modal {
		width: 75%;
	}
}

#confirmButton {
	display: none;
}

.myBackground {
	width: 100%;
	min-height: 100%;
}

div:focus {
	outline: 0;
}

table,
th,
td {
	/* border: 1px solid black; */
	padding: 5px !important;
}

td {
	width: 30%;
}

select {
	margin-bottom: 25px;
}

.truncate260 {
	width: 260px;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.card,
.cardNew {
	position: relative;
	overflow: visible;
	cursor: pointer;
	width: 256px;
	height: 256px;
	margin: 5px;
	border-radius: 5px;
	border-style: solid;
	border-color: #dddddd;
	border-width: 2px;
}

.cardCompact,
.cardNewCompact {
	position: relative;
	overflow: visible;
	cursor: pointer;
	width: 256px;
	height: 75px;
	margin: 5px;
	border-radius: 5px;
	border-style: solid;
	border-color: #dddddd;
	border-width: 2px;
}

/*
.card:hover, .cardNew:hover {
	border-color: steelblue;
}
*/
.cardNew,
.cardNewCompact {
	background-color: #eeeeee;
	border-style: dashed;
}

.ais-ClearAll__root {
	min-height: 30px;
	margin-bottom: 3px;
}

/* Start Tags */
/* Example Styles for React Tags*/
div.ReactTags__tags {
	position: relative;
}

/* Styles for the input */
div.ReactTags__tagInput {
	width: 200px;
	border-radius: 2px;
	display: inline-block;
}

div.ReactTags__tagInput input.ReactTags__tagInputField,
div.ReactTags__tagInput input.ReactTags__tagInputField:focus {
	height: 31px;
	margin: 0;
	font-size: 12px;
	width: 100%;
	border: 1px solid #eee;
}

/* Styles for selected tags */
div.ReactTags__selected span.ReactTags__tag {
	border: 1px solid #ddd;
	background: #eee;
	font-size: 12px;
	display: inline-block;
	padding: 5px;
	margin: 0 5px;
	cursor: move;
	border-radius: 2px;
}

div.ReactTags__selected a.ReactTags__remove {
	color: #aaa;
	margin-left: 5px;
	cursor: pointer;
}

/* Styles for suggestions */
div.ReactTags__suggestions {
	position: absolute;
}

div.ReactTags__suggestions ul {
	list-style-type: none;
	box-shadow: .05em .01em .5em rgba(0, 0, 0, .2);
	background: white;
	width: 200px;
}

div.ReactTags__suggestions li {
	border-bottom: 1px solid #ddd;
	padding: 5px 10px;
	margin: 0;
}

div.ReactTags__suggestions li mark {
	text-decoration: underline;
	background: none;
	font-weight: 600;
}

div.ReactTags__suggestions ul li.active {
	background: #b7cfe0;
	cursor: pointer;
}

/* End Tags */

div {
	-webkit-overflow-scrolling: touch;
}

.Loader__content {
	/* width: 100%; */
}

.form-group {
	width: 100%;
}

.page-header {
	margin-top: 20px;
}

.page-header.flex {
	flex: 0;
	flex-basis: 75px;
}

@media (max-width:600px) {
	.page-header.flex {
		flex-basis: 50px;
	}

	.page-header {
		flex-direction: column;
	}
}

.profile-dropdown-item>a {
	padding: 0 !important
}

.profile-dropdown-item .btn-group .dropdown-toggle {
	box-shadow: none;
}

.profile-dropdown-item .btn-group.open .dropdown-toggle {
	background-color: #d7d7d7 !important;
}

.navbar-default {
	border-radius: 0;
	box-shadow: 0 3px 3px rgba(0, 0, 0, .2);
}

.pageNav .orgLogo {
	color: #F9F9F9 !important;
}

.navbar-toggle {
	margin-top: 15px;
}

.navbar-nav {
	margin-top: 0
}

input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
	-webkit-appearance: none;
	margin: 0;
}

input[type="number"] {
	-moz-appearance: textfield;
}

.row-eq-height {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	padding-left: 0;
	padding-right: 0;
	margin-right: -15px;
	margin-left: -15px;
}

.vcenter {
	display: flex;
	align-items: center;
}

.navbar-header .btn-default {
	border-color: transparent !important;
}

.profile-dropdown-item {
	list-style-type: none;
}

.modal-footer-container {
	display: flex;
	flex-direction: row;
	justify-content: flex-end;
	width: 100%;
	padding: 10px;
	min-height: 55px;
}

.space-between {
	justify-content: space-between;
}

/* Component styles */
/*** custom checkboxes ***/
/*
.player-item-checkbox {
	margin: 0px 7px 4px 7px; 
	display: flex;
	flex-direction: row;
	align-items: center;
	font-weight: 400;
}

.player-item-checkbox input[type=checkbox] {
	display:none;
}

.player-item-checkbox input[type=checkbox] + span {
	width: 28px;
}

.player-item-checkbox input[type=checkbox] + span:before {
	font-family: FontAwesome;	
	font-size: 24px;
	font-weight: 400;
	content: "\f096";	
}

.player-item-checkbox input[type=checkbox]:checked + span:before {
	font-family: FontAwesome;	
	font-weight: 400;
	font-size: 24px;
	content: "\f046";
}

.player-item-checkbox-large {
	margin: 10px;
	margin-right: 20px;
	display: flex;
	flex-direction: row;
	align-items: center;
	font-weight: 400;
}

.player-item-checkbox-large input[type=checkbox] {
	display:none;
}

.player-item-checkbox-large input[type=checkbox] + span {
	width: 32px;	
}
*/

/*** custom radio ***/
/*
.player-item-radio {
	margin: 0px 7px 4px 7px;
	display: flex;
	flex-direction: row;
	align-items: center;
	font-weight: 400;
}

.player-item-radio input[type=radio] {
	display:none;
}

.player-item-radio input[type=radio] + span {
	width: 28px;
}

.player-item-radio input[type=radio] + span:before {
	font-family: FontAwesome;	
	font-weight: 400;
	font-size: 24px;
	content: "\f10c";	
}

.player-item-radio input[type=radio]:checked + span:before {
	font-family: FontAwesome;	
	font-weight: 400;
	font-size: 24px;
	content: "\f192";
}

.player-item.disabled {
	opacity: .3;
}

.player-item-background-image {
	background-position: 0 0;
	background-repeat: no-repeat;
	background-size: contain;
	width: 270px;
	height: 400px;
	align-items: flex-start;
	justify-content: flex-start;
	display: flex;
	flex-direction: column;
	margin: 5px;
	position: relative;
}

.player-container {
	background-color: rgb(255,255,255);
}

.player-activity-container {	
	flex: 1;
	overflow-y: hidden;
	overflow-x: hidden;
	display: flex;
	flex-direction: column;
	align-items: center;
}

.player-buttons-container {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	margin: 16px 24px;
}

.player-buttons-container-hidden {
	display: none;
}
.panel-heading {
	font-size: 16px;
}
.player-panel-heading {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	padding: 0px 15px 0px 15px;
	width: 100%;
	min-height: 42px;
	align-items: center;
}

.player-panel-title {
    margin-top: 0;
    margin-bottom: 0;
	color: inherit;
	cursor: pointer;	
}

.player-panel-title:hover {
    text-decoration: underline;
}

.player-panel-heading-completion-status {
	width: 8px;
	border-top-left-radius: 3px;
	border-bottom-left-radius: 3px;
}

.player-go-back-control {
	background-color: rgba(58,58,58,.9);
	border-radius: 10px;
	display: flex;
	flex-direction: row;
	align-items: center;
	align-content: flex-start;	
	padding: 6px;	
}

.player-go-back-control-close {
	cursor: pointer;
	font-size: 16px;
	color: rgb(136, 136, 136)
}

.player-show-mode-swiper {
	width: 100%;
	height: 100%;
	color:white;
}

.player-show-mode-swiper h1,
.player-show-mode-swiper h2,
.player-show-mode-swiper h3,
.player-show-mode-swiper h4,
.player-show-mode-swiper h5,
.player-show-mode-swiper h6 {
	color:white;
}

.player-show-mode-item-container {
	width: 100%;
	height: 100%;
}

.player-show-mode-image {
	max-width: 100%;
	max-height: 100%;
	margin: 0;
	background-size: contain;
	background-repeat: no-repeat;
	cursor: pointer;
}

.player-show-mode-media-item-container {
	display: flex;
	flex:1;
	margin-top: 20px;
	width: 100%;
	padding-bottom: 40px;
	padding-left: 5px;
}
.player-show-mode-label-item-container {
	padding-right: 5px;
	display:flex;
	flex-direction: column;
	flex:1;
	width: 100%;
	overflow-y: auto;
	margin-bottom: 40px;
}
.player-show-mode, .player-show-mode h2  {
	color: white;
}
.player-show-mode-view h2 , .player-show-mode-view h2 > *  {
	font-size: calc(20px + (36 - 20) * ((100vw - 300px) / (1600 - 300)))!;
}
.player-show-mode-label-item-container.center {
	align-items: center;
}
.player-show-mode-label-item-container.center > * {
	text-align: center;
}
.player-show-mode-label-item-container.right {
	align-items: right;
}
.player-show-mode-label-item-container.right > * {
	text-align: right;
}

.player-show-mode-label-item-container.middle {
	justify-content: center;
}

.player-show-mode-label-item-container.bottom {
	justify-content: flex-end;
}
.player-show-mode-toolbar-container {
	display: flex;
	flex-direction: row;
	padding-left: 24px;
	padding-right: 24px;
	justify-content: space-between;
	align-items: center;
}

.player-show-mode-toolbar-button {
	color: lightgreen;
	opacity: .85; 
	margin-right: 10px;
	cursor: pointer;
	font-size: 36px;
}

.player-show-mode-toolbar-close-button {
	color: white;
	opacity: .8; 
	cursor: pointer;
	font-size: 36px;
}

@media(orientation: portrait) {
	.player-show-mode-media-item-container {
		flex-direction: column;
		align-items: center;
		justify-content: center;
	}
	.player-show-mode-view {
		flex-direction: column;
	}

	.player-show-mode-image {
		background-position: center;	
	}

	.player-show-mode-media-item-container > div {
		flex: 1;
		width: 100%;
		max-height: 100%;
		justify-content: center;
		align-items: center;
		display:flex;
	}
}
@media(orientation: landscape) {
	.player-show-mode-media-item-container {
		flex-direction: row;
		align-items: center;
		justify-content: center;
	}
	.player-show-mode-view {
		flex-direction: row;
	}

	.player-show-mode-image {
		background-position: right;	
	}

	.player-show-mode-media-item-container > div {
		flex: 1;
		height: 100%;
		display: flex;
		flex-direction: column;
		justify-content: center;
		align-items: center;
	}
}

.player-modal-slide-up-enter {
  	transform: translateY(100%);
}
.player-modal-slide-up-enter-active {
  	transform: translateY(0);
  	transition: transform 400ms ease;
}
.player-modal-slide-up-exit {
	transform: translateY(0);
}
.player-modal-slide-up-exit-active {
  	transform: translateY(100%);
  	transition: transform 400ms ease;
}

.player-comments-modal {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	max-width: unset;
	height: 100%;
	padding: 0px;
	overflow: hidden;
    background: #F9A200;
    background-clip: padding-box;
	border-radius: 0px;
	margin: 0px;
	z-index:4;
}

.player-comments-modal-title {
	font-size: 24px;
	color: white;	
}

.player-comments-modal-close-button {
	font-size: 20px;
	color: white;
	padding-bottom: 10px;
	cursor: pointer;
}

.player-comments-button {
	font-size: 16px;
	color: gray;
	padding: 10px;
	cursor: pointer;
}

.player-procedure h1,
.player-procedure h2,
.player-procedure h3,
.player-procedure h4,
.player-procedure h5,
.player-procedure h6 {
	color: initial;
}

.player-procedure h1 {
	font-size: 36px;
}


.sessions-modal-header-container {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	margin-top: 20px; 
	align-items: flex-end;
}

.sessions-modal-sort-button {
	display: flex; 
	flex-direction: row; 
	cursor: pointer;
	align-items: center; 
	padding-bottom: 10px;
}

.sessions-container {
	flex: 1;
	display: flex;
	flex-direction: column;
	width: 100%;
	justify-content: flex-start;
	padding: 10px;
	overflow-y: auto; 
	height: 70vh;
}

.session-container {
	 display: flex; 
	 flex-direction: row; 
	 padding: 5px; 
	 padding-top: 10px; 
	 border-bottom-color: rgba(255,255,255,.3); 
	 border-bottom-width: 0px;
}

.session-name {
	color: rgb(0,0,0);
	font-size: 18px; 
	margin-right: 10px;
}

.session-date {
	color: rgba(0,0,0,.5); 
	font-size: 13px;
}

.session-type-header {
	font-size: 20px; 
	color: rgba(0,0,0,.7); 
	margin-top: 10px; 
	margin-bottom: 5px;
}

.session-type-sub-header {
	font-size: 18px; 
	color: rgba(0,0,0,.7); 
	margin-top: 10px; 
	margin-bottom: 5px;
}
*/

/*** Google maps ***/
/*
.map-container * {
  -webkit-box-sizing: content-box;
     -moz-box-sizing: content-box;
          box-sizing: content-box;
}

.pac-container {
  z-index: 1051 !important;
}

.player-location-map {
	width:100%;
	height: 500px;
}

.rdtPicker td {
    width: unset;
}
*/
.player-location-map {
	width: 100%;
	height: 500px;
}

.media-preview-modal {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	max-width: unset;
	height: 100%;
	padding: 0px;
	overflow: hidden;
	background: black;
	background-clip: padding-box;
	border-radius: 0px;
	margin: 0px;
	z-index: 4;
}

/*
.swiper-pagination .swiper-pagination-bullet {    
    width: 8px;
    height: 8px;
    display: inline-block;
    border-radius: 100%;
    background: white;
    opacity: 0.2;
}

.swiper-pagination .swiper-pagination-bullet-active {    
    opacity: 1;
    background: #007aff;
}
*/

.Select-menu-outer {
	z-index: 1000;
}


@media (max-width: 1200px) {
	.orgLogo {
		display: none
	}
}

/* @media (min-width: 768px) and (max-width: 1000px) {
   .collapse {
       display: none !important;
   }
} */



@media (min-width: 768px) {
	.ambifiTable {
		table-layout: fixed;
	}
}

.ambifiTable td,
.ambifiTable th {
	padding: 10px !important;
}

.ambifiTable.selectableRows tr>td:first-child {
	text-align: center;
}

.ambifiTable .action {
	position: relative;
}

.ambifiTable .action .info {
	cursor: pointer;
	border: 2px dashed rgba(65, 105, 225, .4);
	min-height: 30px;
	line-height: 30px;
	padding: 10px;
	margin: -5px;
}

.ambifiTable .action .info:hover {
	border: 2px solid rgb(65, 105, 225);
	background-color: #B2DBFF;
}

/* .ambifiTable .action .edit {
	display:none;
	font-size:40px;
	position:absolute;
	right:15px;
	top:0;
	color:rgba(255,255,255,.5)
} */
/* .ambifiTable .action:hover .edit {
	display:block;
} */

/*#B2DBFF,#4C9DE5*/

.inline-panel.leftBorder>div {
	border-left: 2px solid rgba(65, 105, 225, .3);
}

.inline-panel.topBorder>div {
	border-top: 2px solid rgba(65, 105, 225, .3);
}

.inline-panel>h4 .fa {
	color: royalblue;
	font-weight: 800;
}

Select-menu-outer {
	z-index: 1001 !important;
}



.panelLoader,
.modalLoader,
.fullPageLoader {
	position: absolute !important;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 1001;
	width: 100%;
	height: 100%;
}

.fullPageLoader {
	margin: 0 !important;
}

.fullPageLoader .Loader__background {
	/* background: linear-gradient(to bottom, #121212, #1E1E1E); */
	height: 100% !important;
}

.modalLoader .Loader__background {
	border-radius: 15px !important;
	height: 100% !important;
}

.panelLoader .Loader__background {
	border-radius: 4px !important;
	height: 100% !important;
}

/* For later to improve code input to have larger fields for larger screens
.rect {
  
  position: relative;
  width: 100%;
  max-width: 800px;
  display:flex!important;
  flex-direction: row;
  justify-content: center;
}

.rect:after {
	content:"";
padding-top: 15%;
}

.square {
	flex:1 auto;
	flex-grow: 1;
	font-size:100%;
} */

.flex-container {
	padding: 0;
	margin: 0;
	list-style: none;
	display: flex;
}

.space-between {
	justify-content: space-between;
}

.ambifi-card {
	width: 100%;
	height: 100%;
	margin-right: 15px;
	margin-bottom: 15px;
	box-shadow: 2px 2px 10px rgba(0, 0, 0, .3);
	position: relative;
	border-radius: 10px;
	/* background-color: white; */
	/* background-color: #e0e0e0; */
	display: inline-flex;
	flex-direction: column;
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	height: 100%;
	flex: 1 1;
	/* background-image: url("/assets/test/5-with-frame.png"); */
}

.check-overlay {
	display: none;
	cursor: pointer;
}

.check-overlay.selected {
	display: initial;
}

/* .ambifi-card:hover {
	box-shadow: 2px 2px 10px rgba(0,0,0,1);
} */

.ais-SearchBox-form:before {
	left: 0.5rem;
}

.ais-Pagination-link {
	padding-top: 0px;
	padding-left: 0.7rem;
	padding-right: 0.7rem;
	padding-bottom: 0px;
}

.ais-Hits-item {
	padding: 0.5rem;
	line-height: 1rem;
	justify-content: center;
}

.ais-Hits {
	width: 100%;
}

.ais-MenuSelect-select {
	width: 240px !important;
}

.ais-Hits-list,
.cards {
	width: 100%;
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	align-content: flex-start;
	padding: 10px;
	background-color: #ffffff;
	justify-content: center;
	flex: 1;
	position: relative;
	min-height: 0;
	height: calc(100% - 62px);
	overflow-y: auto;
	overflow-x: hidden;
}

.ais-Hits-list {
	height: 100%;
}


.ais-Panel {
	margin-top: 10px;
}

.ais-Panel-header {
	font-size: 14pt !important;
	color: #333333;
	font-weight: 500;
	text-transform: capitalize;
}

.ais-Panel--noRefinement {
	display: none !important;
}

.search-history-page .ais-Hits-item,
.search-history-page .card-slot {
	min-width: 100px !important;
}

@media (max-width:1300px) {

	.search-history-page .ais-Hits-item,
	.search-history-page .card-slot {
		width: 50%;
		padding: 8px;
		height: calc(50vw * .5625);
	}
}


.ais-Hits-item,
.card-slot {
	width: 33%;
	padding: 8px;
	height: calc(33vw * .5625);
}

.card-slot.relatedItem {
	width: 50% !important;
	height: calc(25vw * .5625);
}

.card-slot.relatedItem {
	position: relative
}

.history-card {
	height: 100%;
}

@media (min-width: 3000px) {

	.ais-Hits-item,
	.card-slot {
		width: 25% !important;
		padding: 8px;
		height: calc(25vw * .5625);
	}

	.card-slot.relatedItem {
		width: 25% !important;
		height: calc(13vw * .5625);
	}
}

@media (min-width: 1920px) {

	.ais-Hits-item,
	.card-slot {
		width: 25% !important;
		padding: 8px;
		height: calc(25vw * .5625);
	}

	.card-slot.relatedItem {
		width: 33% !important;
		height: calc(17vw * .5625);
	}
}

@media (max-width: 1300px) {

	.ais-Hits-item,
	.card-slot {
		width: 50%;
		padding: 8px;
		height: calc(50vw * .5625);
	}
}

@media (max-width: 850px) {

	.ais-Hits-item,
	.card-slot {
		width: 100%;
		padding: 8px;
		height: calc(100vw * .5625);
	}
}

@media (max-width: 1000px) {

	.card-slot.relatedItem {
		width: 100% !important;
		height: calc(50vw * .5625);
	}
}

@media (max-width: 768px) {

	.card-slot.relatedItem {
		width: 50% !important;
		height: calc(50vw * .5625);
	}
}

@media (max-width: 600px) {

	.card-slot.relatedItem {
		width: 100% !important;
		height: calc(100vw * .5625);
	}
}

@media (max-width: 550px) {

	/* .search-history-page .ais-Hits-item,
	.search-history-page .card-slot {
		width: 100% !important;
		max-width: 100%;
	} */

	.search-history-page .page-scroll-view {
		padding-left: 0;
		padding-right: 0;
	}
}

@media (min-width: 1000px) {

	.search-history-page .ais-Hits-item,
	.search-history-page .card-slot {
		height: auto;
	}

	.history-card {
		height: auto;
	}
}

.ais-NumericMenu-labelText {
	margin-left: 5px;
}

.history-card .user-avatar .ais-Highlight {
	margin-left: 5px;
}

.search-history-page .ais-Hits-item,
.search-history-page .card-slot {
	min-height: 300px;
	min-width: 320px !important;
	/* max-width: 400px !important; */
	height: auto;
}

.ambifi-card .header {
	/* background-color: rgba(178,219,255,.9); */
	background-color: rgba(230, 230, 230, .9);
	border-top-left-radius: 10px;
	border-top-right-radius: 10px;
	position: relative;
	display: flex;
	flex-direction: row;
	align-items: center;
	padding-top: .3em;
	padding-bottom: .3em;
	min-height: 2.8em;
}

.ambifi-card .title {
	font-size: 1.3em;
	flex: 1;
	overflow: hidden;
	white-space: nowrap;
	text-overflow: ellipsis;
	padding-left: .5em;
}

.ambifi-card .actionMenu {
	flex: 0;
	white-space: nowrap;
	padding-right: .5em;
}

.ambifi-card .heroImage {
	color: gray;
	display: flex;
	flex-direction: row;
	justify-content: space-around;
	align-items: center;
	font-size: 10em;
	flex: 1;
	position: relative;
	overflow: hidden;
}

.ambifi-card .heroImage .description {
	background-color: rgba(0, 0, 0, .5);
	color: white;
	font-weight: bold;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	overflow-y: auto;
	font-size: .13em;
	padding: 10px;
	z-index: 2;
}

.ambifi-card .body {
	background-color: rgba(0, 0, 0, .5);
}

.ambifi-card .body-player {
	background-color: rgba(0, 0, 0, .5);
	border-bottom-left-radius: 10px;
	border-bottom-right-radius: 10px;
}

.ambifi-card .header-player {
	background-color: rgba(0, 0, 0, .5);
	border-top-left-radius: 10px;
	border-top-right-radius: 10px;
	position: relative;
	display: flex;
	flex-direction: row;
	align-items: center;
	padding-top: .3em;
	padding-bottom: .3em;
	min-height: 2.8em;
}

.ambifi-card .title-player {
	font-size: 1.3em;
	flex: 1;
	padding-left: .5em;
	color: rgb(255, 255, 255);
	font-weight: bold;
	max-height: 2.6em;
	line-height: 1.3em;
	overflow: hidden;
	text-overflow: ellipsis;
	position: relative;
}

/* .ambifi-card .title-player > .overflow-fade {
	position: absolute;
	right:0;
	top:1.3em;
	bottom:0;
	height:1.3em;
	width:2.6em;
	background: linear-gradient(to right, transparent,#4C9DE5);
} */

.ambifi-card-launch-buttons-container {
	display: flex;
	flex-direction: row;
	justify-content: center;
}

.ambifi-card-launch-buttons-container button {
	margin: 5px;
}

.ambifi-card-launch-button {
	border-radius: 5px;
	margin: 10px;
	padding: 10px;
	border: 0px;
	background-color: rgba(255, 255, 255, .3);
	width: 45%;
	color: white;
	font-size: 12px;
	text-align: center;
	font-weight: bold;
}

.ambifi-card-resume-button-container {
	display: flex;
	flex-direction: row;
	width: 45%;
}

.ambifi-card-resume-button-left {
	flex: 1;
	border-top-left-radius: 5px;
	border-bottom-left-radius: 5px;
	border-top-right-radius: 0px;
	border-bottom-right-radius: 0px;
	margin-right: 0 !important;
	padding: 10px;
	border: 0px;
	background-color: rgba(255, 255, 255, .3);
	color: white;
	font-size: 12px;
	text-align: center;
	font-weight: bold;
}

.ambifi-card-resume-button-right {
	border-top-left-radius: 0px;
	border-bottom-left-radius: 0px;
	border-top-right-radius: 5px;
	border-bottom-right-radius: 5px;
	margin-left: 0 !important;
	padding: 10px;
	border: 0px;
	background-color: rgba(255, 255, 255, .5);
	color: white;
	font-size: 12px;
	text-align: center;
	font-weight: bold;
}

.simplert-button-transparent {
	background-color: transparent !important;
	color: #068ac9 !important;
}

.simplert-button-blue {
	background-color: #068ac9 !important;
	color: #ffffff !important;
}

.simplert-button-orange {
	background-color: rgb(231, 175, 95) !important;
	color: #ffffff !important;
}

.simplert {
	z-index: 1001 !important;
}

@media (max-width: 400px) {
	.sweet-alert {
		max-width: 375px;
		margin-left: 0 !important;
		margin-right: 0 !important;
	}


	.player-location-map {
		height: 350px;
	}
}

@media (max-width: 768px) {
	.ambifi-card .title {
		font-size: 1.2em;
		padding: .7em .5em;
		overflow: hidden;
		white-space: nowrap;
		text-overflow: ellipsis;
	}

	.ambifi-card .heroImage .description {
		background-color: rgba(0, 0, 0, .5);
		color: white;
		font-weight: bold;
		position: absolute;
		top: 0;
		left: 0;
		right: 0;
		bottom: 0;
		overflow-y: auto;
		font-size: .1em;
		padding: 10px;
		z-index: 2;
	}
}

.ambifi-card .heroImage span {
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	z-index: 1;
}

.ambifi-card .addArea {
	cursor: pointer;
	font-size: 1.5em;
	flex-direction: row;
	justify-content: space-around;
	align-items: center;
	display: flex;
	flex: 1;
	border-radius: 10px;
	border: 5px dashed rgba(0, 0, 0, .4);
}

/* .ambifi-card .addArea:hover {
border: none;
} */

.ambifi-card .status-button {
	border: none;
	background: none;
	padding: 0;
	padding-right: 3px;
	font-size: 1.2em !important;
}

.ambifi-card .status-button.publication {
	font-size: 1.1em !important;
	padding-left: 3px;
}

.ambifi-card .status-button.publication>span {
	padding-left: 3px;
}

.ambifi-card .status {
	padding: .4em 1em;
	display: flex;
	flex-direction: row;
	flex-flow: wrap;
	justify-content: flex-start;
	font-size: 1em;
	border-bottom-left-radius: 10px;
	border-bottom-right-radius: 10px;
	/* background-color: rgba(178,219,255,.9); */
	background-color: rgba(230, 230, 230, .9);
}

.ambifi-card .status>* {
	margin-right: 5px;
}

/** Instance search overrides **/
[class^=ais-] {
	font-size: 1em;
}

.ais-SearchBox-input {
	padding: .5em 1.7em;
}

.ais-Hits {
	border: none;
	padding: 0;
}

.ais-Hits-list {
	border: none;
	padding: 0;
	margin: 0;
	flex: 0;
	align-content: flex-start;
}

.ais-Hits-item {
	border: none;
	box-shadow: none;
	margin: 0;
}

.navbar-fixed-bottom,
.navbar-fixed-top {
	z-index: 998;
}

.ais-RefinementList-labelText {
	margin-left: 5px;
	margin-right: 5px;
}

.ais-RefinementList-label {
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: flex-start;
}

.ais-RefinementList-checkbox {
	margin: 0 !important;
}

.ais-SearchBox {
	padding: 5px;
}

.search-history-page .ais-SearchBox {
	padding-left: 0;
}

.ais-SearchBox-form {
	margin: 0;
}

.ais-EmptyResults {
	display: none;
}

.ais-Hits-list:empty {
	text-align: center;
	width: 100%;
	position: relative;
	justify-content: center;
}

.ais-Hits-list:empty:after {
	content: "Nothing to see here";
	align-self: flex-start;
	padding-top: 20px;
}

/* Top: 62px because of page header */
.headroom--pinned {
	top: 62px !important;
	z-index: 998 !important;
}

.pageWrapper {
	min-height: 0;
	padding-top: 62px !important;
	/* height:calc(100% - 62px)!important; */
}

.pageWrapper.page-editor {
	padding-top: 42px !important;
}

.editor-toolbar.fullscreen {
	top: 62px !important;
}

.CodeMirror-fullscreen {
	top: 112px !important;
}

.CodeMirror-fullscreen+div {
	top: 112px !important;
}

.corner-menu {
	display: none;
}

.corner-menu>* {
	/* margin-top:10px; */
	position: absolute;
	top: 75%;
	transform: translate(0, -60%);
}

@media (max-height: 450px) {

	.corner-menu {
		position: fixed;
		top: 0;
		left: 50%;
		transform: translate(-50%, -50%);
		width: 50px;
		height: 50px;
		border-bottom-right-radius: 25px;
		border-bottom-left-radius: 25px;
		display: flex;
		background-color: royalblue;
		flex-direction: column;
		justify-content: space-around;
		align-items: center;
		color: white;
		border: 1px solid white;
		font-size: 1.2em;
		z-index: 1000;
	}

	.toolbarsHeader {
		display: none !important;
	}

	.navbar {
		display: none;
	}

	.toolbarsHeader.forceShow {
		margin-top: 62px;
		display: block !important;
	}

	.navbar.forceShow {
		display: block;
	}

	.editor-toolbar.fullscreen {
		top: 0 !important;
	}

	.CodeMirror-fullscreen {
		top: 50px !important;
	}

	.CodeMirror-fullscreen+div {
		top: 50px !important;
	}

	.pageWrapper {
		min-height: 0;
		margin-top: 0;
		height: 100%;
	}

	.pageNav {
		margin-bottom: 0;
	}

	#root>div {
		padding-top: 0;
	}

}

.navbar-brand {
	padding: 5px;
	height: inherit;
	position: absolute;
	left: 15px;
	top: 0;
}

.ais-Hits {
	position: relative;
}

.page-scroll-view {
	position: relative;
}

.page-documents .cards {
	padding: 0;
	padding-bottom: 20px;
}

.page-documents .page-scroll-view:after {
	content: '';
	width: 100%;
	height: 20px;
	position: absolute;
	bottom: 10px;
	left: 0;
	right: 0;
	z-index: 4;
	background: -moz-linear-gradient(top, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 1) 100%);
	/* FF3.6-15 */
	background: -webkit-linear-gradient(top, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 1) 100%);
	/* Chrome10-25,Safari5.1-6 */
	background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 1) 100%);
}

.bottom-fade {
	content: '';
	width: 100%;
	height: 20px;
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	z-index: 4;
	background: -moz-linear-gradient(top, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 1) 100%);
	/* FF3.6-15 */
	background: -webkit-linear-gradient(top, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 1) 100%);
	/* Chrome10-25,Safari5.1-6 */
	background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 1) 100%);
}

@media (max-width:999px) {
	.bottom-fade {
		bottom: 60px;
	}
}

.ais-Hits-list {
	padding-bottom: 20px;
}

.search-history-page .ais-Hits-list {
	height: 100% !important;
}

.search-history-page .ais-Pagination-list {
	margin: 10px !important;
}

.search-page .tab-content {
	flex: 1;
	display: flex;
}

/* .search-history-page .page-scroll-view {
	height: 100%;
	overflow-y: hidden!important;
	display:flex;
} */

.search-page .ais-Hits,
.search-page .tab-pane.active,
.search-page .tab-pane.active .ais-InstantSearch__root,
.search-page .ais-Hits-list,
.search-history-page .ais-Hits,
.search-history-page .ais-InstantSearch__root,
.search-history-page .ais-Hits-list {
	flex: 1;
	display: flex;
	overflow-x: auto;
	/* justify-content: center; */
}

.search-history-page .ais-MenuSelect-select {
	margin-bottom: 5px !important;
}

.search-history-page .ais-Hits-list,
.search-page .ais-Hits-list {
	height: 100% !important;
}

/* 
body > .cke {
	 display:none!important;
 } */

.editor-toolbar fullscreen,
CodeMirror-fullscreen {
	z-index: 1000 !important;
}

.CodeMirror {
	height: auto !important;
	min-height: 85px !important;
}

.CodeMirror {
	font-size: 12pt !important;
}

.portalPanel {
	margin: 0;
}

.history-card-buttons>button {
	margin-top: 10px;
}

.fixed-panel .date-range-picker input {
	max-width: 120px;
}

.fixed-panel .date-range-picker .to .DayPickerInput-Overlay {
	right: 0 !important;
	left: auto !important;
	transform: translate(0, calc(-100% - 30px));
}

.fixed-panel .date-range-picker .from .DayPickerInput-Overlay {
	transform: translate(0, calc(-100% - 30px));
}

.side-panel .date-range-picker {
	flex-direction: column !important;
}

.side-panel .DayPickerInput-Overlay {
	right: auto !important;
	left: 0 !important;
	transform: none;
}

.side-panel .date-range-picker .to {
	margin-top: 5px;
}

.fixed-panel h4,
.side-panel h4 {
	width: 100%;
	min-height: 30px;
	line-height: 30px;
	border-bottom: 1px solid lightgray;
}

.Selectable .DayPicker-Day--selected:not(.DayPicker-Day--start):not(.DayPicker-Day--end):not(.DayPicker-Day--outside) {
	background-color: #f0f8ff !important;
	color: #4a90e2;
}

.Selectable .DayPicker-Day {
	border-radius: 0 !important;
}

.Selectable .DayPicker-Day--start {
	border-top-left-radius: 50% !important;
	border-bottom-left-radius: 50% !important;
}

.Selectable .DayPicker-Day--end {
	border-top-right-radius: 50% !important;
	border-bottom-right-radius: 50% !important;
}

.history-card {
	border: 2px solid #dddddd;
	border-radius: 5px;
	padding: 10px;
	width: 100%;
	position: relative;
	height: 100%;
}

.history-card.deleted {
	border: 2px solid #880000;
}

.history-card.deleted .history-card-buttons {
	display: none;
}

.history-card.deleted .delete-button {
	display: none;
}

.cross-out {
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: rgba(255, 0, 0, .5);
	font-size: 9em;
}

.history-card .cross-out {
	display: none;
}

.history-card.deleted .cross-out {
	display: flex;
}

.logical-operator-panel,
.arithmetic-operator-panel,
.comparison-operator-panel {
	border: 1px solid rgb(158, 158, 158);
	border-left-width: 4px;
	border-radius: 10px;
	display: flex;
	flex-direction: column;
	flex: 1;
}


.logical-operator-panel>div:first-child,
.arithmetic-operator-panel>div:first-child {
	background-color: rgb(158, 158, 158);
	padding: 5px;
	margin-left: 0px;
	border-top-left-radius: 7px;

	border-top-right-radius: 7px;
	display: flex;
	flex-direction: row;
}


.arithmetic-operator-panel>div:first-child {
	background-color: rgb(212, 212, 242);
}

.logical-operator-panel select,
.arithmetic-operator-panel select,
.comparison-operator-panel select {
	margin: 0 !important;
	width: 100%;
	min-height: 30px;
}

.logical-operator-panel>div:first-child+div,
.arithmetic-operator-panel>div:first-child+div,
.comparison-operator-panel>div:first-child+div {
	padding: 5px;
	flex: 1;
}

.comparison-operator-panel {
	border: 1px solid rgb(212, 242, 212);
	border-left-width: 4px;
	border-radius: 10px;
	display: flex;
	flex-direction: column;
}

.arithmetic-operator-panel {
	border: 1px solid rgb(212, 212, 242);
	border-left-width: 4px;
	border-radius: 10px;
	display: flex;
	flex-direction: column;
}

.comparison-operator-panel input,
.comparison-operator-panel select {
	width: 100%;
	min-width: 100px;
}

/* .comparison-operator-panel > div {
	display:flex;
	flex:1;
	flex-direction: column;
} */

.comparison-operator-panel>button {
	border-radius: 0;
	border-top-right-radius: 9px;
	border-bottom-right-radius: 9px;
	border: none;
	background-color: rgb(212, 242, 212);
}

/* .logical-operator-panel .logical-operator-panel {
		  border-top-right-radius: 0;
		  border-bottom-right-radius: 0;
	 margin-right:-11px;
  } */

/* .arithmetic-operator-panel .arithmetic-operator-panel {
		  border-top-right-radius: 0;
		  border-bottom-right-radius: 0;
	 margin-right:-11px;
  } */

/* .logical-operator-panel .logical-operator-panel > div:first-child {
	   border-top-right-radius: 0;
   }

      .arithmetic-operator-panel .arithmetic-operator-panel > div:first-child {
	   border-top-right-radius: 0;
   } */

.arithmetic-operator-panel .factors {
	margin-bottom: 5px;
}

.arithmetic-operator-panel .factors>*:not(:first-child):before {
	display: block;
	height: 24px;
	flex: 0;
	max-width: 50%;
	justify-content: center;
	border-top-right-radius: 12px;
	border-bottom-right-radius: 12px;
	border-right: 4px solid rgb(212, 212, 242);
	border-left: 10px solid rgb(212, 212, 242);
	background-color: rgba(212, 212, 242, .5);
	padding-left: 10px;
	padding-right: 10px;
	margin-left: -5px;
	font-size: 1em;
	font-weight: bold;
	line-height: 24px;
}

.arithmetic-operator-panel.add .factors>*:not(:first-child):before {
	content: '+';
}

.arithmetic-operator-panel.subtract .factors>*:not(:first-child):before {
	content: '-';
}

.arithmetic-operator-panel.divide .factors>*:not(:first-child):before {
	content: '/';
}

.arithmetic-operator-panel.multiply .factors>*:not(:first-child):before {
	content: 'x';
}

/* .comparison-operator-panel .comparators > *:before {
	display:block;
	height:24px;
	flex:0;
	max-width:50%;
	justify-content: center;
	border-top-right-radius: 12px;
	border-bottom-right-radius: 12px;
	border-right: 4px solid rgb(212, 242, 212);
	border-left: 10px solid rgb(212, 242, 212);
	background-color: rgba(212, 242, 212,.5);
	/* margin-top: 5px;
	margin-bottom: 5px; */
/*padding-left: 10px;
	padding-right: 10px;
	margin-left: -5px;
	font-size: 1em;
	font-weight: bold;
	line-height: 24px;
}
.comparison-operator-panel .comparators > *:not(:first-child):before {
	content: "???"
}
.comparison-operator-panel.equals .comparators > *:not(:first-child):before {
	content: "==="
}
.comparison-operator-panel.notEquals .comparators > *:not(:first-child):before {
	content: "!=="
}
.comparison-operator-panel.startsWith .comparators > *:not(:first-child):before {
	content: "starts with"
}
.comparison-operator-panel.endsWith .comparators > *:not(:first-child):before {
	content: "ends with"
}
.comparison-operator-panel.contains .comparators > *:not(:first-child):before {
	content: "contains all"
} */
.logical-operator-panel .comparables {
	padding-bottom: 5px;
}

.logical-operator-panel .comparables>*:before {
	display: block;
	height: 24px;
	flex: 0;
	max-width: 50%;
	justify-content: center;
	border-top-right-radius: 12px;
	border-bottom-right-radius: 12px;
	border-right: 4px solid rgb(158, 158, 158);
	border-left: 10px solid rgb(158, 158, 158);
	background-color: rgba(158, 158, 158, .5);
	/* margin-top: 5px;
	margin-bottom: 5px; */
	padding-left: 10px;
	padding-right: 10px;
	margin-left: -5px;
	font-size: 1em;
	font-weight: bold;
	line-height: 24px;
}

.logical-operator-panel.and .comparables>*:not(:first-child):before {
	content: "&&"
}

.variable-container,
.value-container {
	display: flex;
	flex-direction: row;
	border: 1px solid rgb(212, 242, 212);
	border-left-width: 3px;
	border-radius: 10px;

}

.variable-container>button,
.value-container>button {
	border-radius: 0;
	border-top-right-radius: 9px;
	border-bottom-right-radius: 9px;
	border: none;
	background-color: rgb(212, 242, 212);
	/* height:35px; */
}

.variable-container>div:first-child,
.value-container>div:first-child {
	flex: 1;
	padding: 5px;
}

.variable-select,
.value-input {
	width: 100%;
	display: flex;
	flex-direction: row;
	/* align-items: center; */
}

.variable-select>*:not(:first-child),
.value-input>*:not(:first-child) {
	flex: 1;
}

.variable-select>div:first-child,
.value-input>div:first-child {
	margin-right: 5px;
	flex: 0;
}

.comparators {
	display: flex;
	flex-direction: column;
	padding: 5px;
}

.comparators>*:nth-child(2) {
	padding-top: 5px;
	padding-bottom: 5px;
	display: flex;
	flex-direction: row;
	background-color: rgba(212, 242, 212, .5);
	border-top-right-radius: 12px;
	border-bottom-right-radius: 12px;
	border-right: 4px solid rgb(212, 242, 212);
	border-left: 8px solid rgb(212, 242, 212);
	margin-left: -8px;
}

.additional-info {
	display: flex;
	flex-direction: row;
	flex-flow: wrap;
	justify-content: flex-start;
}

.additional-info>div {
	display: flex;
	align-items: center;
	font-size: .7em;
	background-color: rgba(0, 0, 0, .1);
	padding: 2px;
	/* height: 18px;
	line-height: 18px; */
	border-radius: 9px;
	min-width: 18px;
	margin: 3px;
}

.additional-info .cond-visible-info {
	text-align: center;
	justify-content: center;
}

.additional-info .id-info,
.additional-info .filter-tags-info .additional-info .group-info {
	padding-left: 5px;
	padding-right: 5px;
}

.additional-info .filter-tags-info {
	background-color: rgba(0, 0, 255, .2);
}

.additional-info .value-trigger-info {
	background-color: rgba(0, 0, 128, .2);
}

.additional-info .author-properties-info {
	background-color: rgba(0, 0, 0, .2);
}

.item-tree-node {
	border-bottom: 1px solid rgba(0, 0, 0, .2)
}

.pageSection {
	position: relative;
	display: flex;
	flex-direction: column;
}

.pageSection .header {
	display: flex;
	flex-direction: row;
	align-items: flex-end;
	border-bottom: 1px solid royalblue;
}

.pageSection .title {
	font-size: 1.4em;
	background-color: royalblue;
	color: white;
	padding: 5px;
	padding-left: 15px;
	padding-right: 15px;
	border-top-left-radius: 15px;
	border-top-right-radius: 15px;
	flex: 1 0 1;
	/* min-width: 130px; */
}

.pageSection .subTitle {
	width: 100%;
	font-size: 1em;
	font-weight: normal;
	color: gray;
	padding: 5px;
	flex: 1;
}

.pageSection .content {
	display: flex;
	flex-direction: column;
	flex: 1;
	/* border-left: 3px solid rgb(120, 177, 226); */
}

/* Level 2 */
.ambifi-panel .pageSection .header,
.pageSection .pageSection .header {
	display: flex;
	flex-direction: row;
	align-items: flex-end;
	border-bottom: 1px solid rgb(120, 177, 226);
}

.ambifi-panel .pageSection .title,
.pageSection .pageSection .title {
	font-size: 1.2em;
	background-color: rgb(120, 177, 226);
	color: white;
	padding: 5px;
	padding-left: 15px;
	padding-right: 15px;
	border-top-left-radius: 15px;
	border-top-right-radius: 15px;
}

.ambifi-panel .pageSection .subTitle,
.pageSection .pageSection .subTitle {
	font-size: .9em;
	font-weight: normal;
	color: gray;
	padding: 5px;
}

/* .ambifi-panel.basic input {
	margin-bottom: 0!important;
} */
.ambifi-panel.basic {
	border: 0;
	overflow: visible;
}

.ambifi-panel.basic label {
	color: gray;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

.ambifi-panel.basic .checkbox label,
.ambifi-panel.basic .radio label {
	color: inherit;
}

.ambifi-panel.basic>.header {
	background-image: linear-gradient(to bottom, white, #F8F8F8);
	padding: 8px 10px 8px 10px
}

.ambifi-panel.basic .body.expanded,
.ambifi-panel.basic .body-collapse.expanded,
.ambifi-panel.basic .body-collapse.expanded>div {
	overflow: visible !important;
}

.ambifi-panel.basic.advanced>.header {
	background-image: linear-gradient(to bottom, white, rgb(216, 237, 206));
	color: rgb(48, 102, 46);
}

.ambifi-panel.basic.related>.header {
	background-image: linear-gradient(to bottom, white, rgb(160, 220, 255));
	color: rgb(0, 0, 0);
}

.ambifi-panel.basic.advanced>.header {
	background-image: linear-gradient(to bottom, white, rgb(220, 223, 223));
	color: rgb(0, 0, 0);
}

.ambifi-panel.basic.advanced {
	background-color: #f8f8f8;
}

.label-advanced {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
}

.ambifi-panel.basic .header button {
	width: 30px;
	height: 30px;
	border-radius: 15px;
	padding: 0;
	display: flex;
	justify-content: center;
	align-items: center;
	margin-top: -3px;
	margin-bottom: -3px;
}

.ambifi-panel.basic .header button>span {
	display: flex;
	justify-content: center;
	align-items: center;
}

.reporting-page .react-codemirror2 {
	height: auto;
}

.reporting-page .CodeMirror-scroll {
	max-height: 400px;
}

.reporting-page .htmlPreview {
	overflow: auto;
	max-height: 400px;
}

.content-model-manager {
	display: flex;
	flex: 1;
	flex-direction: row;
	overflow-y: auto;
}

@media (max-width: 1000px) {
	.content-model-manager {
		flex-direction: column;
	}
}

.content-model-manager .existing-models {
	width: 100%;
	height: 100%;
	overflow-y: auto;
	max-height: 400px;
	display: flex;
	flex-direction: column;
}

.existing-models>* {
	text-align: left;
}

.ambifi-panel {
	width: 100%;
	/* -webkit-box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.5);
-moz-box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.5);
box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.5); */
}

.json-structure {
	padding-left: 10px;
}

.json-array:before {
	content: "[";
	font-size: 1.2em;
	font-weight: bold;
	margin-left: -10px;
}

.json-array:after {
	content: "]";
	font-size: 1.2em;
	font-weight: bold;
	margin-left: -10px;
}

.json-object:before {
	content: "{";
	font-size: 1.2em;
	font-weight: bold;
	margin-left: -10px;
}

.json-object:after {
	content: "}";
	font-size: 1.2em;
	font-weight: bold;
	margin-left: -10px;
}

.json-object>div>div:first-child {
	font-weight: bold;
}

.json-object>div>div:first-child:before {
	content: "-";
}

.editor-header,
.editor-footer {
	display: flex;
	flex-direction: row;
}

.editor-header>*:first-child {
	flex: 1;
}

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

.collapsed-widgets Button,
.reporting-panel-subtitle Button {
	padding: 2px;
	padding-left: 5px;
	padding-right: 5px;
}

.reporting-panel-subtitle>div:first-child {
	flex: 1
}

.reporting-panel-subtitle>div:last-child {
	flex: 0
}

.collapsed-widgets {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	width: 100%;
	min-height: 0;
	flex-shrink: 0;
}

.collapsed-widgets>div {
	flex: "1 0 25%";
	min-width: 100px;
	flex-direction: row;
	display: flex;
	border-radius: 10px;
	background-color: rgb(120, 177, 226);
	align-items: center;
	color: white;
	font-size: 1.1em;
	padding: 5px;
	margin-bottom: 5px;
}

.collapsed-widgets>div:not(:first-child) {
	margin-left: 5px;
}

.collapsed-widgets>div>div:last-child {
	padding-left: 5px;
}

/*Content search*/
.cms-content-hit {
	border-bottom: 1px solid lightgray;
}

.cms-content-hit>div:last-child {
	color: gray;
	font-size: .8em;
}

.cms-content-model-search {
	width: 100%;
	display: flex;
	flex-direction: row;
}

.smart-input {
	flex: 1;
	border-right: 0;
	border-top-right-radius: 0;
	border-bottom-right-radius: 0;
}

.smart-input input {
	/* border-right:0; */
	border-top-right-radius: 0;
	border-bottom-right-radius: 0;
}

.smart-input-switch {
	flex: 0;
	border-left: 0;
	border-top-left-radius: 0;
	border-bottom-left-radius: 0;
	height: 100%;
}

.samrt-input-reference .smart-input-switch {
	border-right: 0;
	border-top-left-radius: 0;
	border-top-right-radius: 0;
	border-bottom-right-radius: 0;
}

.samrt-input-reference>ul {
	flex: 1;
}

.cms-content-hit span.highlight {
	background-color: #B2DBFF;
}

/* .tree-search-panel {
	border:3px solid lightgray;
} */
/* .tree-search-panel input { */
/* background-color:#696969;
	color: 	#FFFAF0; */
/* } */

.ref-viewer {
	border: 1px solid lightgray;
	border-radius: 5px;
	border-top-right-radius: 0;
	border-bottom-right-radius: 0;
	border-bottom-left-radius: 0;
	display: flex;
	flex-direction: column;
}

.ref-viewer .path {
	white-space: nowrap;
	flex: 0 1 auto;
	/*important*/
	text-overflow: ellipsis;
	overflow: hidden;
	min-width: 0;
	/* new algorithm overrides the width calculation */
}

.ref-viewer .contentPreview {
	padding: 5px;
	flex: 1 0 auto;
	/*important*/
	overflow: auto;
}

.ref-viewer .structurePreview {
	overflow: auto;
	max-height: 100px;
}

.ambifi-history-view-option-button.selected {
	background-color: #d6d6d6;
	color: black;
	border-radius: 5px;
}

.non-margin {
	margin: 0 !important;
}

.ambifi-drive {
	position: relative;
	height: 100%;
	width: 100%;
	overflow: hidden;
	display: flex;
	flex-direction: column;
}

@media (max-width: 758px) {
	.page-header {
		margin-bottom: .5em;
		margin-top: .5em;
	}
}

.ambifi-drive .search-input {
	flex: 1 0 1;
	margin: 0;
}

.ambifi-drive.inline {
	height: 70vh;
}

.ambifi-drive .button-bar {
	display: flex;
	justify-content: space-between;
	padding-top: 10px;
	padding-bottom: 10px;
	width: 100%;
	border-top: 1px solid lightgrey;
}

.drive-tree {
	position: relative;
	flex: 1;
	overflow-y: auto;
}

.drive-tree-wrapper {
	flex: 1;
	flex-grow: 1;
	overflow-y: auto;
}

.drive-header {
	display: flex;
	/* padding-bottom: 5px; */
	flex: 0;
	flex-shrink: 1;
	flex-basis: 40px;
}

.drive-footer {
	display: flex;
	/* padding-top: 5px; */
	/* flex: 0;
	flex-grow: 1;
	flex-basis: 40px; */
}

.drive-footer>.btn-group {
	margin-bottom: 0 !important;
}

/**
This might not always be perfect but better than nothing
*/

.embed-responsive-210by297 {
	padding-bottom: 141.42%;
}

.embed-responsive-210by297-player {
	width: 400px;
	height: 566px;
}

.mobile-media-toolbar>div {
	display: flex;
	margin-bottom: 10px;
}

.mobile-media-toolbar>button {
	margin-bottom: 10px;
}

.mobile-media-toolbar>div>button:first-child {
	flex: 1
}

.mobile-media-toolbar>div>button:first-child {
	padding: 10px;
}

.mobile-media-toolbar>div>button+button {
	padding: 10px 20px 10px 20px !important;
}

.mobile-media-toolbar>button {
	padding: 10px 20px 10px 20px !important;
}

.underline-subheader {
	border-bottom: 1px solid lightgray;
	padding-bottom: 5px;
}

/*Second round of AmbiFi Page*/

.page-header {
	display: flex;
	/* flex: 1 1 0; */
	flex-direction: row;
	align-items: center;
	width: 100%;
	margin-bottom: 1em;
	padding-bottom: 1em;
	min-height: 0;
	flex-shrink: 0;
	/* new */
	/* min-height: 100px; */
}

.page-header>div:first-child {
	flex: 1;
	min-height: 0;
	width: 100%;
}

.page-header>div+div {
	justify-content: flex-end;
	text-align: right;
}

@media (max-width:600px) {
	.page-header {
		flex-direction: column;
	}

	.page-header>div:first-child {
		flex: 1;
		min-height: 0;
		width: 100%;
		padding: 10px;
		padding-top: 0;
	}
}

.page-custom-header {
	display: flex;
	justify-content: space-between
}

@media (max-width:600px) {
	.page-header {
		flex-direction: column;
	}

	.page-header>div:first-child {
		flex: 1;
		min-height: 0;
		width: 100%;
		padding: 10px;
		padding-top: 0;
	}

	.page-custom-header {
		flex-direction: column;
	}

	.page-custom-header>div:first-child {
		flex: 1;
		min-height: 0;
		width: 100%;
		padding: 10px;
		padding-top: 0;
	}
}

.ambifi-tree .node .header {
	display: flex;
	cursor: pointer;
	align-items: center;
}

.ambifi-tree .node .header.selected {
	background-color: lightgray;
	border-radius: 5px;
	-webkit-user-select: none;
	/* Safari */
	-ms-user-select: none;
	/* IE 10 and IE 11 */
	user-select: none;
	/* Standard syntax */
}

.ambifi-tree .node .header.disabled {
	opacity: 0.8;
	touch-action: none;
}

/*
 * Drive tree specific styles, .node styles above are used by
 * trees in other parts of app such as the JSON editor
 */
.ambifi-tree .drive-node {
	display: flex;
	flex-direction: column;
	cursor: pointer;
	background-color: #f2f6fc;
	border-radius: 8px;
	padding: 10px 12px 8px 12px;
}

.ambifi-tree .drive-node .header {
	display: flex;
	align-items: center;
}

.ambifi-tree .drive-node.selected {
	background-color: lightgray;
	-webkit-user-select: none;
	/* Safari */
	-ms-user-select: none;
	/* IE 10 and IE 11 */
	user-select: none;
	/* Standard syntax */
}

.ambifi-tree .drive-node .header.disabled {
	opacity: 0.8;
	touch-action: none;
}

.ambifi-tree .drive-node .thumb {
	flex: 1;
	display: flex;
	justify-content: center;
	align-items: center;
}

.ambifi-tree .drive-node .thumb:after {
	content: "";
	display: block;
	padding-bottom: 100%;
}

.ambifi-tree .info {
	color: black;
	white-space: nowrap;
	text-overflow: ellipsis;
	overflow: hidden;
	width: 100%;
	text-align: center;
}

.ambifi-tree .node .toggle {
	padding: 0;
	min-width: 0;
}

.ambifi-tree .node .toggle.disabled {
	color: rgba(0, 0, 0, .5);
	padding: 0;
	min-width: 0;
}

.ambifi-tree .child-container {
	padding-left: 20px;
}

.ambifi-tree .tile-node {
	display: flex;
	flex-direction: column;
	cursor: pointer;
	background-color: #f2f6fc;
	border-radius: 8px;
	padding: 10px 12px 8px 12px;
}

/* @media (max-width: 500px) {
	.ambifi-tree .tile-node {
		width:100%;
	}
} */

.ambifi-tree .tile-node .header {
	display: flex;
	align-items: center;
}

.ambifi-tree .tile-node .header.disabled {
	opacity: 0.8;
	touch-action: none;
}

.ambifi-tree .tile-node .thumb {
	flex: 1;
	display: flex;
	justify-content: center;
	align-items: center;
}

.ambifi-tree .tile-node .thumb:after {
	content: "";
	display: block;
	padding-bottom: 100%;
}

.ambifi-tree .tile-node .footer {
	display: flex;
	flex-direction: row;
	justify-content: flex-end;
}

.ambifi-tree .tile-node .open-large {
	width: 30px;
	height: 20px;
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 14px;
	font-weight: 400;
	color: white;
	cursor: pointer;
	background-color: rgba(0, 0, 0, .6);
	padding: 6px 12px;
	border-radius: 10px;
	margin-top: 4px;
}

.ambifi-tree .tile-node.selected {
	background-color: lightgray;
	-webkit-user-select: none;
	/* Safari */
	-ms-user-select: none;
	/* IE 10 and IE 11 */
	user-select: none;
	/* Standard syntax */
}

.ambifi-tree {
	flex: 1;
}

.ambifi-tree .message-container {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}

/**
Make some room
*/

.top-list-view .panel {
	border: none !important;
	padding-right: 5px !important;
	padding-left: 5px !important;
}

.player-procedure .panel {
	background-color: transparent;
}

@media (max-width: 400px) {
	.player-procedure .panel-body {
		padding: 5px;
	}

}

.sticky-preview {
	position: absolute;
	bottom: 5px;
	right: 15px;
	width: 120px;
	height: 120px;
	display: flex;
	justify-content: center;
	align-items: center;
	background-color: rgba(0, 0, 0, .4);
	border-radius: 10px;
	overflow: hidden;
	box-shadow: 1px 1px 4px 1px rgba(0, 0, 0, .5);
	/* border:2px solid black; */
}

.sticky-preview>* {
	max-width: 100%;
	max-height: 100%;
}

.sticky-preview>.pdf {
	width: 100%;
	height: 100%;
}

.sticky-preview>.open-large {
	position: absolute;
	top: 0;
	right: 0;
	width: 30px;
	height: 30px;
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 14px;
	font-weight: 400;
	color: white;
	cursor: pointer;
	background-color: rgba(0, 0, 0, .6);
	border-bottom-left-radius: 10px;
}

.sticky-preview>.open-large:hover {
	background-color: rgba(0, 0, 0, .9)
}

.drive-tree-wrapper {
	position: relative;
}

.ambifi-drive.full .drive-tree-wrapper {
	/* height: calc(100% - 100px); */
	display: flex;
	flex: 1;
}

@media (min-width:1200px) {
	.ambifi-drive.full .sticky-preview {
		width: 240px;
		height: 240px;
	}
}

.player-done-button {
	display: none;
}

.player-item {
	border-width: 3px;
}

.player-item.selected .player-done-button {
	display: initial;
}

.showMode.player-item {
	color: white;
}

.player-pdf {
	width: 100%;
	height: 100%;
}

.player-show-mode {
	background: url("/assets/showMode/defaultShowModeBackground2.jpg") no-repeat center center fixed;
	-webkit-background-size: cover;
	-moz-background-size: cover;
	-o-background-size: cover;
	background-size: cover;
}

.player-image {
	width: 100%;
	height: 100%;
	margin: 0;
	background-size: contain;
	background-repeat: no-repeat;
	cursor: pointer;
	object-fit: contain;
}

.player-video {
	width: 100%;
	max-width: 100%;
	max-height: 50vh;
	margin: 0;
	background-size: contain;
	background-repeat: no-repeat;
	cursor: pointer;
	object-fit: contain;
}

.camera-container {
	background-color: #FFFFFF;
	display: flex;
	flex-direction: column;
}

.camera-mode-button {
	font-size: 16px;
	color: #a3a3a3;
	cursor: pointer;
	margin: 6px;
}

.camera-mode-button-selected {
	color: #0074d9;
}

.rbc-month-view {
	min-height: 800px;
}

.tab-content {
	flex: 1;
	/* max-height: 100%; */
	display: relative;
}

.tab-content>div {
	height: 100%;
}

.assignments .rbc-event-label {
	display: none;
}

.overflow-show {
	overflow: visible
}

.card-title .sub-title {
	font-size: 0.9em;
}

.visibility-card-icon {
	position: absolute;
	cursor: pointer;
	right: 40px;
	top: 0;
	width: 40px;
	height: 40px;
	display: flex;
	justify-content: center;
	align-items: center;
	background-color: rgba(0, 0, 0, .5);
	color: white;
	font-size: 1.3em;
	border-bottom-left-radius: 10px;
}

.delete-card-icon {
	position: absolute;
	cursor: pointer;
	right: 0;
	top: 0;
	width: 40px;
	height: 40px;
	display: flex;
	justify-content: center;
	align-items: center;
	background-color: rgba(255, 100, 100, 0.5);
	color: white;
	font-size: 1.3em;
	border-top-right-radius: 10px;
}

.delete-card-icon:hover {
	background-color: rgba(255, 100, 100, 0.9);
}

.showmode-alignment {
	border: 1px solid lightgray;
}

.showmode-alignment-select>div {
	min-height: 100px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	border-collapse: collapse;
	border: 1px solid lightgray;
	color: gray;
	font-size: 1em;
	cursor: pointer;
}

.showmode-alignment-select>div:hover {
	background-color: lightgrey;
}

.showmode-alignment-select>div.selected {
	background-color: lightgrey;
	color: black;
}

.showmode-alignment-select>div:nth-child(2) {
	text-align: center;
}

.showmode-alignment-select>div:last-child {
	text-align: right;
}

.profile-dropdown-item .caret {
	color: white;
}

.navbar-nav>li>a {
	color: #F9F9F9 !important;
}

.navbar-nav div {
	color: #F9F9F9 !important;
}

.navbar-inverse {
	background-color: rgb(52, 58, 64)
}

@media (max-width: 999px) {
	.dropdown-menu-right {
		right: -30px;
		left: auto;
	}
}

@media (min-width: 1000px) {
	.dropdown-menu-right {
		right: 0px;
		left: auto;
	}
}


.search-history-page .dropup.btn-group>button {
	border: 0;
}

/* .search-history-page.table-view .ais-Hits-list span {
	display:block;
} */
.search-history-page.table-view .ais-Hits-list {
	display: table !important;
	flex: 1 1 0
}

@media (max-width:500px) {
	.search-history-page.table-view .ais-Hits {
		overflow-x: auto;
	}
}

.search-history-page.table-view .ais-Hits-item>tr>td {
	/* width: auto; */
	vertical-align: middle;
	/* padding:0!important; */
}

.search-history-page.table-view .ais-Hits-list>.ais-Hits-item:nth-child(odd) {
	background-color: lightgray;
}

/*
,
.search-history-page.table-view .ais-Hits-item > td:nth-child(3)*/
.search-history-page.table-view .ais-Hits-item>tr>td:nth-child(2) {
	/* width: 30%; */
}

.search-history-page.table-view .ais-Hits-item:first-child .dropdown-menu-right,
.search-history-page.table-view .ais-Hits-item:nth-child(2) .dropdown-menu-right,
.search-history-page.table-view .ais-Hits-item:nth-child(3) .dropdown-menu-right {
	bottom: auto !important;
	top: 100% !important;
}


.search-history-page.table-view .ais-Hits-item>tr>td:first-child,
.search-history-page.table-view .ais-Hits-list>li+li+li {
	width: 30%;
}

.search-history-page.table-view .ais-Hits-item {
	/* display: table-row; */
	/* height: auto; */
	/* min-height: auto; */

	/* New values so rows don't expand vertically */
	width: 100% !important;
	min-height: 0px;
	padding: 0px;
	position: relative;
}

.search-history-page.table-view .ais-Hits-item>tr>td:first-child,
.search-history-page.table-view .ais-Hits-item>tr>td:last-child {
	/* max-width: 60px; */
	text-align: center;
}

.search-history-page .btn-group>button:nth-child(2) {
	padding-top: 7px;
	padding-bottom: 7px;
}

.search-history-page.table-view .ais-Hits-list.header {
	flex: 0;
	max-height: 30px;
}

.search-history-page.table-view .ais-Hits {
	flex: 1 1 0
}


.org-page .ambifiTable>tbody>tr:first-child .dropdown-menu-right,
.org-page .ambifiTable>tbody>tr:nth-child(2) .dropdown-menu-right,
.org-page .ambifiTable>tbody>tr:nth-child(3) .dropdown-menu-right {
	bottom: auto !important;
	top: 100% !important;
}

.org-page .ambifiTable.largeMargin {
	margin-bottom: 100px;
}

/* .custom-modal.templates {
	height:100%;
	position:relative;
} */
.algolia-search {
	max-width: 100%;
}

.custom-modal.templates .algolia-search {
	flex-grow: 1 !important;
	flex: 1 !important;
	flex-shrink: 0 !important;
	overflow: hidden;
}

.algolia-search>div {
	display: flex;
	flex-direction: column;
	height: 100%;
	overflow: hidden;
	position: relative;
}

.algolia-search>div>div {
	flex: 0 1 0%;
	min-height: 60px;
}

.algolia-search>div>div:nth-child(2) {
	flex-grow: 1 !important;
	flex: 1 !important;
	flex-shrink: 0 !important;
	max-height: calc(100% - 110px)
}

.custom-modal.templates .algolia-search .ambifi-card .header,
.custom-modal.templates .algolia-search .ambifi-card .status,
.custom-modal.templates .algolia-search .ambifi-card .dropdown.btn-group,
.custom-modal.templates .algolia-search .ambifi-card button {
	background-color: rgba(0, 0, 0, .8);
	color: white;
}

.activity-details-overlay {
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	padding: 30px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	background-color: rgba(255, 255, 255, 1);
	z-index: 501;
}

.ambifi-web-player-container {
	width: 100%;
	height: 100%;
	padding-top: 0px !important;
	display: flex;
	background-color: white;
	overflow: hidden;
}

.ambifi-web-player-container>div {
	width: 100%;
	height: 100%;
	position: relative;
	display: flex;
	background-color: white;
	overflow: hidden;
}

.ambifi-web-player-container iframe {
	overflow: hidden;
}


/* 
.ambifi-web-player-container > .ambifi-web-player {
	width: 100%;
}
.ambifi-web-player-container > .ambifi-web-player > div {
	height:100%;
}

.ambifi-web-player-container.status .player-container {
	display:flex;
	flex-direction: column;
}
.ambifi-web-player-container.status .player-container > div:first-child:not(.player-activity-container) {
	position: relative!important;
	flex:0;
	padding-top:10px;
	padding-bottom:10px;
}
.ambifi-web-player-container .player-activity-container {
	overflow-x:hidden;
	overflow-y:auto;
	flex:1;
} */
.slider-container {
	display: flex;
	flex-direction: row;
	align-items: center;
	padding: 12px 0px 24px 8px;
}

.slider-value {
	margin-left: 16px;
	text-align: right;
}

.slider-reset-button {
	margin-right: 16px;
}

/** Schedule Builder **/

.scheduleBuilder {
	display: flex;
	flex-direction: column;
}

.scheduleBuilder input {
	background-color: #F4F4F4;
	color: black;
	border-radius: 5px;
	border: 0
}

.scheduleBuilder>div {
	margin-top: 10px;
}

.recurrenceType {
	display: flex;
	flex-direction: row;
	justify-content: flex-start;
	align-items: center;
}

.recurrenceType select,
.recurrenceType input {
	margin: 0;
	padding: 5px;
	margin-left: 5px;
}

.recurrenceType select {
	min-height: 30px;
}

.scheduleBuilder input[type='number'] {
	max-width: 50px;
	text-align: center;
}

.startTime {
	display: flex;
	flex-direction: row;
	justify-content: flex-start;
	align-items: center;
}

.weekdays {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: flex-start;
	padding: 5px;
	cursor: pointer;
}

.weekday {
	width: 24px;
	height: 24px;
	background-color: #F4F4F4;
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-right: 10px;
}

.weekday.selected {
	background-color: royalblue;
	color: white;
}

.endTime {
	display: flex;
	flex-direction: column;
}

.endTimeSelector {
	display: flex;
	flex-direction: column;
	flex-wrap: wrap;
}


.endTimeSelector>div {
	display: flex;
	flex-direction: row;
	align-items: center;
	margin-top: 10px;
}

.endTimeSelector>div>div {
	flex: 1;
}

.endTimeSelector label {
	margin-left: 5px;
}

.repeatContainer>div:not(:first-child) {
	margin-top: 15px;
}

.stretch {
	flex: 1;
	position: relative;
	display: flex;
	flex-direction: row;
}

.stretch>div {
	flex: 1;
}

/*
TTS Phonetics Manager Styles
*/

.tts-phonetics-manager {
	width: 100%;
	height: 100%;
	display: flex;
	flex-direction: column;
}

.tts-phonetics-manager>div {
	width: 100%
}

.tts-phonetics-manager .replacements-list {
	overflow-y: auto;
	overflow-x: hidden;
	/* min-height: 300px; */
	flex: 1;
	margin-bottom: 15px;
	padding: 5px;
	border: 1px solid #cccccc;
	border-radius: 5px;
}

.file-picker-modal-body {
	display: flex;
	width: 100%;
	/* height: 100%; */
	flex-direction: column;
	flex: 1;
	overflow: hidden;
}

.file-picker-modal-body .drive-tree-wrapper {
	max-height: 100%;
	flex: 1;
	overflow: hidden;
}

.file-picker-modal-body .ambifi-drive {
	max-height: 100%;
	overflow-y: hidden;
	display: flex;
	flex-direction: column;
	flex: 1;
}

.ambifi-alert {
	z-index: 1002 !important;
}

.public-DraftStyleDefault-block {
	margin: 0px 0 !important;
}

.rdw-editor-main {
	border-style: solid !important;
	border-color: #cccccc !important;
	border-width: 1px !important;
	padding: 5px !important;
	border-radius: 5px !important;
}

.modal-body-wrapper {
	/* height: 100%; */
	width: 100%;
	display: flex;
	flex-direction: column;
	position: relative;
	/* height: inherit; */
	flex: 1;
	overflow: hidden;
}

.modal-body {
	flex: 1;
	overflow-x: hidden;
	overflow-y: auto;
}

.modal-footer {
	flex: 0;
	min-height: 60px;
}

@media (min-width: 768px) {
	.form-inline .form-group {
		width: auto;
	}
}

span>span>p {
	margin: 0;
	padding: 0;
}

/*
Line clapmping
*/

.label-wrapper {
	position: relative;
	overflow: hidden;
}

.label-wrapper.collapsed {
	max-height: 75px;
}

.expand-collapse {
	position: absolute;
	top: 50px;
	right: 5px;
	cursor: pointer;
	z-index: 2;
}

.expand-collapse.less {
	bottom: 0px;
	top: inherit;
}

.label-wrapper.collapsed .less {
	display: none;
}

.label-wrapper.expanded .more {
	display: none;
}

.overflow {
	position: absolute;
	top: 60px;
	height: 15px;
	left: 0;
	right: 0;
	background: inherit;
	background: linear-gradient(0deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
	z-index: 1;
}

.item-tree-node .overflow {
	background: linear-gradient(0deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
}

.item-tree-node.selected .overflow,
.panel-success .overflow {
	background: linear-gradient(0deg, rgba(223, 240, 216, 1) 0%, rgba(223, 240, 216, 0) 100%);
}

.label-wrapper a {
	pointer-events: none;
}

.label-wrapper.expanded .overflow {
	display: none;
}

.btn-toolbar {
	margin-left: 0px;
}

.toolbarsHeader .btn-toolbar {
	padding-left: 2px !important;
}

.workflow-transition-menu .caret {
	margin-bottom: 3px !important;
}

.btn-file {
	position: relative;
	overflow: hidden;
}

.btn-file input[type=file] {
	position: absolute;
	top: 0;
	right: 0;
	min-width: 100%;
	min-height: 100%;
	font-size: 100px;
	text-align: right;
	filter: alpha(opacity=0);
	opacity: 0;
	outline: none;
	background: white;
	cursor: inherit;
	display: block;
}

.marker-container {
	display: flex;
	flex-direction: column;
	width: 100%;
}

.marker {
	display: flex;
	flex-direction: row;
	border-left: 4px solid royalblue;
	align-items: center;
}

.marker>* {
	flex: 1
}

.marker>*:first-child {
	flex: 0;
	margin-right: 5px;
	margin-left: 5px;
}

.marker.error {
	border-left: 4px solid red;
	color: red;
}

.marker.warning {
	border-left: 2px solid goldenrod;
}

.members-table {
	width: 100%;
	table-layout: fixed;
}

.members-table>tbody>tr:nth-child(even) {
	background-color: #f8f8f8;
}

.members-table>tbody>tr:hover {
	background-color: #f0f0f0;
}

.members-table>tbody>tr {
	border-left: 4px solid transparent;
}

.members-table .role-administrator {
	border-left-color: #880000;
}

.members-table .role-author {
	border-left-color: royalblue;
}

.members-table .role-user {
	border-left-color: lightblue;
}

.members-table .role-guest {
	border-left-color: lightgray;
}

.amplify-emulated-panel {
	background-color: white;
	width: 28.75rem;
	min-width: 20rem;
	max-width: 80vw;
	-webkit-font-smoothing: antialiased;
	box-shadow: 1px 1px 4px 0 rgba(0, 0, 0, 0.15);
	border-radius: 6px;
	padding: 35px 40px;
}

.amplify-emulated-input {

	letter-spacing: normal;
	word-spacing: normal;
	text-transform: none;
	text-indent: 0px;
	text-shadow: none;
	display: inline-block;
	text-align: start;
	appearance: textfield;
	background-color: -internal-light-dark(rgb(255, 255, 255), rgb(59, 59, 59));
	-webkit-rtl-ordering: logical;
	cursor: text;
	margin: 0em;
	font: 400 13.3333px Arial;
	padding: 1px 2px;
	border-width: 2px;
	border-style: inset;
	border-color: -internal-light-dark(rgb(118, 118, 118), rgb(195, 195, 195));
	border-image: initial;
	display: block;
	width: 100%;
	padding: 1rem;
	font-size: 1em;
	color: black;
	background-color: white;
	background-image: none;
	border: 1px solid rgb(196, 196, 196);
	border-radius: 3px;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	margin: 0;
	height: 3.125rem;
	line-height: 1.1;
	writing-mode: horizontal-tb !important;
	text-rendering: auto;
	color: -internal-light-dark(black, white);
}

.amplify-emulated-button {
	/* width: 100%; */
	min-width: 153px;
	display: inline-block;
	margin-bottom: 0px;
	font-size: 1em;
	font-family: 'Amazon Ember',
		'Helvetica Neue',
		'Helvetica',
		'Arial',
		sans-serif;
	font-weight: 600;
	text-align: center;
	white-space: nowrap;
	vertical-align: middle;
	touch-action: manipulation;
	cursor: pointer;
	user-select: none;
	background-image: none;
	background-color: #ff9900;
	color: white;
	padding: 16px;
	letter-spacing: 0.75px;
	border: none;
}

.amplify-emulated-label {
	color: rgb(51, 51, 51);
	display: block;
	font-family:
		Arial,
		sans-serif;
	font-size: 14px;
	line-height: 22.8571px;
	padding-bottom: 8px;
	text-size-adjust: 100%;
	visibility: visible;
	width: 380px;
	-webkit-font-smoothing: antialiased;
	-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

.custom-modal>div {
	display: flex;
	flex-direction: column;
	height: 100%;
}

.dev-info-modal {
	height: 100%;
}

.dev-info-modal-body {
	max-height: 100%;
	overflow-y: auto;
	overflow-x: hidden;
	padding: 0px 10px 0px 10px;
}

.def-info-form {
	display: flex;
	flex-direction: column;
}

.dev-info-warning {
	color: red;
	margin: 0 0 6px 0;
}