/* General Declarations START */

:root {
	--color-primary: #2f7cf7; /* Blue */
	--color-secondary: #fff; /* White */
	--color-tertiary: #2e2e2e; /* Black */
	--color-background: #e0e0e0; /* Grey */
	--color-darkmode: #292929;
}

body {
	background: var(--color-background);
}

h3 {
	margin: 0px;
}

p {
	margin: 0px;
}

a {
	transition: 0.2s;
	text-decoration: none !important;
}

a[disabled] {
	pointer-events: none;
	opacity: 0.6;
}

ul {
	list-style: none;
	padding: 0px;
}

a:hover {
	border: none;
	outline: none;
}

button {
	border: none;
	outline: none;
	margin: 0px;
}

button:focus {
	outline: none;
}

.bg-positive {
	background: #3aad34;
}

.bg-warning {
	background: #f2a60f;
}

.bg-negative {
	background: #ad3434;
}

.bg-negative-flash {
	background: #fc2403;
}

.hide {
	display: none !important;
}

.show {
	display: block;
}

.content-wrapper {
	display: none;
}

.mt-10 {
	margin-top: 10px;
}

.mr-10 {
	margin-right: 10px;
}

.mb-10 {
	margin-bottom: 10px;
}

.ml-10 {
	margin-left: 10px;
}

.mt-20 {
	margin-top: 20px;
}

.mr-20 {
	margin-right: 20px;
}

.mb-20 {
	margin-bottom: 20px;
}

.ml-20 {
	margin-left: 20px;
}

.pt-10 {
	padding-top: 10px;
}

.pr-10 {
	padding-top: 10px;
}

.pb-10 {
	padding-bottom: 10px;
}

.pl-10 {
	padding-left: 10px;
}

.pt-20 {
	padding-top: 20px;
}

.pr-20 {
	padding-top: 20px;
}

.pb-20 {
	padding-bottom: 20px;
}

.pl-20 {
	padding-left: 20px;
}

.margin-center {
	margin-left: auto;
	margin-right: auto;
}

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

.th-clickable {
	cursor: pointer;
}
.tr-clickable {
	cursor: pointer;
}

.pickr > button {
	border: 1px solid var(--color-background);
}

/* General Declarations END */

/* Form Elements START */

.form-label {
}

/* Form Element - Buttons START */

tr > td > .btn, tr > th > .btn {
	margin: 0 auto;
}

.btn {
	display: flex;
	align-items: center;
	justify-content: center;
	background: var(--color-primary);
	color: var(--color-secondary);
	margin-bottom: 20px;
	max-width: 100%;
}

.btn:focus {
  box-shadow: none;
}

.btn:hover {
	opacity: 0.6;
}

.btn-x-large {
	padding: 12px;
	height: 70px;
	width: 220px;
}

.btn-large {
	padding: 12px;
	height: 50px;
	width: 180px;
}

.btn-small {
	height: 40px;
	width: 110px;
}

.btn-td-small {
	display: flex !important;
	height: 30px;
	width: 110px;
}

.btn-centered {
	display: block !important;
	margin-left: auto;
	margin-right: auto;
}

.btn-no-margin {
	margin: 0px !important;
}

.btn-primary {
	background: var(--color-primary);
	color: var(--color-secondary);
	border: 0px;
}

.btn-primary:hover {
	background: var(--color-primary);
	color: var(--color-secondary);
	border: 0px;
}

.btn-positive {
	background: #3aad34;
	color: var(--color-secondary);
	border: 0px;
}

.btn-positive:hover {
	background: #4feb46;
	color: var(--color-secondary);
	border: 0px;
}

.btn-negative {
	background: #ad3434;
	color: var(--color-secondary);
	border: 0px;
}

.btn-negative:hover {
	background: #e04343;
	color: var(--color-secondary);
	border: 0px;
}

.btn-secondary {
	background: #2ba2fc;
	color: var(--color-secondary);
	border: 0px;
}

.btn-secondary:hover {
	background: #3c98de;
	color: var(--color-secondary);
	border: 0px;
}

.btn-tertiary {
	background: var(--color-tertiary);
	color: var(--color-secondary);
	border: 0px;
}

.btn-tertiary:hover {
	background: var(--color-tertiary);
	color: var(--color-secondary);
	border: 0px;
}

/* Form Element - Buttons END */

/* Form Element - Table START */

.table-container {
	/*resize: both;*/
	overflow: auto;
	margin-bottom: 20px;
	max-width: 100%;
}

.table-main {
	border: 1px solid var(--color-background);
	width: 100%;
	height: 100%;
}

/*
.table-main > thead {
	border-bottom: 1px solid var(--color-background);
}
*/

.table-main > thead > tr > th {
	text-align: center;
	min-width: 100px;
	padding: 5px;
	background: #f2f2f2;
	border-bottom: 1px solid var(--color-background);
	font-size: 14px;
}

.table-main > thead > tr > th:not(:last-child) {
	border-right: 1px solid var(--color-background);
}

.table-main > tbody > tr > th {
	text-align: center;
	min-width: 100px;
	padding: 5px;
	border-right: 1px solid var(--color-background);
	background: #f2f2f2;
	font-size: 14px;
}

.table-main > tbody > tr:hover > th {
	border-right: 1px solid var(--color-secondary) !important;
}

.table-main > tbody > tr:not(:last-child) {
	border-bottom: 1px solid var(--color-background);
}

.table-main > tbody > tr:hover {
	background: var(--color-background);
}

.table-main > tbody > tr:hover > td > .td-input {
	background: var(--color-background) !important;
}

.table-main > tbody > tr:hover > td:not(:last-child) {
	border-right: 1px solid var(--color-secondary) !important;
}

.table-main > tbody > tr > td {
	text-align: center;
	/*padding: 5px;*/
}

.table-main > tbody > tr > td:not(:last-child) {
	border-right: 1px solid var(--color-background);
}

.table-actions {
	/*
	min-width: 200px;
	max-width: 200px;
	*/
}

.table-actions > span {
	display: inline-block;
}

.table-actions > span > a {
	display: inline-block;
	margin-bottom: 0px;
	color: var(--color-secondary);
}

.table-actions > span:not(:last-child) > a {
	margin-right: 0px;
}

/*
.table-actions > span > a > i {
	margin-top: 5px;
}
*/

.td-input {
	height: 100%;
	width: 100%;
	border: 0px;
	text-align: center;
}

.status-text {
	display: block;
	background: #e6e6e6;
	width: 100px;
	margin: 5px auto 5px auto;
	border-radius: 10px;
}

.status-positive {
	background: #3aad34;
	color: var(--color-secondary);
}

.status-negative {
	background: #ad3434;
	color: var(--color-secondary);
}

/* Form Element - Table END */

/* Form Elements END */

/* Header START */

.header-main {
	display: flex;
	height: 60px;
	width: 100%;
	background: var(--color-darkmode);
	-webkit-box-shadow: 1px 0px 7px 0px rgba(0,0,0,0.05);
	-moz-box-shadow: 1px 0px 7px 0px rgba(0,0,0,0.05);
	box-shadow: 1px 0px 7px 0px rgba(0,0,0,0.05);
	border-bottom: 1px solid var(--color-secondary);
}

.header-logo-container {
	position: relative;
	height: 100%;
	width: 200px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-right: 1px solid var(--color-secondary);
}

.header-logo-container > h3 {
	color: var(--color-secondary);
	cursor: default;
	margin: 0px;
	margin-right: 60px;
}

.header-logo-container > h3 > span {
	color: var(--color-primary);
}

.header-content-container {
	display: flex;
	height: 100%;
	width: calc(100vw - 200px);
}

.header-alarm-container {
	display: flex;
	height: 100%;
	min-width: 120px;
	font-size: 20px;
	justify-content: center;
	align-items: center;
	color: var(--color-secondary);
}

.header-status-container {
	display: flex;
	height: 100%;
	min-width: 140px;
	font-size: 20px;
	justify-content: center;
	align-items: center;
	color: var(--color-secondary);
}

.header-end {
	height: 100%;
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: flex-end;
}

.header-end > p {
	margin-bottom: 0px;
}

.user-dropdown-container {
	position: relative;
}

.user-dropdown-btn {
	color: var(--color-secondary);
	background: var(--color-darkmode);
	margin-right: 10px;
	text-align: left;
	padding-left: 20px;
	padding-right: 20px;
}

.user-dropdown-btn > h3 {
	font-size: 18px;
	font-weight: 400;
}

.user-dropdown-btn > h3 > i {
	text-align: center;
	width: 30px;
	margin-right: 5px;
}

.user-dropdown-btn > p {
	font-size: 14px;
	font-weight: 700;
}

.user-dropdown {
	position: absolute;
	bottom: -100;
	left: 0;
	padding: 0px;
	margin: 0px;
	width: calc(100% - 15px);
	background: var(--color-darkmode);
	border-bottom-left-radius: 4px;
	border-bottom-right-radius: 4px;
	-webkit-box-shadow: 0px 5px 5px 0px rgba(0,0,0,0.25);
	-moz-box-shadow: 0px 5px 5px 0px rgba(0,0,0,0.25);
	box-shadow: 0px 5px 5px 0px rgba(0,0,0,0.25);
	z-index: 100;
}

.user-dropdown > ul {
	margin-top: 10px;
	margin-bottom: 0px;
}

.user-dropdown > ul > li > a {
	display: block;
	padding: 10px 20px 10px 20px;
	text-align: center;
	color: var(--color-secondary);
	border-top: 1px solid var(--color-background);
}

.user-dropdown > ul > li > a > i {
	margin-right: 10px;
}

.user-dropdown > ul > li > a:hover {
	color: var(--color-secondary);
	background: var(--color-primary);
}

/* Header END */

/*
.header-btn {
	display: block;
	height: 40px;
	width: 200px;
	background: var(--color-primary);
	color: var(--color-secondary);
	border: 0px;
	border-radius: 4px;
}

.header-btn:hover {
	opacity: 0.6;
	transition: 0.2s;
}
*/

/* Side Nav START */

.side-nav {
	display: inline-block;
	vertical-align: top;
	min-height: calc(100vh - 60px);
	width: 200px;
	min-width: 200px;
	background: var(--color-darkmode);
	border-right: 1px solid var(--color-secondary);
	-webkit-box-shadow: 1px 0px 7px 0px rgba(0,0,0,0.05);
	-moz-box-shadow: 1px 0px 7px 0px rgba(0,0,0,0.05);
	box-shadow: 1px 0px 7px 0px rgba(0,0,0,0.05);
}

.nav-collapse {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	background: var(--color-primary);
	padding: 10px;
	width: 60px;
	height: 100%;
	position: absolute;
	right: 0;
	top: 0;
}

.nav-collapse-bar {
	height: 4px;
	width: 30px;
	background: var(--color-secondary);
	margin: 3px 0px 3px 0px;
}

.nav-list {
	list-style: none;
	padding: 0px;
	margin: 0px;
}

.nav-list-item {
	border-bottom: 1px solid var(--color-background);
}

.nav-list-item > a {
	display: flex;
	position: relative;
	align-items: center;
	text-decoration: none;
	color: var(--color-tertiary);
	background: var(--color-secondary);
	width: 100%;
	padding: 10px 10px 10px 10px;
	font-size: 18px;
	transition: 0.2s;
}

.nav-list-item > a:hover {
	opacity: 0.8;
	/*background: var(--color-background);*/
}

.nav-list-item > a > i {
	text-align: center;
	width: 30px;
	margin-right: 5px;
}

.nav-chevron {
	margin-left: auto;
}

.nav-list-dropdown {
	padding: 0px;
	list-style: none;
}

.nav-list-dropdown-item {
	display: flex;
	justify-content: flex-start;
	align-items: center;
}

.nav-list-dropdown-item > a {
	background: #f2f2f2;
	display: block;
	width: 100%;
	padding: 10px 10px 10px 25px;
	color: var(--color-tertiary);
}

.nav-list-dropdown-item > a:hover {
	opacity: 0.8;
}

.nav-list-dropdown-item:not(:last-child) > a {
	border-bottom: 1px solid var(--color-secondary);
}

.nav-active {
	color: var(--color-secondary) !important;
	background: var(--color-primary) !important;
}

.nav-child-active {
	color: var(--color-secondary) !important;
	background: #2ba2fc !important;
}

/* Side Nav END */

/* Main Content START */

.main-content {
	flex: auto;
	max-width: calc(100% - 240px);
	margin: 20px;
	background: var(--color-secondary);
}

.main-content-centered {
	display: flex;
	justify-content: center;
	align-items: center;
	flex: auto;
	max-width: calc(100% - 240px);
	margin: 20px;
	background: var(--color-secondary);
}

.main-content-fullscreen {
	max-width: calc(100% - 40px) !important;
}

.content-container {
	width: 100%;
	padding: 20px;
}

.content-header {
	width: 100%;
}

.header-nav {
	padding: 0px 0px 40px 0px;
}

.content-header-nav {
}

.content-header-nav > ul > li {
	float: left;
}

.content-header-nav > ul > li > a {
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--color-secondary);
	height: 40px;
	min-width: 110px;
	padding-left: 10px;
	padding-right: 10px;
	background: var(--color-tertiary);
	border-top-left-radius: 4px;
	border-top-right-radius: 4px;
	transition: 0.2s;
}

.content-header-nav > ul > li > a:hover {
	opacity: 0.6;
}

.content-header-nav > ul > li:not(:last-child) > a {
	margin-right: 2px;
}

.content-sub-row > div {
	padding-top: 5px;
	padding-bottom: 5px;
}

.content-sub-row > div:not(:last-child) {
	/*border-right: 1px solid var(--color-background);*/
}

.content-sub-container {
	padding: 20px;
	/*background: #2ba2fc;*/
	border: 1px solid var(--color-background);
	border-radius: 4px;
	height: 100%;
	color: var(--color-tertiary);
}

/* Main Content END */

/* Tabs START */

.tab {
	display: none;
}

.tab-show {
	display: block;
}

.tab-active {
	background: var(--color-primary) !important;
}

.tab-positive {
	background: #3aad34 !important;
}

/* Tabs END */

/* Bargraph START */

.bargraph-container {
	display: flex;
	flex-wrap: nowrap;
	position: relative;
	border-left: 1px solid var(--color-tertiary);
	border-bottom: 1px solid var(--color-tertiary);
	height: 500px;
	margin-top: 20px;
	margin-left: 40px;
}

.bargraph-y {
	content: '';
	position: absolute;
	left: -50px;
}

.bargraph-y > li {
	text-align: right;
}

.bargraph-y > li > p {
	position: relative;
	margin: 0px;
	bottom: -5px;
}

.bargraph-y > li:after {
	content: '';
	display: block;
	position: absolute;
	margin-top: -5px;
	margin-left: 30px;
	height: 1px;
	width: 19px;
	background: var(--color-background);
}

.bar {
	position: relative;
	top: 20px;
	display: inline-block;
	height: calc(100% - 20px);
	width: 80px;
	max-width: 80px;
	background: var(--color-background);
	margin-left: 20px;
	margin-right: 20px;
}

.bar-box {
	display: flex;
	justify-content: center;
	align-items: center;
	position: absolute;
	top: -50px;
	height: 40px;
	width: 100%;
	background: #f2f2f2;
	border-radius: 4px;
}

.bar-fill {
	position: absolute;
	bottom: 0px;
	width: 80px;
	max-width: 80px;
	background: var(--color-primary);
	transform: rotate(180deg);
}

.bar > p {
	display: flex;
	justify-content: center;
	align-items: center;
	position: absolute;
	bottom: -60px;
	transform: rotate(-90deg);
	max-width: 80px;
	/*
	position: absolute;
	bottom: -60px;
	left: -30px;
	width: 7.5vw;
	text-align: right;
	*/
}

/* Bargraph END */

/* Small Mini Linegraph START */

.small-mini-linegraph-container {
	position: relative;
	width: 100px;
	height: 278px;
}

.small-mini-linegraph-y {
	text-align: right;
	border-right: 1px solid var(--color-tertiary);
	width: 30px;
	padding-right: 5px;
}

.small-mini-linegraph-y > li {
	position: relative;
	margin-top: -5px;
	bottom: -7.5px;
	font-size: 12px;
}

.small-mini-linegraph-y > li:after {
	content: '';
	position: absolute;
	display: block;
	bottom: 7.5px;
	left: calc(100% + 5px);
	width: 70px;
	border-bottom: 1px solid var(--color-tertiary);
}

.small-line {
	position: absolute;
	margin-top: -16px;
	height: 1px;
	width: 10px;
}

.small-line > div {
	position: absolute;
	content: '';
	bottom: 20%;
	display: block;
	background: red;
	height: 1px;
	width: 70px;
	margin-left: 30px;
}

.small-line-bar {
	position: absolute;
	width: 70px;
	bottom: 0;
	left: 30px;
	background: var(--color-primary)
}

/* Small Mini Linegraph END */



/* Mini Linegraph START */

.mini-linegraph-container {
	position: relative;
	width: 140px;
	height: 504px;
}

.mini-linegraph-y {
	text-align: right;
	border-right: 1px solid var(--color-tertiary);
	width: 30px;
	padding-right: 5px;
}

.mini-linegraph-y > li {
	position: relative;
	margin-top: 0px;
	bottom: -10px;
}

.mini-linegraph-y > li:after {
	content: '';
	position: absolute;
	display: block;
	bottom: 10px;
	left: calc(100% + 5px);
	width: 110px;
	border-bottom: 1px solid var(--color-tertiary);
}

.line {
	position: absolute;
	margin-top: -16px;
	height: 1px;
	width: 10px;
}

.line > div {
	position: absolute;
	content: '';
	bottom: 20%;
	display: block;
	background: red;
	height: 1px;
	width: 110px;
	margin-left: 30px;
}

.line-bar {
	position: absolute;
	width: 110px;
	bottom: 0;
	left: 30px;
	background: var(--color-primary)
}

/* Mini Linegraph END */

/* Modal START */

.modal-custom {
	position: fixed;
	content: '';
	z-index: 999999;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
  	background-color: rgba(0,0,0,0.4);
}

.modal-custom-container {
  position: fixed;
  z-index: 1000;
  left: 20%;
  top: 25%;
  width: 60%;
  height: 50%;
  overflow: auto;
  background: var(--color-secondary);
  border-radius: 4px;
}

.modal-custom-header {
	display: flex;
	align-items: center;
	padding: 20px;
	border-bottom: 1px solid var(--color-background);
}

.modal-custom-header > a {
	margin-left: auto;
	font-size: 36px;
	color: var(--color-tertiary);
}

.modal-custom-content {
	/*height: calc(50vh - 95px);*/
	min-height: 80%;
	padding: 20px;
}

.modal-custom-content > form {
	width: 100%;
	padding: 20px;
}

.modal-custom-content > form > .row {
	width: 100%;
}

.modal-custom-content > form > .form-group {
	width: 100%;
}

/* Modal END */

/* On-Screen Keyboard START */

.keyboard-container {
	position: fixed;
	bottom: 0;
	left: 0;
	width: 100vw;
	z-index: 99999;
}

.keyboard-content-container {
	background: #525252;
	height: 80px;
	width: 100%;
	display: flex;
	flex-wrap: wrap;
}

.break {
	flex-basis: 100%;
	height: 0;
}

.keyboard-cancel {
	background: #db3627;
	color: #fff;
	font-size: 18px;
	border: 0px;
	height: 80px;
	width: 20%;
	border-bottom: 1px solid #6b6b6b;
	border-right: 1px solid #6b6b6b;
}

.keyboard-enter {
	display: block;
	margin-left: auto;
	background: #1bb348;
	color: #fff;
	font-size: 18px;
	border: 0px;
	height: 80px;
	width: 20%;
	border-left: 1px solid #6b6b6b;
	border-bottom: 1px solid #6b6b6b;
}

.keyboard-newText-container {
	display: flex;
	justify-content: center;
	align-items: center;
	background: #525252;
	height: 80px;
	width: 60%;
}

.keyboard-newText {
	margin: 0px;
	font-size: 20px;
	color: #fff;
}

.keyboard-btns-container {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	height: 400px;
	width: 100%;
}

.keyboard-hide {
	display: none;
}

.keyboard-btns-row {
	width: 100%;
	height: 25%;
	display: flex;
}

.keyboard-btn {
	height: 100%;
	width: 10%;
	background: #383838;
	color: #fff;
	border: 0px;
	font-size: 24px;
	text-transform: lowercase;
}

.keyboard-btn:focus {
	outline: none;
}

.keyboard-btn:active {
	background: #525252;
	outline: none;
}

.keyboard-btns-row > .keyboard-btn:not(:last-child) {
	border-right: 1px solid #6b6b6b;
}

.keyboard-btns-row:not(:last-child) > .keyboard-btn {
	border-bottom: 1px solid #6b6b6b;
}

.keyboard-upper {
	text-transform: uppercase;
}

/* On-Screen Keyboard END */

/* VPMS Media Queries */

@media only screen and (max-width: 1380px) {
	.header-alarm-container {
		min-width: 90px;
	}

	.header-status-container {
		min-width: 120px;
	}

	.header-status-text {
		font-size: 16px;
	}

	#header-trim-container {
		min-width: 105px !important;
		align-items: flex-start !important;
		flex-direction: column;
	}

	#header-list-container {
		min-width: 105px !important;
		align-items: flex-start !important;
		flex-direction: column;
	}

	#header-draft-container {
		min-width: 105px !important;
		align-items: flex-start !important;
		flex-direction: column;
	}
}

@media only screen and (max-width: 1080px) {
	.header-alarm-container {
		min-width: 90px;
	}

	.header-status-container {
		min-width: 120px;
	}

	.header-status-text {
		font-size: 16px;
	}

	#header-trim-container {
		min-width: 105px !important;
		align-items: flex-start !important;
		flex-direction: column;
	}

	#header-list-container {
		min-width: 105px !important;
		align-items: flex-start !important;
		flex-direction: column;
	}

	#header-draft-container {
		display: none !important;
	}
}

@media only screen and (max-width: 960px) {
	/* Header START */

	.header-main {
		height: 41px;
	}

	.header-content-container {
		width: calc(100vw - 125px);
	}

	.header-logo-container {
		width: 125px;
	}

	.header-logo-container > h3 {
		font-size: 20px;
		margin-right: 40px;
	}

	.nav-collapse {
		width: 40px;
	}

	.nav-collapse-bar {
		width: 20px;
		height: 2px;
		margin: 2px 0px 2px 0px;
	}

	.header-alarm-container {
		min-width: 90px;
	}

	.header-status-container {
		min-width: 120px;
	}

	.header-status-text {
		font-size: 16px;
	}

	#header-trim-container {
		min-width: 170px !important;
		flex-direction: row;
	}

	#header-list-container {
		min-width: 170px !important;
		flex-direction: row;
	}

	#header-draft-container {
		display: none !important;
	}

	.user-dropdown-btn {
		color: var(--color-secondary);
		background: var(--color-darkmode);
		margin-right: 10px;
		text-align: left;
		padding-left: 5px;
		padding-right: 5px;
	}

	.user-dropdown-btn > h3 {
		font-size: 0px;
		text-align: center;
		min-width: 80px !important;
	}

	.user-dropdown-btn > h3 > i {
		text-align: center;
		width: 30px;
		font-size: 24px;
	}

	.user-dropdown > ul > li > a {
		font-size: 0px;
		text-align: center;
	}

	.user-dropdown > ul > li > a > i {
		text-align: center;
		width: 30px;
		font-size: 24px;
		margin-left: 7.5px;
	}

	.user-dropdown {
		width: 80px;
	}

	/* Header END */

	/* Side Nav START */

	.side-nav {
		min-width: 125px;
		width: 125px;
		min-height: calc(100vh - 41px);
	}

	.nav-list-item > a {
		font-size: 0px;
	}

	.nav-list-item > a > i:first-child {
		font-size: 24px;
		width: 100%;
	}

	.nav-chevron {
		font-size: 16px !important;
		display: block;
		position: absolute;
		top: calc(50% - 8px);
		right: 0px;
	}

	.nav-list-dropdown-item > a {
		font-size: 13px;
		padding: 10px 5px 10px 5px;
	}

	/* Side Nav END */

	/* Content Wrapper START */

	.content-wrapper {
	}

	.main-content {
		max-width: calc(100% - 125px);
		margin: 0px;
		min-height: calc(100vh - 41px);
		overflow: hidden;
	}

	.main-content-centered {
		max-width: calc(100% - 125px);
		margin: 0px;
		min-height: calc(100vh - 41px);
		overflow: hidden;
	}

	.main-content-fullscreen {
		max-width: 100% !important;
	}

	.content-container {
		padding: 10px 10px 0px 10px;
	}

	.content-header {
		margin: 0px;
		margin-top: -10px;
	}

	/* Content Wrapper END */

	/* Draft START */

	.draft-container {
		height: 400px !important;
		width: calc(100% - 200px) !important;
		margin-left: 0px !important;
	}

	.draft-container:after {
	    border-top: 200px solid transparent !important;
	    border-left: 200px solid var(--color-primary) !important;
	    border-bottom: 200px solid transparent !important;
	}

	.draft-container-barge {
		height: 400px !important;
		width: calc(100% - 100px) !important;
		margin-left: 0px !important;
	}

	.draft-container-barge:after {
		height: 400px !important;
		width: 200px !important;
		left: 80% !important;
	}

	.view-draft {
		display: none !important;
		width: 300px !important;
	}

	.view-draft-vpm {
		display: block !important;
	}

	.port {
		width: 75px !important;
	}

	.aft-port {
		width: 75px !important;
	}

	.fore-port {
		width: 75px !important;
	}

	.aft {
		width: 75px !important;
	}

	.fore {
		width: 75px !important;
	}

	.starboard {
		width: 75px !important;
	}

	.aft-starboard {
		width: 75px !important;
	}

	.fore-starboard {
		width: 75px !important;
	}

	/* Draft END */

	/* Cargo Types START */

	.cargotype-col:not(:nth-child(2)) {
		padding-bottom: 30px;
		margin-bottom: 30px;
		border-right: 0px !important;
		border-bottom: 1px solid var(--color-background);
	}

	/* Cargo Types END */

	.bargraph-container {
		height: 250px;
		margin-top: 20px;
		margin-left: 40px;
	}

	.bargraph-y {
		content: '';
		position: absolute;
		left: -50px;
	}

	.bargraph-y > li {
		text-align: right;
		margin-top: -5.91px;
	}

	.bargraph-y > li > p {
		position: relative;
		margin: 0px;
		bottom: -5px;
		font-size: 12px;
	}

	.bargraph-y > li:after {
		content: '';
		display: block;
		position: absolute;
		margin-top: -5px;
		margin-left: 30px;
		height: 1px;
		width: 19px;
		background: #000;
	}

	.bar {
		position: relative;
		top: 7px;
		display: inline-block;
		height: calc(100% - 7px);
		width: 80px;
		max-width: 80px;
		background: var(--color-background);
		margin-left: 20px;
		margin-right: 20px;
	}

	.bar-box {
		display: flex;
		justify-content: center;
		align-items: center;
		position: absolute;
		top: -50px;
		height: 40px;
		width: 100%;
		background: #f2f2f2;
		border-radius: 4px;
	}

	.bar-fill {
		position: absolute;
		bottom: 0px;
		width: 80px;
		max-width: 80px;
		background: var(--color-primary);
		transform: rotate(180deg);
	}

	.bar > p {
		display: flex;
		justify-content: center;
		align-items: center;
		position: absolute;
		bottom: -50px;
		transform: rotate(-90deg);
		max-width: 60px;
		/*
		position: absolute;
		bottom: -60px;
		left: -30px;
		width: 7.5vw;
		text-align: right;
		*/
	}
}

@media only screen and (max-width: 770px) {
	#header-trim-container {
		display: none !important;
	}

	#header-list-container {
		display: none !important;
	}
}