/*
To change this license header, choose License Headers in Project Properties.
To change this template file, choose Tools | Templates
and open the template in the editor.
*/
/*
    Created on : 18 Oct 2020, 21:52:06
    Author     : Jacob
*/
:root {
	--white: #ffffff;
	--cream: #fbf7f1;
	--yellow: #ffda58;
	--orange: #f8742a;
	--darkpurple: #2f3872;
	/*rgb(47,56,114);*/
	--purple: #b677e5;
	/*rgb(182,119,229)*/
	--lightpurple: #f4edf9;
	/*rgb(244, 237, 249)*/
	--lightblue: #58afff;
	/*rgb(88,175,255)*/
	--mediumblue: #4678c0;
	/*rgb(70,120,192)*/
	--blue: #344080;
	/*rgb(52,64,129)*/
	--black: #121314;
	--darkgrey: #4c4b4d;
	--mediumgrey: #99979a;
	--lightgrey: #cbc9cc;
	--verylightgrey: #e0dfe0;
	--whitegrey: #fafafa;
	--green: #41d999;
	/*rgb(65,217,153)*/
	--darkgreen: #2d7535;
	/*rgb(45,117,53)*/
	--red: #fb4258;
	/*rgb(251,66,88)*/
}

@font-face {
	font-display: block;
	font-family: ES Rebond Grotesque;
	src: url("../fonts/ESRebondGrotesque.otf");
}

@font-face {
	font-display: block;
	font-family: ES Rebond Grotesque Bold;
	src: url("../fonts/ESRebondGrotesque-Bold.woff2");
}

@font-face {
	font-display: block;
	font-family: Basier Circle;
	src: url("../fonts/basiercircle-regular-webfont.woff2");
}

@font-face {
	font-display: block;
	font-family: Basier Circle Bold;
	src: url("../fonts/basiercircle-bold-webfont.woff2");
}

body {
	background-color: #e5e5e5;
	font-family: Basier Circle;
	margin: 0;
	overflow: hidden;
	width: 100%;
}

#container {
	min-height: 100vh;
	max-width: 100vw;
	background-color: var(--white);
	margin: 0 auto;
}

#content {
	height: 100vh;
	overflow: hidden;
	margin: 0px 0px 0 40px;
	position: relative;
}

.parentContainer {
	height: calc(100% - 99px);
	/*132px is the header height*/
	margin-left: 10px;
	overflow-x: hidden;
	overflow-y: auto;
}

.divideContainer {
	border-bottom: 1px solid var(--lightgrey) !important;
}

.setupContainer {
	margin: 0 auto;
	width: 600px;
}

.title {
	font-family: ES Rebond Grotesque Bold;
	font-size: 8px;
	font-weight: 800;
	text-align: center;
}

.setupContainer h1,
.setupContainer h2,
.setupContainer h3,
.setupContainer h4,
.setupContainer h5,
.setupContainer h6,
.setupContainer p {
	text-align: center;
}

.wizardContainer {
	height: 100%;
}

.wizardContainer h1,
.wizardContainer h2,
.wizardContainer h3,
.wizardContainer h4,
.wizardContainer h5,
.wizardContainer h6,
.wizardContainer p {
	margin-left: 10px;
	text-align: left;
}

.wizardContainer .greyText {
	font-size: 11px;
	line-height: 11px;
}

.wizardContainer label,
.setupContainer label {
	display: block;
	font-size: 10px;
	margin: 24px auto 8px;
	padding: 0px;
	width: 410px;
}

.wizardContainer table {
	margin: 50px 25px 0;
}

.wizardContainer .fileDropContainer {
	margin: 0 25px;
	width: 400px;
}

.wizardContainer .textInput,
.setupContainer .textInput {
	display: block;
	font-size: 10px;
	margin: 8px auto 24px;
	padding: 10px;
	width: 400px;
}

.wizardContainer .largeButton {
	margin: 40px 25px 10px;
	width: 180px;
}

.wizardContainer .purpleWhiteButton {
	border: 2px rgba(52, 65, 128, 1) solid;
	background-color: rgba(52, 65, 128, 1);
}

.wizardContainer .inverseSecondaryButton {
	border-color: rgba(52, 65, 128, 1);
	color: rgba(52, 65, 128, 1);
}

.pieChartContainer {
	display: inline-block;
	height: auto;
	min-width: 350px;
	padding: 5px 0;
	position: relative;
}

.pieChartContainer text {
	font-family: Basier Circle;
	font-size: 8px;
}

.pieChartContainer h2 {
	font-size: 15px;
	text-align: center;
	white-space: nowrap;
}

.pieChartContainer h2 text {
	font-family: ES Rebond Grotesque Bold;
	vertical-align: middle;
}

.noteContainer {
	display: inline-block;
	max-width: min(800px, 30vw);
	min-height: 300px;
	padding: 25px 25px 0;
	vertical-align: top;
	width: 100%;
}

.noteContainer .editContainer {
	position: relative;
	width: 100%;
}

.noteContainer textarea,
.noteContainer .fieldsetContainer {
	height: auto !important;
	margin: 10px !important;
	min-height: 300px;
	padding: 25px !important;
	width: calc(100% - 70px) !important;
}

.noteArea {
	min-height: 250px;
	padding: 25px 0;
}

.purpleBorderContainer {
	border: 1px solid var(--purple);
	border-radius: 6px;
	-moz-border-radius: 6px;
	-webkit-border-radius: 6px;
	margin: 25px auto;
	padding: 10px;
	width: fit-content;
}

.purpleBorderContainer h3 {
	margin: 5px auto;
}

#markdownCommentsContainer {
	background: var(--white);
	border-left: 1px solid var(--lightgrey);
	height: 1000px;
	position: absolute;
	right: 0;
	top: 2px;
	width: 30%;
	z-index: 2;
}

#commentsContent {
	height: 100%;
	overflow-y: auto;
	padding: 10px 0 10px 1%;
	position: fixed;
	width: 24%;
}

#commentsContent h2 {
	border-bottom: 1px solid var(--mediumgrey);
	margin: 0 0 10px;
	padding: 0;
}

#commentsContent .button {
	font-size: 9px;
	display: inline-block;
}

#markdownCommentsListContainer {
	overflow-x: hidden;
	overflow-y: auto;
	padding-right: 10%;
}

#commentsListContainer {
	overflow-x: hidden;
	overflow-y: auto;
}

.commentElement {
	border-top: 1px solid var(--lightgrey);
	padding: 10px 5px;
	position: relative;
	width: calc(100% - 10px);
}

.commentElement h4 {
	color: var(--darkgrey);
}

.commentElement p {
	color: var(--darkgrey);
	line-break: anywhere;
	margin: 3px 0;
}

.commentElement span {
	color: var(--darkgrey);
	position: absolute;
	right: 3px;
	top: 10px;
}

#commentsContent #commentsInputContainer {
	border-top: 1px solid var(--mediumgrey);
	bottom: 0px;
	height: 125px;
	position: absolute;
	width: 85%;
}

#commentsInputContainer .button {
	margin: 5px;
	float: right;
}

#commentsInputContainer .textInput {
	border-radius: 10px;
	-moz-border-radius: 10px;
	-webkit-border-radius: 10px;
	margin: 5px 0 0;
	padding: 20px 4%;
	width: 92%;
	word-break: break-all;
}

#commentsInputContainer .textInput::placeholer {
	color: var(--verylightgrey);
}

.buttonContainer {
	margin: 40px auto 10px;
}

.buttonContainer .button,
.buttonContainer .largeButton {
	display: inline-block;
	margin: 20px 25px 0;
}

.autocomplete {
	display: inline-block;
	position: relative;
	width: 100%;
}

.autocomplete-items {
	border: 1px solid #d4d4d4;
	border-bottom: none;
	border-top: none;
	z-index: 99;
	position: absolute;
	left: 0;
	right: 0;
	width: fit-content;
}

.autocomplete-items div {
	background-color: #fff;
	border-top: 1px solid #d4d4d4;
	color: var(--blue);
	cursor: pointer;
	font-family: Basier Circle;
	font-size: 7px;
	padding: 5px;
}

.autocomplete-items div:hover {
	/*when hovering an item:*/
	background-color: #e9e9e9;
}

.autocomplete-active {
	/*when navigating through the items using the arrow keys:*/
	background-color: var(--yellow) !important;
	color: #ffffff;
}

#stepsWorkflow {
	background-color: var(--white);
	border-top: 1px solid var(--lightgrey);
	height: 100px;
	width: 100%;
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	z-index: 3;
}

#stepsFlowContainer {
	padding-left: 35px;
}

#markdownBreakdownContainer {
	left: 20%;
	position: absolute;
	top: 5px;
}

.breakdownContainer {
	border: 1px solid var(--lightgrey);
	border-radius: 10px;
	-moz-border-radius: 10px;
	-webkit-border-radius: 10px;
	height: 45px;
	margin: 15px 10px;
	position: relative;
}

.breakdownTitle {
	background-color: var(--white);
	position: absolute;
	padding: 0 6px;
	top: -15px;
}

.breakdownTitleLeft {
	left: 5px;
}

.breakdownTitleRight {
	left: 225px;
}

#stepsButtonContainer {
	position: absolute;
	right: 0;
	top: 0;
	width: 20%;
}

#stepsButtonContainer .button {
	margin: 20px 75px 20px 20px;
}

#menuSidebar {
	background-color: var(--white);
	border-right: 1px solid var(--lightgrey);
	height: 100%;
	padding-right: 10px;
	position: fixed;
	left: 0;
	top: 0;
	z-index: 99;
}

#menuSidebarContainer {
	height: 100%;
	margin: 0 0 0 4px;
	position: relative;
	width: 25px;
}

#menuSidebarHoverContainer {
	height: 100%;
	position: fixed;
	width: 15px;
}

.menuLogo {
	margin-bottom: 40px;
	padding: 15px 5px 15px 10px;
	width: 18px;
}

.menuIcon {
	background-color: var(--white);
	cursor: pointer;
	margin: 5px 0 5px;
	padding: 7px 5px 7px 4px;
}

.menuIconActive,
.menuIcon:hover {
	background-color: var(--lightpurple);
	border-radius: 5px;
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
}

.menuIconFocus {
	background-color: rgba(88, 175, 255, 0.25);
	border-radius: 5px;
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
}

.menuImage {
	width: 18px;
}

.menuIconHover {
	border-radius: 5px;
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
	width: 166px;
}

.menuText {
	display: none;
	float: right;
	font-family: ES Rebond Grotesque;
	font-size: 12px;
	width: 125px;
}

.accountIcon {
	background: rgba(182, 119, 229, 0.15);
	border: 2px solid var(--verylightgrey);
	border-radius: 30px;
	-moz-border-radius: 30px;
	-webkit-border-radius: 30px;
	color: var(--purple);
	font-size: 11px;
	font-weight: 800;
	height: 20px;
	line-height: 20px;
	margin: 0px 20px;
	padding: 2px;
	text-align: center;
	width: 20px;
}

#loginForm {
	margin: 40px auto;
	max-width: 600px;
}

.wizardContainer {
	margin: 40px auto;
	max-width: 800px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	color: var(--black);
	font-style: normal;
	font-weight: bold;
}

h1 {
	font-family: ES Rebond Grotesque Bold;
	font-size: 17px;
	line-height: 17px;
	text-align: center;
}

h2 {
	font-family: ES Rebond Grotesque Bold;
	font-size: 16px;
	line-height: 20px;
}

h3 {
	font-family: ES Rebond Grotesque Bold;
	font-size: 14px;
	line-height: 16px;
	margin: 5px 0 10px;
}

h4 {
	font-family: Basier Circle;
	font-size: 11px;
	line-height: 16px;
	margin: 0;
}

h5 {
	font-family: Basier Circle;
	font-size: 10px;
	line-height: 15px;
	margin: 5px 0;
}

#headerContainer {
	border-bottom: 1px solid var(--lightgrey);
	font-size: 16px;
	line-height: 16px;
	margin: 0 0 5px;
	padding: 18px 27px;
	position: relative;
}

.pageHeader {
	margin: 0;
	padding: 0;
	text-align: left;
}

.dashboardHeader {
	display: inline-block;
	margin-bottom: 0;
	padding-left: 25px;
}

.centeredText {
	text-align: center !important;
}

.bold {
	font-family: Basier Circle Bold !important;
}

.smallFontSize {
	font-size: 10px !important;
	line-height: 10px !important;
}

.smallRow td {
	height: 10px !important;
}

p,
span {
	font-family: Basier Circle;
	font-size: 10px;
	line-height: 15px;
}

.adjustableFontSize {
	font-family: inherit;
	font-size: inherit;
	line-height: inherit;
	white-space: nowrap;
}

.statsTitle {
	font-family: Basier Circle;
	font-size: 28px;
	line-height: 32px;
}

.boldSubHeading {
	font-family: ES Rebond Grotesque Bold;
	font-size: 10px;
	line-height: 12px;
}

.boldCapsText {
	font-family: Basier Circle Bold;
	font-size: 9px;
	line-height: 9px;
	text-transform: uppercase;
}

.capsText {
	font-family: Basier Circle;
	font-size: 9px;
	font-weight: 100;
	line-height: 9px;
	text-transform: uppercase;
	color: var(--darkgrey);
}

.wordbreakText {
	word-break: break-word;
}

.smallText {
	font-family: Basier Circle;
	font-size: 9px;
	font-weight: 100;
	line-height: 9px;
	color: var(--darkgrey);
}

.smallerText {
	font-family: Basier Circle;
	font-size: 10px;
	font-weight: 100;
	line-height: 10px;
	color: var(--darkgrey);
}

.largeText {
	font-size: 11px;
	line-height: 11px;
}

.boldText {
	font-family: Basier Circle Bold;
	font-size: 11px;
	font-weight: 200;
	letter-spacing: 0.5px;
	line-height: 15px;
	color: var(--black);
}

.smallerBoldText {
	font-family: Basier Circle Bold;
	font-size: 10px;
	font-weight: 100;
	line-height: 10px;
	color: var(--darkgrey);
}

.smallBoldText {
	font-family: Basier Circle Bold;
	font-size: 9px;
	font-weight: 100;
	line-height: 9px;
	color: var(--darkgrey);
}

.blackText {
	color: var(--black);
	font-family: Basier Circle;
	font-size: 11px;
	font-weight: 100;
	line-height: 12px;
}

.blueText {
	font-family: Basier Circle;
	font-size: 11px;
	font-weight: 100;
	line-height: 12px;
	color: var(--mediumblue);
}

.greyText {
	font-family: Basier Circle;
	font-size: 9px;
	font-weight: 100;
	line-height: 9px;
	color: var(--mediumgrey);
}

.greyCapsText {
	font-family: Basier Circle;
	font-size: 9px;
	font-weight: 100;
	line-height: 9px;
	text-transform: uppercase;
	color: var(--mediumgrey);
}

.greenText {
	font-family: Basier Circle;
	font-size: 9px;
	font-weight: 100;
	line-height: 9px;
	color: var(--green);
}

.boldPurpleText {
	font-family: Basier Circle Bold;
	font-size: 11px;
	font-weight: 200;
	letter-spacing: 0.5px;
	line-height: 14px;
	color: var(--purple);
}

.purpleText {
	font-family: Basier Circle;
	font-size: 11px;
	font-weight: 100;
	line-height: 14px;
	color: var(--purple) !important;
}

.redText {
	font-family: Basier Circle;
	font-size: 9px;
	font-weight: 100;
	line-height: 9px;
	color: var(--red);
}

.infoText {
	font-family: Basier Circle;
	font-size: 9px;
	font-weight: 400;
	line-height: 14px;
	color: var(--mediumgrey);
}

.noDataText {
	clear: both;
	display: block;
	padding: 25px;
	width: 100%;
}

a {
	color: var(--mediumgrey);
	cursor: pointer;
	font-family: Basier Circle;
	font-size: 9px;
	line-height: 14px;
	text-decoration: none;
}

.notification {
	display: none;
	position: fixed;
	top: 20px;
	right: 20px;
	background-color: rgba(182, 119, 229, 0.8);
	color: var(--white);
	padding: 25px;
	border-radius: 5px;
	z-index: 1000;
	min-height: 5%;
	max-height: 15%;
	min-width: 5%;
	max-width: 15%;
	width: fit-content;
}

.progressCircle {
	border: 3px solid var(--green);
	border-radius: 25px;
	-moz-border-radius: 25px;
	-webkit-border-radius: 25px;
	height: 15px;
	width: 15px;
}

.progressRingContainer {
	position: absolute;
	right: 0;
	top: 10px;
	width: 150px;
}

.progressRingContainer span {
	position: absolute;
	top: 10px;
}

.progressRing {
	display: inline-block;
	transform: rotate(270deg);
}

.progressRing,
.progressRing svg,
.progressRing circle {
	height: 30px;
	width: 30px;
}

.progressRing circle {
	position: absolute;
	fill: none;
	stroke-width: 2;
	transform: translate(5px, 5px);
	/* This is to position it in the center */
	stroke-dasharray: 61;
	stroke-linecap: round;
}

.progressRing circle:nth-child(1) {
	stroke: rgba(65, 217, 153, 0.15);
	stroke-dashoffset: 0;
}

.progressRing circle:nth-child(2) {
	stroke: var(--green);
}

.completeProgressBarNode {
	background-color: var(--green);
	border-radius: 6px;
	-moz-border-radius: 6px;
	-webkit-border-radius: 6px;
	height: 10px;
	width: 20px;
}

.incompleteProgressBarNode {
	background-color: var(--verylightgrey);
	border-radius: 6px;
	-moz-border-radius: 6px;
	-webkit-border-radius: 6px;
	height: 10px;
	width: 20px;
}

label {
	color: var(--darkgrey);
	font-family: Basier Circle;
	font-size: 11px;
}

.button {
	border-radius: 6px;
	-moz-border-radius: 6px;
	-webkit-border-radius: 6px;
	box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.05);
	display: block;
	cursor: pointer;
	color: var(--black);
	font-family: Basier Circle;
	font-size: 9px;
	font-weight: normal;
	margin: 8px 0;
	padding: 4px 4px;
	text-align: center;
	text-decoration: none;
}

.button:focus {
	outline: none !important;
}

.button:hover {
	box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.2);
}

.plainButton {
	background-color: var(--white);
	border: 1px solid var(--lightgrey);
	border-radius: 6px;
	-moz-border-radius: 6px;
	-webkit-border-radius: 6px;
	box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.05);
	cursor: pointer;
	color: var(--darkgrey);
	font-family: Basier Circle;
	font-size: 9px;
	font-weight: normal;
	line-height: 13px;
	padding: 4px 5px;
	text-align: center;
	text-decoration: none;
}

.plainButton:hover {
	box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.2);
}

.greyButton {
	background-color: var(--whitegrey);
	border: 1px solid var(--whitegrey);
	cursor: pointer;
	color: var(--mediumgrey);
	font-family: Basier Circle;
	font-size: 9px;
	font-weight: normal;
	padding: 4px 5px;
	text-align: center;
	text-decoration: none;
}

.arrowIconButton {
	cursor: pointer;
	float: right;
	padding: 4px 4px 3px 5px;
	text-align: center;
	text-decoration: none;
	transform: rotate(180deg);
}

.arrowButton {
	background-color: var(--whitegrey);
	border: 1px solid var(--lightgrey);
	border-radius: 8px;
	-moz-border-radius: 8px;
	-webkit-border-radius: 8px;
	cursor: pointer;
	color: var(--mediumgrey);
	font-family: Basier Circle;
	font-size: 9px;
	font-weight: normal;
	padding: 4px 4px 3px 5px;
	text-align: center;
	text-decoration: none;
}

.circleButton {
	border-radius: 25px;
	-moz-border-radius: 25px;
	-webkit-border-radius: 25px;
	padding: 2px;
}

.circleButtonText {
	cursor: text;
	display: inline-block;
	line-height: 13px;
	height: 15px;
	width: 15px;
	position: relative;
	top: -2px;
	margin-left: 5px;
}

.smallButton {
	border-radius: 5px;
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
	box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.05);
	display: inline;
	cursor: pointer;
	color: var(--black);
	font-family: Basier Circle;
	font-size: 9px;
	font-weight: normal;
	margin: 0px 5px 10px;
	padding: 4px 5px;
	text-align: center;
	text-decoration: none;
}

.smallButton:focus {
	outline: none !important;
}

.smallButton:hover {
	box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.2);
}

.largeButton {
	border-radius: 10px;
	-moz-border-radius: 10px;
	-webkit-border-radius: 10px;
	box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.05);
	display: block;
	cursor: pointer;
	color: var(--black);
	font-family: Basier Circle;
	font-size: 11px;
	font-weight: normal;
	margin: 10px 0;
	padding: 6px 20px;
	text-align: center;
	text-decoration: none;
}

.largeButton:focus {
	outline: none !important;
}

.largeButton:hover {
	box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.2);
}

.giantButton {
	border-radius: 5px;
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
	box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.05);
	display: block;
	cursor: pointer;
	color: var(--black);
	font-family: Basier Circle;
	font-size: 11px;
	font-weight: normal;
	margin: 5px 0;
	padding: 6px 15px;
	text-align: center;
	text-decoration: none;
}

.giantButton:focus {
	outline: none !important;
}

.giantButton:hover {
	box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.2);
}

.completedStatusTag {
	background-color: rgba(65, 217, 153, 1);
	border-radius: 12px;
	-moz-border-radius: 12px;
	-webkit-border-radius: 12px;
	font-size: 12px;
	font-family: Basier Circle;
	line-height: 12px;
	color: var(--white);
	padding: 6px;
	position: absolute;
	right: 20px;
	top: 15px;
	width: 100px;
}

.pendingStatusTag {
	background-color: var(--yellow);
	border-radius: 12px;
	-moz-border-radius: 12px;
	-webkit-border-radius: 12px;
	font-size: 12px;
	font-family: Basier Circle;
	line-height: 12px;
	color: var(--black);
	padding: 6px 12px;
	position: absolute;
	right: 20px;
	text-align: center;
	top: 15px;
	width: 60px;
}

.greenWhiteButton {
	background: rgba(65, 217, 153, 0.75);
	border: 0px solid rgba(65, 217, 153, 0.15);
	color: var(--white);
}

.purpleWhiteButton {
	background: rgba(182, 119, 229, 0.75);
	border: 0px solid rgba(182, 119, 229, 0.15);
	color: var(--white);
}

.redWhiteButton {
	background: rgba(251, 66, 88, 0.9);
	border: 0px solid rgba(251, 66, 88, 0.9);
	color: var(--white);
}

.whitePurpleButton {
	background: var(--white);
	border: 0px solid rgba(182, 119, 229, 0.15);
	box-shadow: 0 3px 3px 2px rgba(0, 0, 0, 0.2);
	color: var(--purple);
}

.button.whitePurpleButton:hover {
	box-shadow: 0 3px 3px 2px rgba(0, 0, 0, 0.3);
}

.largeButton.whitePurpleButton:hover {
	box-shadow: 0 3px 3px 2px rgba(0, 0, 0, 0.4);
}

.giantButton.whitePurpleButton:hover {
	box-shadow: 0 3px 3px 2px rgba(0, 0, 0, 0.5);
}

.dropdownElement {
	background: var(--white);
	border: 1px solid var(--lightgrey);
	color: var(--black);
	font-family: Basier Circle;
	font-size: 11px;
	font-weight: normal;
	padding: 8px;
}

.whiteRedButton {
	background: var(--white);
	border: 0px solid rgba(182, 119, 229, 0.15);
	box-shadow: 0 3px 3px 2px rgba(0, 0, 0, 0.3);
	color: var(--red);
}

.button.whiteRedButton:hover {
	box-shadow: 0 3px 3px 2px rgba(0, 0, 0, 0.35);
}

.giantButton.whiteRedButton:hover {
	box-shadow: 0 3px 3px 2px rgba(0, 0, 0, 0.5);
}

.inversePrimaryButton {
	background: var(--white);
	border: 2px solid var(--green);
	color: var(--black);
	font-family: Basier Circle Bold;
	letter-spacing: 1.1px;
}

.inverseSecondaryButton {
	background: var(--white);
	border: 2px solid var(--purple);
	color: var(--black);
	font-family: Basier Circle Bold;
	letter-spacing: 0.8px;
}

.purpleButton {
	background: rgba(182, 119, 229, 0.75);
	border: 1px solid rgba(182, 119, 229, 0.75);
	color: var(--white);
	font-family: Basier Circle Bold;
	letter-spacing: 0.8px;
}

.inversePurpleButton {
	background: var(--white);
	border: 1px solid var(--purple);
	color: var(--purple);
	font-family: Basier Circle Bold;
	letter-spacing: 0.8px;
}

.yellowPrimaryButton {
	background: var(--yellow);
	border: 0px solid var(--yellow);
	color: var(--white);
}

.greenSecondaryButton {
	background: rgba(65, 217, 153, 0.15);
	border: 0px solid rgba(65, 217, 153, 0.15);
	color: var(--green);
}

.redPrimaryButton {
	background: var(--red);
	border: 0px solid var(--red);
}

.redSecondaryButton {
	background: rgba(251, 66, 88, 0.15);
	border: 0px solid rgba(251, 66, 88, 0.15);
	color: var(--red);
}

.blackPrimaryButton {
	background: var(--black);
	border-radius: 6px;
	-moz-border-radius: 6px;
	-webkit-border-radius: 6px;
	box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.05);
	color: var(--white);
	cursor: move;
	display: inline-block;
	font-family: Basier Circle;
	font-size: 10px;
	font-weight: normal;
	margin: 5px;
	padding: 5px 10px 5px 5px;
}

.backButtonContainer {
	float: left;
	height: 24px;
	left: -20px;
	padding: 0;
	position: relative;
	top: -3px;
	width: 24px;
}

.backButton {
	left: 6px;
	position: absolute;
	top: 6px;
}

.filterButton,
.sortButton {
	position: relative;
	z-index: 1;
}

.redCountIcon {
	background-color: rgba(251, 66, 88, 0.9);
	border-radius: 8px;
	-moz-border-radius: 8px;
	-webkit-border-radius: 8px;
	color: var(--white);
	font-size: 9px;
	height: 11px;
	line-height: 11px;
	position: absolute;
	right: -5px;
	top: -5px;
	width: 11px;
	z-index: 2;
}

.purpleCountIcon {
	background-color: rgba(182, 119, 229, 0.9);
	border-radius: 8px;
	-moz-border-radius: 8px;
	-webkit-border-radius: 8px;
	color: var(--white);
	font-size: 9px;
	height: 11px;
	line-height: 11px;
	position: absolute;
	right: -5px;
	top: -5px;
	width: 11px;
	z-index: 2;
}

.textInput {
	background-color: white;
	border: 1px solid var(--lightgrey);
	border-radius: 8px;
	-moz-border-radius: 8px;
	-webkit-border-radius: 8px;
	box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.2);
	color: var(--mediumgrey);
	font-family: Basier Circle;
	font-size: 8px;
	line-height: 10px;
	margin: 4px auto 12px;
	padding: 4px;
}

.textInput:focus {
	outline: none;
}

.textInput::placeholer {
	color: var(--mediumgrey);
}

.largeTextInput {
	border-radius: 10px;
	-moz-border-radius: 10px;
	-webkit-border-radius: 10px;
	background-color: white;
	border: 1px solid var(--lightgrey);
	box-shadow: 0px 2px 3px rgba(0, 0, 0, 0.1);
	color: var(--mediumgrey);
	font-family: Basier Circle;
	font-size: 9px;
	line-height: 12px;
	margin: 5px 0;
	padding: 10px;
	width: calc(100% - 20px);
}

.dataSelector {
	background-color: var(--lightgrey);
	border: 1px solid var(--lightgrey);
	color: var(--darkgrey);
	font-family: Basier Circle;
	font-size: 9px;
	line-height: 9px;
	padding: 5px;
}

.tickBoxText {
	display: inline-block;
	line-height: 16px;
}

.tickBox.selectedTickBox {
	background-image: url("../images/ticked.png");
}

.tickBox {
	background-image: url("../images/unticked.png");
	background-repeat: no-repeat;
	background-size: 16px 17px;
	background-position: center;
	display: inline-block;
	margin: 2px 5px;
	height: 18px;
	width: 18px;
	vertical-align: top;
}

/* select2 overrider start */
.select2-container {
	min-width: 200px;
	width: auto !important;
}

#tasksTable .select2-container {
	min-width: 150px;
}

.select2-container--default.select2-container--focus .select2-selection--multiple,
.select2-container--default .select2-selection--multiple {
	border: 1px solid var(--lightgrey) !important;
}

.select2-container--default .select2-results__option--highlighted.select2-results__option--selectable {
	background-color: rgba(88, 175, 255, 0.25) !important;
	color: var(--black) !important;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice {
	background-color: rgba(182, 119, 229, 0.25) !important;
	border: 1px solid rgba(182, 119, 229, 0.75) !important;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice__remove {
	border-right: 1px solid rgba(182, 119, 229, 0.75) !important;
	color: var(--darkgrey) !important;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice__display {
	color: var(--darkgrey) !important;
}

.select2-container--default .select2-results__option--selected {
	background-color: rgba(182, 119, 229, 0.15) !important;
}

/* select2 overrider end */

.creationForm {
	margin: 10% auto 0;
	width: 400px;
}

.creationForm h1 {
	font-size: 25px;
	font-weight: 200;
	text-align: left;
}

.creationForm select.textInput {
	width: 400px;
}

.creationForm .textInput {
	border-radius: 5px;
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
	font-size: 11px;
	line-height: 16px;
	margin-bottom: 0;
	padding: 10px;
	width: 380px;
}

.creationForm .button {
	margin: 25px 1px;
	padding: 10px;
	width: 100%;
}

#loginForm .greenWhiteButton,
.wizardContainer .button,
.setupContainer .button {
	margin-left: auto;
	margin-right: auto;
	padding: 10px 30px;
}

#loginForm .textInput {
	font-size: 11px;
	margin: 8px auto 24px;
	padding: 10px;
	width: 100%;
}

table .textInput {
	margin: 0;
}

.dataInput {
	background-color: var(--lightgrey);
	border: 1px solid var(--lightgrey);
	color: var(--darkgrey);
	font-family: Basier Circle;
	font-size: 9px;
	line-height: 9px;
	padding: 5px;
	max-width: 40px;
	min-width: 25px;
	width: 25%;
}

#searchProductsFilter {
	height: 30px;
	position: relative;
	width: 100%;
}

#searchProductsButton {
	cursor: pointer;
	margin: 0;
	position: absolute;
	right: 6%;
	top: 0;
	height: 12px;
	padding: 5px;
	width: 10%;
	text-align: right;
}

#searchProductsButton img {
	height: 14px;
	width: 14px;
}

.dashboardContainer {
	background-color: var(--white);
}

.shadowContainer {
	background-color: var(--white);
	border: 1px solid var(--verylightgrey);
	border-radius: 8px;
	-moz-border-radius: 8px;
	-webkit-border-radius: 8px;
	box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.1);
	margin: 8px 5px;
}

.fieldsetContainer {
	background-color: var(--white);
	border: 1px solid var(--verylightgrey);
	border-radius: 8px;
	-moz-border-radius: 8px;
	-webkit-border-radius: 8px;
	box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.1);
	display: inline-grid;
	margin: 8px 5px;
}

.fieldsetContainer .divider {
	background-color: var(--lightgrey);
	height: 1px;
	margin: 10px 0;
	width: 100%;
}

.fieldsetContainer.clickable:hover {
	border: 1px solid var(--darkgrey);
}

.smallfieldsetContainer {
	background-color: var(--white);
	border: 1px solid var(--verylightgrey);
	border-radius: 8px;
	-moz-border-radius: 8px;
	-webkit-border-radius: 8px;
	height: fit-content;
	padding: 2px 5px;
	width: fit-content;
}

.fieldsetHeader.clickable:hover h4 {
	color: var(--mediumgrey) !important;
}

#productMatchContainer .fieldsetContainer {
	width: min(40vw, 600px);
}

.markdownFieldsetContainer {
	padding: 20px;
	position: relative;
	width: calc(100% - 50px);
}

.markdownFieldsetContainer>h3 {
	margin: 0 10px 5px;
}

.markdownFieldsetContainer>h3:hover {
	color: var(--mediumgrey);
}

.markdownFieldsetContainer>.plainButton {
	position: absolute;
	right: 20px;
	top: 20px;
}

.markdownFieldsetContainer>.greyText {
	margin: 0 12px 5px;
}

.collectionContainer .fieldsetContainer {
	height: 250px;
	margin: 10px;
	padding: 15px;
	position: relative;
	width: 250px;
}

.collectionContainer .fieldsetContainer table {
	width: 100%;
}

.collectionContainer .fieldsetContainer .bottomButton {
	height: 30px;
	margin: 0;
	/*bottom: 15px;position: absolute;*/
	width: calc(100%);
}

/*
.collectionContainer .fieldsetContainer .secondBottomButton {
	bottom: 55px;
	height: 30px;
	margin: 0;
	position: absolute;
	width: calc(100% - 30px);
}
*/
.collectionContainer .fieldsetContainer h3 {
	line-height: 16px;
	margin-bottom: 0;
}

.collectionContainer .fieldsetHeader {
	height: 50px;
	padding: 0;
	width: 100%;
}

.collectionContainer .fieldsetHeader .greyText {
	font-size: 9px;
}

.colouredFieldsetContainer {
	background-color: var(--white);
	border: 2px var(--purple) solid;
	border-radius: 12px;
	-moz-border-radius: 12px;
	-webkit-border-radius: 12px;
	display: inline-grid;
	margin: 8px 5px;
}

.colouredFieldsetContainer .fieldsetHeader {
	padding: 5px 10px;
}

.fieldsetHeader {
	border-bottom: 1px solid var(--verylightgrey);
	padding: 10px 20px;
	width: calc(100% - 40px);
}

.fieldsetHeader p {
	color: var(--mediumgrey);
	font-family: Basier Circle;
	font-size: 9px;
	font-weight: 400;
	line-height: 9px;
	margin: 5px 0;
}

.collectionContainer .fieldsetMetric {
	display: inline-block;
	float: left;
	height: fit-content;
	margin: 50px;
	vertical-align: top;
	width: fit-content;
}

.fieldsetMetric {
	padding: 20px;
	position: relative;
	width: 80%;
}

.fieldsetMetric h2 {
	font-family: Basier Circle;
	font-size: 14px;
	font-weight: 200;
	line-height: 16px;
	margin: 5px;
	text-align: center;
}

.fieldsetMetric h3 {
	color: var(--mediumgrey);
	font-family: Basier Circle;
	font-size: 11px;
	font-weight: 200;
	line-height: 12px;
	margin: 0;
	text-align: center;
}

.fieldsetMetric.clickable:hover {
	border: 1px solid var(--darkgrey);
}

.fieldsetTextContainer {
	overflow-y: auto;
	height: 210px;
	margin: 10px;
	padding: 0px;
	width: 400px;
}

.fieldsetGraphContainer svg {
	float: left;
}

.fieldsetGraphContainer .tick line {
	stroke: #fff;
}

.fieldsetGraphContainer .domain {
	stroke: #fff;
}

.fieldsetGraphContainer text {
	fill: var(--mediumgrey);
	font: 10px Basier Circle;
}

.fileDropContainer {
	background-color: #d9d9d955;
	border: 1px solid var(--verylightgrey);
	border-radius: 6px;
	-moz-border-radius: 6px;
	-webkit-border-radius: 6px;
	height: 120px;
	margin: 0 auto;
}

.fileDropContainer.fileDrag {
	background-color: var(--white);
}

.fileDropContainer h4 {
	text-align: center;
}

.fileContainer {
	position: relative;
	width: fit-content;
}

.fileContainer a,
.fileContainer .greyText {
	font-size: 11px;
	line-height: 18px;
}

.graphBlue rect {
	stroke-width: 1;
	stroke: var(--lightblue);
	stroke-opacity: 1;
	fill: var(--lightblue);
	fill-opacity: 0.2;
}

.graphGreen rect {
	stroke-width: 1;
	stroke: var(--green);
	stroke-opacity: 1;
	fill: var(--green);
	fill-opacity: 0.2;
}

.graphPurple rect {
	stroke-width: 1;
	stroke: var(--purple);
	stroke-opacity: 1;
	fill: var(--purple);
	fill-opacity: 0.2;
}

.graphRed rect {
	stroke-width: 1;
	stroke: var(--orange);
	stroke-opacity: 1;
	fill: var(--orange);
	fill-opacity: 0.2;
}

.fieldsetImageContainer {
	display: inline-block;
	height: 400px;
	margin: 10px;
	min-width: 400px;
	overflow: hidden;
	padding: 15px;
	width: fit-content;
}

.fieldsetImageContainer .productImageUpload {
	margin: 150px;
	width: 100px;
}

.fieldsetImage {
	max-width: 500px;
	height: 400px;
}

.fieldsetProductImage {
	border: 1px solid var(--verylightgrey);
	border-radius: 6px;
	-moz-border-radius: 6px;
	-webkit-border-radius: 6px;
	margin: 12px;
	height: 175px;
	width: 175px;
}

.fieldsetProductImageLarge {
	border: 1px solid var(--verylightgrey);
	border-radius: 10px;
	-moz-border-radius: 10px;
	-webkit-border-radius: 10px;
	margin: 5px;
	width: 20%;
}

.fieldsetContainer .purpleWhiteButton {
	margin: 0 15px 5px;
}

.tableGraph {
	width: 100%;
}

.filterContainer {
	display: inline-block;
	padding: 5px 0.25%;
	width: fit-content;
}

.filterRow select {
	width: 250px;
}

.filterRow input {
	width: 238px;
}

.filterRow .comparisonFilter {
	width: 200px;
}

.tabExportButton {
	float: right;
	margin: 5px;
}

.infoIcon {
	cursor: help;
	float: left;
	height: 14px;
	margin: 2px;
	width: 14px;
}

#productsTable .infoIcon,
.dataTable .infoIcon {
	float: none;
	height: 13px;
	margin: 2px 0 -2px 10px;
	position: relative;
	width: 13px;
}

.settingsIcon {
	float: left;
	height: 14px;
	margin: 2px;
	width: 14px;
}

.deleteIcon {
	float: right;
	height: 14px;
	margin: 0 14px 0 0;
	width: 14px;
}

#socialContainer {
	bottom: 5px;
	display: inline;
	margin: 0 50px;
	position: relative;
	width: 200px;
}

.followIcon {
	float: left;
	height: 14px;
	margin: 0 4px 0 2px;
	width: 14px;
}

.shareButton {
	cursor: pointer;
	display: inline;
	height: 25px;
	left: 10px;
	margin: 0 4px 0 2px;
	position: relative;
	top: 8px;
	width: 25px;
}

.sortIcon {
	margin-left: 5px;
}

#topButtonContainer {
	position: absolute;
	top: 65px;
	right: 10%;
}

.dataTable {
	padding: 0 5px;
	width: 100%;
}

.dataTable .primaryHeaderRow th {
	border-bottom: 1px solid var(--lightgrey);
}

.dataTable .scrollableHeaderRow th {
	border-bottom: 1px solid var(--lightgrey);
}

.dataTable .scrollableHeaderRow th {
	text-transform: none;
}

.dataTable th {
	font-family: Basier Circle;
	font-size: 9px;
	line-height: 12px;
	text-transform: uppercase;
	color: var(--mediumgrey);
	padding: 6px 3px;
	text-align: left;
}

.dataTable td {
	border-bottom: 1px solid var(--verylightgrey);
	font-family: Basier Circle;
	font-size: 10px;
	line-height: 15px;
	color: var(--black);
	padding: 6px 4px;
	text-align: left;
}

.dataTable .smallColumnText {
	font-size: 9px;
	line-height: 13px;
}

.seasonTable {
	padding: 10px 0 50px;
	width: 100%;
}

.seasonTable th {
	font-family: Basier Circle;
	font-size: 9px;
	line-height: 11px;
	text-transform: uppercase;
	color: var(--mediumgrey);
	padding: 3px;
	text-align: center;
}

.seasonTable td {
	min-width: 25px;
	padding: 3px;
	text-align: center;
}

.seasonTable td .greyText {
	font-size: 7px;
}

.dashboardTable {
	display: inline-block;
	margin: 0 auto;
	padding: 0 10px 10px;
	width: auto;
}

.dashboardTable .primaryHeaderRow th {
	border-bottom: 1px solid var(--lightgrey);
}

.dashboardTable th {
	font-family: Basier Circle Bold;
	font-size: 9px;
	line-height: 12px;
	color: var(--black);
	padding: 15px 4px;
	text-align: left;
}

.dashboardTable td {
	border-bottom: 1px solid var(--verylightgrey);
	font-family: Basier Circle;
	font-size: 11px;
	line-height: 18px;
	color: var(--black);
	padding: 6px 4px;
	text-align: left;
}

.dashboardTable .columnSectionEnd {
	border-right: 1px solid var(--verylightgrey);
}

.fieldsetContainer .blackText,
.fieldsetContainer .blackText a,
.fieldsetContainer .greenText,
.fieldsetContainer .greenText a,
.fieldsetContainer .greyText,
.fieldsetContainer .greyText a,
.fieldsetContainer .redText,
.fieldsetContainer .redText a {
	font-size: 11px;
	line-height: 11px;
	word-break: break-word;
}

.smallfieldsetContainer .blackText,
.smallfieldsetContainer .blackText a,
.smallfieldsetContainer .greenText,
.smallfieldsetContainer .greenText a,
.smallfieldsetContainer .greyText,
.smallfieldsetContainer .greyText a,
.smallfieldsetContainer .redText,
.smallfieldsetContainer .redText a {
	font-size: 9px;
	line-height: 14px;
	vertical-align: top;
}

.fieldsetContainer .smallText {
	font-size: 9px;
	line-height: 12px;
	word-break: break-word;
}

.dataTable td .greenStatusText,
.dataTable td .purpleStatusText,
.dataTable td .redStatusText,
.dataTable td .yellowStatusText {
	display: inline-block;
	min-width: 25px;
	padding: 5px;
	vertical-align: text-top;
	width: max-content;
}

.dataTable .doubleHeader th {
	border: none;
	font-size: 10px;
	text-align: center;
}

.dataTable .doubleHeader .linkedColumns {
	border-bottom: 1px solid var(--yellow);
}

.smallTextTable.dataTable th {
	font-size: 8px;
}

.smallTextTable.dataTable td {
	font-size: 9px;
}

.smallTextTable.dataTable .smallColumnText {
	font-size: 8px;
	line-height: 11px;
}

th.sticky,
td.sticky {
	background-color: white;
	position: -webkit-sticky;
	position: sticky;
	left: 0;
	z-index: 1;
}

.darkRedBackground {
	background-color: rgba(249, 144, 156, 0.75);
}

.midRedBackground {
	background-color: rgba(251, 66, 88, 0.55);
}

.lightRedBackground {
	background-color: rgba(251, 66, 88, 0.35);
}

.greenBackground {
	background-color: rgba(65, 217, 153, 0.35);
}

.greyBackground {
	background-color: var(--lightgrey);
}

.columnTextPadded {
	display: block;
	padding: 5px;
}

.markdownPercentageText {
	width: 200px;
}

.defaultHidden {
	display: none;
}

.greyBackgroundSection {
	background-color: var(--verylightgrey);
	border-radius: 5px;
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
	display: block;
	line-height: 22px;
	width: 100%;
}

.clickable,
.clickableRow {
	cursor: pointer;
}

.clickableRow:hover {
	background-color: rgba(182, 119, 229, 0.15) !important;
}

.clickableContainer {
	cursor: pointer;
}

.clickableContainer:hover {
	box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.4);
}

.help {
	cursor: help;
}

.paginateRow a {
	display: block;
	width: 100vw;
}

.selectedRow,
.selectedRow td {
	background-color: rgba(182, 119, 229, 0.15) !important;
}

.alternativeRow,
.alternativeRow td {
	background-color: var(--whitegrey);
}

.archivedRow,
.archivedRow td {
	background-color: var(--lightgrey);
}

.readonlyRow,
.readonlyRow td {
	background-color: rgb(241, 241, 241, 0.9);
}

.parentRow,
.parentRow td {
	background-color: var(--whitegrey);
}

.activeRow,
.activeRow td {
	background-color: rgb(244, 237, 249, 0.9);
}

.displayTable {
	border: none;
}

.displayTable tr {
	border: none;
}

.displayTable td,
.displayTable th {
	border: none;
	font-family: Basier Circle;
	font-size: 11px;
	font-weight: 100;
	color: var(--darkgrey);
	padding: 10px;
}

.borderlessTable {
	border: none;
}

.borderlessTable tr {
	border: none;
}

.borderlessTable td,
.borderlessTable th {
	border: none;
	font-size: 11px;
	text-align: left;
}

.productImage {
	max-width: 100px;
}

#productsTable .productImage {
	max-width: 50px;
}

.productImageUpload {
	margin: 12.5px;
	width: 25px;
}

.bufferColumn {
	min-width: 100px;
}

.loadingImage {
	display: block;
	max-width: 100px;
	margin: 0 auto;
}

.columnDivider {
	background-color: var(--lightgrey);
	height: 20px;
	width: 1px;
}

.purpleStatusText {
	background-color: #f0e4fa;
	border: 1.5px solid var(--purple);
	border-radius: 5px;
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
	font-size: 9px;
	line-height: 9px;
	color: var(--black);
	padding: 3px 5px 5px;
}

.redStatusText {
	background-color: #fee3d4;
	border: 1.5px solid var(--orange);
	border-radius: 5px;
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
	font-size: 9px;
	line-height: 9px;
	color: var(--black);
	padding: 3px 5px 5px;
}

.yellowStatusText {
	background-color: #fff8de;
	border: 1.5px solid var(--yellow);
	border-radius: 5px;
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
	font-size: 9px;
	line-height: 9px;
	color: var(--black);
	padding: 3px 5px 5px;
}

.greenStatusText {
	background-color: rgba(65, 217, 153, 0.15);
	border: 1.5px solid var(--green);
	border-radius: 5px;
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
	font-size: 9px;
	line-height: 9px;
	color: var(--black);
	padding: 3px 5px 5px;
}

.statusField {
	cursor: pointer;
}

.divDropdown {
	display: none;
	position: absolute;
	background: white;
	border: 1px solid #ddd;
	border-radius: 5px;
	box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.2);
	z-index: 10;
}

.divDropdown span {
	display: block;
	margin: 3px;
}

#productsTableContainer {
	left: 10px;
	position: absolute;
	max-width: 800px;
	top: 0;
}

.notificationDot {
	float: right;
	height: 8px;
	margin: 5px 0;
	width: 8px;
}

.verticalRedLine {
	background: var(--red);
	height: calc(100% - 25px);
	position: absolute;
	top: 10px;
	width: 1px;
}

.circleRed {
	background: var(--red);
	border-radius: 50%;
	height: 16px;
	position: absolute;
	right: 3px;
	top: 3px;
	width: 16px;
}

.circlePurple {
	background: var(--purple);
	border-radius: 50%;
	height: 16px;
	position: absolute;
	right: 3px;
	top: 3px;
	width: 16px;
}

.collectionContainer {
	margin: 0;
	padding: 5px 0 10px;
	position: relative;
}

.collectionContainer .dataTable tbody {
	display: block;
	height: 600px;
	width: 100%;
	overflow: auto;
}

.collectionContainer .dataTable thead,
.collectionContainer .dataTable tbody tr {
	display: table;
	width: 100%;
}

.collectionContainer .dataTable td {
	word-break: break-word;
}

#dashboardContainer .collectionContainer {
	margin: 0;
}

#reportStatus {
	overflow: auto;
}

.reportsTable thead {
	display: table;
	font-size: 10px;
	width: 100%;
}

.reportsTable tbody {
	display: block;
	font-size: 9px;
	height: 100px;
	overflow-y: auto;
}

.reportsTable tbody::-webkit-scrollbar,
#mappingsContainer #leftContainer::-webkit-scrollbar {
	height: 7px;
	width: 5px;
}

#topContainer .section {
	height: 25px;
	padding: 25px;
}

#topContainer .section span {
	font-family: ES Rebond Grotesque;
	font-size: 16px;
	line-height: 16px;
	vertical-align: top;
}

.section img {
	height: 18px;
	padding: 0 15px;
}

.selectedSection {
	color: var(--purple);
}

.section .selectedSectionImage,
.selectedSection .sectionImage {
	display: none;
}

.selectedSection .selectedSectionImage {
	display: inline;
}

#scrollableContainer {
	margin-left: 5px;
	overflow-x: auto;
	width: 100%;
}

.regionsDualHeader th {
	border: none;
}

#productsContainer,
#linelistContainer,
#onorderContainer,
#rawContainer {
	margin-left: 5px;
	overflow-x: auto;
	overflow-y: hidden;
	padding: 0;
	width: calc(100% - 75px);
}

#productsScrollableContainer {
	padding: 40px 0 10px 0;
	position: relative;
}

#productsScrollableContainer .dataTable {
	width: auto;
}

#productNavContainer {
	border-bottom: 1px solid var(--lightgrey);
	height: min-content;
	min-width: calc(100vw - 150px);
	padding-left: 10px;
	position: fixed;
}

#fieldsetTabsContainer {
	background-color: var(--white);
	border-bottom: 1px solid var(--verylightgrey);
	left: -2px;
	position: absolute;
	top: -30px;
	width: 90%;
	z-index: 3;
}

#fieldsetTabsTable {
	left: 0px;
	position: relative;
	top: 1px;
}

.fieldsetTab span {
	background-color: var(--lightgrey);
	border-top-left-radius: 10px;
	border-top-right-radius: 10px;
	cursor: pointer;
	display: block;
	font-family: Basier Circle;
	font-size: 9px;
	font-weight: 400;
	line-height: 14px;
	color: var(--darkgrey);
	padding: 6px 14px;
	width: 150px;
}

.selectedFieldsetTab span {
	background-color: white;
	border-left: 1px solid var(--verylightgrey);
	border-right: 1px solid var(--verylightgrey);
	border-top: 1px solid var(--verylightgrey);
	padding: 6px 13px;
}

.fieldsetTab:not(.selectedFieldsetTab) span:hover {
	background-color: var(--verylightgrey);
}

.fieldsetTab {
	padding-bottom: 0;
	z-index: 5;
}

#productSidebar {
	position: fixed;
}

.sidebar {
	background-color: var(--white);
	/*border-left: 1px solid var(--lightgrey);*/
	height: 100%;
	position: absolute;
	opacity: 1;
	overflow-y: auto;
	right: -1000px;
	bottom: 0;
	width: 25%;
	z-index: 1;
}

.sidebar h2 {
	margin-top: 0;
	padding: 25px;
}

.sidebar h3 {
	margin-top: 25px;
}

.sidebar .section {
	padding: 0 25px 25px 25px;
	border-top: 1px solid var(--lightgrey);
}

.sidebar table {
	width: 100%;
}

#ordersTab .button,
.logoDialog .dialogButton {
	max-width: 200px;
	width: 75%;
	margin: 10px auto;
}

.logoDialog .redSecondaryButton {
	padding: 3px 6px;
}

.logoDialog .textArea {
	border-radius: 5px;
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
	background-color: white;
	border: 1px solid var(--lightgrey);
	color: var(--mediumgrey);
	font-family: Basier Circle;
	font-size: 9px;
	line-height: 10px;
	margin: 5px 0 0;
	padding: 10px 4%;
	width: 92%;
}

.logoDialog table tr td {
	vertical-align: baseline;
}

#orderInformation table tr td:first-child {
	vertical-align: top;
	width: 90%;
}

#customerInformation table tr td:first-child,
#deliveryInformation table tr td:first-child {
	vertical-align: top;
	width: 60%;
}

.closeIcon {
	float: right;
	margin: 5px 0;
	width: 12px;
}

.tabsMenu {
	display: inline-block;
	width: max-content;
}

#viewSelection {
	display: inline-block;
	margin-right: 50px;
	margin-top: 2px;
	width: 80px;
}

#viewSelection img {
	width: 30px;
}

.tabsContainer {
	border-bottom: 1px solid var(--lightgrey);
	height: 40px;
	margin: 0 5px;
	overflow-x: auto;
	overflow-y: hidden;
	position: relative;
	width: calc(100% - 30px);
	z-index: 3;
}

#fileTasks {
	position: absolute;
	right: 0;
	top: 0;
}

.tabsMenuItem {
	cursor: pointer;
	display: inline-block;
	height: 40px;
	overflow-y: hidden;
	padding: 0 10px 0 5px;
}

.tabsMenuItemActive {
	border-bottom: 2px solid var(--purple);
	color: var(--purple);
	height: 38px;
}

.tabsItem {
	padding: 10px 5px 25px;
	width: 15px;
}

.tabsItemText {
	float: right;
	padding: 8px 5px 17px;
	height: 20px;
}

.tabsItemTextActive {
	color: var(--purple);
}

.tileHeadersContainer {
	border: 1px solid #e0dfe0;
	display: inline-block;
	height: 305px;
	margin: 15px 0 3px 10px;
	overflow: hidden;
	padding: 5px;
	text-align: center;
	width: 100px;
}

.tileHeaderImageContainer {
	display: block;
	height: 150px;
	width: 100%;
}

.tileHeaderFieldsContainer {
	height: 155px;
	text-align: center;
	width: 100%;
}

.tileHeaderFieldsContainer table {
	height: 100%;
}

.tileHeaderFieldsContainer td {
	color: var(--mediumgrey);
	font-size: 8px;
}

.tileElementContainer {
	border-bottom: 1px solid #e0dfe0;
	border-right: 1px solid #e0dfe0;
	border-top: 1px solid #e0dfe0;
	display: inline-block;
	height: 305px;
	margin: 15px 0 3px;
	overflow: hidden;
	padding: 5px;
	text-align: center;
	width: 180px;
}

.tileElementImageContainer {
	display: block;
	height: 150px;
	position: relative;
	width: 180px;
}

.tileElementFieldsContainer {
	height: 155px;
	width: 180px;
}

.tileElementFieldsContainer table {
	height: 100%;
	width: 100%;
}

.tileElementFieldsContainer td,
.tileElementFieldsContainer td a {
	color: var(--darkgrey);
	font-size: 8px;
	text-align: center;
}

.errorMessage {
	color: var(--red);
}

.errorInput {
	border: 1px solid var(--red) !important;
}

.errorField {
	border: 1px solid var(--red) !important;
	display: block;
	min-height: 25px;
	width: 90%;
}

.ui-dialog .ui-widget-header {
	background: none;
	border: none;
}

.ui-dialog {
	background: var(--white) !important;
}

.productImageTooltip {
	background: var(--white) !important;
}

.ui-tooltip {
	background: var(--cream);
}

#importMarkdownDialog h2,
#importProductsDialog h2 {
	margin-left: 5px;
}

/* Designing for scroll-bar */
::-webkit-scrollbar {
	height: 7px;
	width: 7px;
}

/* Track */
::-webkit-scrollbar-track {
	background: var(--lightgrey);
	border-radius: 5px;
}

/* Handle */
::-webkit-scrollbar-thumb {
	background: var(--darkgrey);
	border-radius: 5px;
	height: 2px;
	width: 2px;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
	background: var(--mediumgrey);
}

.inactive {
	opacity: 0.2;
}

/*discussions */
.discussionItem {
	border-bottom: 1px solid #cbc9cc;
	cursor: pointer;
	padding: 15px;
}

.discussionItem:hover {
	background-color: rgba(182, 119, 229, 0.15);
}

.discussionItemActive {
	background-color: rgba(182, 119, 229, 0.15);
	border-left: 3px solid var(--purple);
	padding-left: 12px;
}

#dicussionContentContainer {
	border-left: 1px solid #cbc9cc;
	border-right: 1px solid #cbc9cc;
	min-height: 100%;
	padding: 0px;
	position: relative;
}

.commentMessageContainer {
	margin-top: 20px;
	width: 75%;
}

.commentMessageContainer .accountIcon {
	margin-bottom: 25px;
}

.commentMessageContainer .greyText {
	margin-left: 10px;
}

.commentMessageContainerLeft {
	float: left;
}

.commentMessage {
	border-radius: 8px;
	-moz-border-radius: 8px;
	-webkit-border-radius: 8px;
	padding: 15px;
}

.commentMessageContainerLeft .commentMessage {
	background-color: var(--whitegrey);
}

.commentMessageContainerRight {
	float: right;
}

.commentMessageContainerRight .commentMessage {
	background-color: rgba(182, 119, 229, 0.15);
}

.discussionCommentContainer {
	bottom: 50px;
	padding: 50px;
	position: absolute;
	width: calc(100% - 100px);
}

.discussionCommentContainer .button {
	bottom: 55px;
	position: absolute;
	right: 60px;
}

.discussionCommentContainer textarea {
	border: 1px solid var(--verylightgrey);
	box-shadow: 0px 20px 30px rgba(0, 0, 0, 0.1);
	resize: none;
}

#dicussionDetailsContainer {
	background-color: var(--whitegrey);
	min-height: 100%;
	padding: 0px;
	position: relative;
}

ul {
	list-style-type: none;
	margin-block-start: 0;
	margin-block-end: 0;
	padding-inline-start: 0;
}

/* add slider css */
.switch {
	display: inline-block;
	height: 20px;
	position: relative;
	width: 270px;
}

.switch input {
	display: none;
}

.slider {
	position: absolute;
	cursor: pointer;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: var(--darkgreen);
	-webkit-transition: 0.4s;
	transition: 0.4s;
}

.slider:before {
	position: absolute;
	content: "";
	height: 12px;
	width: 31px;
	left: 4px;
	bottom: 4px;
	background-color: white;
	-webkit-transition: 0.4s;
	transition: 0.4s;
}

input:checked+.slider {
	background-color: var(--darkpurple);
}

input:focus+.slider {
	box-shadow: 0 0 1px var(--purple);
}

input:checked+.slider:before {
	-webkit-transform: translateX(230px);
	-ms-transform: translateX(230px);
	transform: translateX(230px);
}

.on {
	display: none;
	left: 20px;
}

.off {
	right: 20px;
}

.on,
.off {
	color: white;
	position: absolute;
	transform: translate(0, -50%);
	top: 50%;
	font-size: 9px;
	font-family: Verdana, sans-serif;
	width: max-content;
}

input:checked+.slider .on {
	display: block;
}

input:checked+.slider .off {
	display: none;
}

.smallSwitch {
	display: inline-block;
	height: 20px;
	position: relative;
	width: 140px;
}

.smallSwitch .slider:before {
	position: absolute;
	content: "";
	height: 12px;
	width: 21px;
	left: 4px;
	bottom: 4px;
	background-color: white;
	-webkit-transition: 0.4s;
	transition: 0.4s;
}

.smallSwitch input:checked+.slider:before {
	-webkit-transform: translateX(110px);
	-ms-transform: translateX(110px);
	transform: translateX(110px);
}

.mediumSwitch {
	display: inline-block;
	height: 20px;
	position: relative;
	width: 185px;
}

.mediumSwitch .slider:before {
	position: absolute;
	content: "";
	height: 12px;
	width: 26px;
	left: 4px;
	bottom: 4px;
	background-color: white;
	-webkit-transition: 0.4s;
	transition: 0.4s;
}

.mediumSwitch input:checked+.slider:before {
	-webkit-transform: translateX(150px);
	-ms-transform: translateX(150px);
	transform: translateX(150px);
}

/* Rounded sliders */
.slider.round {
	border-radius: 34px;
}

.slider.round:before {
	border-radius: 24px;
}

@media screen and (max-height: 800px) {
	.menuLogo {
		margin: 0 5px;
		padding: 12px 11px;
	}

	.brandImage {
		max-height: 25px;
	}

	#headerContainer {
		font-size: 13px;
		line-height: 13px;
		margin: 0 0 5px;
		padding: 16px 24px;
	}

	#menuHeader>div {
		margin-top: -5px;
	}

	#topButtonContainer {
		top: 65px;
	}

	.parentContainer {
		height: calc(100% - 102px);
		/*92px is the header height*/
	}

	.tabsContainer {
		height: 30px;
	}

	.tabsMenuItem {
		height: 30px;
	}

	.tabsMenuItemActive {
		border-bottom: 1px solid var(--purple);
		height: 28px;
	}

	.tabsItem {
		padding: 5px 5px 10px;
	}

	.tabsItemText {
		padding: 3px 5px 7px;
	}

	::-webkit-scrollbar {
		height: 4px;
		width: 4px;
	}

	.boldText {
		font-size: 9px;
		line-height: 11px;
	}

	.boldPurpleText,
	.purpleText {
		font-size: 9px;
		line-height: 11px;
	}

	.button {
		font-size: 8px;
		line-height: 8px;
		padding: 4px 5px;
	}

	.largeButton {
		font-size: 9px;
		line-height: 9px;
		margin: 5px 0;
		padding: 5px 10px;
	}

	.giantButton {
		font-size: 9px;
		line-height: 10px;
		margin: 3px 0;
		padding: 4px 7px;
	}

	#productMatchContainer .fieldsetContainer,
	#productMatchContainer .leftColumn {
		width: min(40vw, 500px);
	}

	.switch {
		height: 20px;
		width: 180px;
	}

	.slider:before {
		height: 12px;
		width: 20px;
	}

	input:checked+.slider:before {
		-webkit-transform: translateX(152px);
		-ms-transform: translateX(152px);
		transform: translateX(152px);
	}

	.on {
		left: 10px;
	}

	.off {
		right: 10px;
	}

	.on,
	.off {
		font-size: 6px;
	}

	.smallSwitch {
		height: 20px;
		width: 100px;
	}

	.smallSwitch .slider:before {
		height: 12px;
		width: 20px;
	}

	.smallSwitch input:checked+.slider:before {
		-webkit-transform: translateX(70px);
		-ms-transform: translateX(70px);
		transform: translateX(70px);
	}

	.mediumSwitch {
		height: 20px;
		width: 150px;
	}

	.mediumSwitch .slider:before {
		height: 12px;
		width: 20px;
	}

	.mediumSwitch input:checked+.slider:before {
		-webkit-transform: translateX(122px);
		-ms-transform: translateX(122px);
		transform: translateX(122px);
	}
}

@media screen and (max-height: 700px) {
	.menuLogo {
		margin: 0 5px;
		padding: 12px 11px;
	}

	.brandImage {
		max-height: 20px;
	}

	#headerContainer {
		font-size: 13px;
		line-height: 13px;
		margin: 0 0 3px;
		padding: 15px 23px;
	}

	#topButtonContainer {
		top: 55px;
	}

	.parentContainer {
		height: calc(100% - 82px);
		/*92px is the header height*/
	}

	.dataTable th {
		font-size: 7px;
		padding: 4px 3px;
	}

	.dataTable td {
		font-size: 8px;
		line-height: 14px;
		padding: 5px 3px;
	}

	.dataTable .smallColumnText,
	.dataTable .smallColumnText a {
		font-size: 7px;
		line-height: 9px;
	}

	.greyText,
	.redText {
		font-size: 7px;
		line-height: 7px;
	}

	.greyCapsText {
		font-size: 7px;
	}

	p,
	span {
		font-size: 9px;
		line-height: 14px;
	}

	.blackPrimaryButton {
		border-radius: 5px;
		-moz-border-radius: 5px;
		-webkit-border-radius: 5px;
		font-size: 8px;
		margin: 2px;
		padding: 4px 3px 5px 3px;
	}

	.textInput,
	.dataSelector {
		font-size: 8px;
		line-height: 9px;
		padding: 3px;
	}

	#productsTable .productImage {
		max-width: 30px;
	}

	.productImageUpload {
		margin: 5px;
		width: 20px;
	}
}

@media screen and (max-height: 600px) {
	.menuLogo {
		margin: 0 5px;
		padding: 10px 5px;
	}

	#headerContainer {
		font-size: 13px;
		line-height: 13px;
		margin: 0 0 3px;
		padding: 13px 20px;
	}

	#menuHeader>div {
		margin-top: -10px;
	}

	#topButtonContainer {
		top: 55px;
	}

	.parentContainer {
		height: calc(100% - 72px);
		/*92px is the header height*/
	}
}

@media screen and (max-height: 500px) {
	#menuSidebar {
		min-height: 360px;
	}

	#headerContainer {
		font-size: 13px;
		line-height: 13px;
		margin: 0 0 3px;
		padding: 12px 18px;
	}

	#topButtonContainer {
		top: 45px;
	}

	.parentContainer {
		height: calc(100% - 62px);
		/*92px is the header height*/
	}
}