/*
*	https://material.io/color/#!/?view.left=1&view.right=1&primary.color=005ABE&secondary.color=f1f1f1
*/
/*
$backgroundColor: rgba(241, 241, 241, 1);
$secondaryColor: rgba(241, 241, 241, 1);
$secondaryLightColor: rgba(255, 255, 255, 1);
$secondaryDarkColor: rgba(190, 190, 190, 1);
*/
/*$buttonShadow: 0px 0px 2px 0 rgba(0,0,0,0.4);
$buttonShadowHover: 2px 2px 4px 0 rgba(0,0,0,0.4);*/
/* #E4EEF3 */
/* $defaultShadow: 0px 0px 4px 0 rgba(0,0,0,0.4); */
/*
*****************
*	OLD COLORS	*
*****************
	Header color: #383A3B
					rgba(56, 58, 59, 1)
	Clean blue: #0EB3FF
					rgba(14, 179, 255, 1)
	Almost white: #F1F1F1
					rgba(241, 241, 241, 1)
	Almost black: #1F1F1F
					rgba(31, 31, 31, 1)
	Light gray: #DEDEDE
					rgba(222, 222, 222, 1)
	Gray: rgba(56, 58, 59, 0.4)									NOTE; Used in textbox thin underline
					#A7A7A8
	Darker Gray: rgba(145, 145, 145, 1)
					#919191
	Green: rgba(46, 204, 113, 1)
					#2ECC71
	Red: rgba(242, 38, 19, 1)
					#F22613
	Tag hover: inset 0px 0px 0px 100px rgba(255,255,255,0.25)		
	
	
	Shadow: 0px 0px 4px 0 rgba(0,0,0,0.4)
	Button shadow: 1px 1px 2px 0 rgba(0,0,0,0.4)
	Button shadow hover: 2px 2px 4px 0 rgba(0,0,0,0.4)
	DEFAULT Button background: rgba(255, 255, 255, 0)
	Disabled button color: rgba(56, 58, 59, 0.1)
	
	Disabled opacity: 0.45

	
	
	
	
*****************
*	NEW COLORS	*
*****************
	LightBlue	#ADBFD8
				rgba(71, 117, 179, 0.4) !important
				
*/
* {
  margin: 0;
  padding: 0;
  list-style-type: none;
  font-family: "Roboto", sans-serif;
}

*:focus {
  outline: none;
}

html {
  width: 100%;
  height: 100%;
}

body {
  /*background-color: #181B1C;*/
  /*background-color: #383a3b;*/
  background-color: #f1f1f1;
  /*min-width: 950px;*/
  font-weight: 400;
  font-size: 1em;
}

p {
  /* This seems a bit empty... */
}

h0, h1, h2, h3, h4 {
  font-weight: 400;
  letter-spacing: -2px;
  margin-bottom: 10px;
}

h0 {
  font-size: 5em !important;
}

h1 {
  font-size: 3.052em !important;
}

h2 {
  font-size: 2.441em !important;
}

h3 {
  font-size: 1.953em !important;
}

h4 {
  font-size: 1.563em !important;
}

.opacity_045 {
  opacity: 0.45;
}

.blur {
  -webkit-filter: blur(4px);
  -moz-filter: blur(4px);
  -ms-filter: blur(4px);
  -o-filter: blur(4px);
  filter: blur(4px);
  -webkit-transition: all 300ms ease-in-out;
  transition: all 300ms ease-in-out;
}

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

.nodrag {
  -webkit-user-drag: none;
  -moz-user-drag: none;
  -ms-user-drag: none;
  -o-user-drag: none;
  user-drag: none;
  pointer-events: none;
}

.noresize {
  resize: none;
}

.default {
  cursor: default;
}

.pointer {
  cursor: pointer;
}

.grab {
  cursor: -webkit-grab;
  cursor: grab;
}

.grab:active {
  cursor: -webkit-grabbing;
  cursor: grabbing;
}

.transition_120 {
  -webkit-transition: all 120ms ease-in-out;
  transition: all 120ms ease-in-out;
}

.transition_300 {
  -webkit-transition: all 300ms ease-in-out;
  transition: all 300ms ease-in-out;
}

.bold {
  font-weight: 600;
}

.light {
  font-weight: 100;
}

.italic {
  font-style: italic;
}

.underline {
  text-decoration: underline;
}

.t_white {
  color: #f1f1f1;
}

.t_blue {
  color: #005abe;
}

.centered {
  text-align: center;
}

.centertext {
  display: table-cell;
  vertical-align: middle;
}

.nobullets {
  list-style-type: none !important;
  padding: 0;
  margin: 0;
}

.shadow {
  /*
  -webkit-box-shadow: 0 0 5px 0 rgba(0,0,0,0.8);
  box-shadow: 0 0 5px 0 rgba(0,0,0,0.8);
  */
  -webkit-box-shadow: 0 0 4px 0px rgba(0, 0, 0, 0.25);
  box-shadow: 0 0 4px 0px rgba(0, 0, 0, 0.25);
}

.btn_shadow {
  -webkit-box-shadow: 0px 0px 2px 0 rgba(0, 0, 0, 0.25);
  box-shadow: 0px 0px 2px 0 rgba(0, 0, 0, 0.25);
}

.btn_shadow:hover {
  -webkit-box-shadow: 2px 2px 4px 0 rgba(0, 0, 0, 0.25);
  box-shadow: 2px 2px 4px 0 rgba(0, 0, 0, 0.25);
}

.btn_round {
  width: 40px;
  height: 40px;
  border-radius: 100%;
  margin: 6px;
}

.btn_square {
  width: 40px;
  height: 40px;
}

.btn_square.small {
  width: 22px;
  height: 22px;
}

.btn_round.big {
  width: 60px;
  height: 60px;
  border-radius: 100%;
  margin: 6px;
}

.btn_round.big span {
  padding: 0 !important;
}

button.btn_right {
  float: right;
}

button.btn_left {
  float: left;
}

button img.btn_icon {
  display: block;
  width: auto;
  height: 100%;
  max-height: 32px;
  padding: 4px 2px 4px 2px;
}

button {
  position: relative;
  border-radius: 2px;
  border: 0;
  font-size: 1em;
  overflow: hidden;
  background-color: rgba(255, 255, 255, 0);
  color: #005abe;
  cursor: pointer;
  /*color: $textDefaultColor;*/
}

button.fullwidth {
  width: 100% !important;
}

button, button:active, button:focus {
  outline: 0;
  border: 0;
  outline-style: none;
  -moz-outline-style: none;
}

button::-moz-focus-inner {
  border: 0;
}

button span {
  display: table;
  padding: 10px 16px;
  min-height: 20px;
  font-weight: 500;
  overflow: hidden;
  z-index: 9999;
  margin: auto;
  text-decoration: none;
}

button:disabled, button:disabled span {
  opacity: 0.45;
}

button.tinyborder {
  padding: 5px;
}

button.blue {
  background-color: #005abe !important;
  color: #f1f1f1 !important;
}

button.red {
  background-color: #d50000 !important;
  color: #f1f1f1 !important;
}

button.white {
  background-color: #f1f1f1 !important;
  color: #1f1f1f !important;
}

button.gray {
  background-color: #DEDEDE !important;
  color: #1f1f1f !important;
}

input, textarea {
  font-size: 1em;
  color: #1f1f1f;
}

select {
  display: block;
  width: 99%; /* calc(100% + 20px); */
  max-width: 404px;
  height: 25px;
  line-height: 20px;
  padding: 0px;
  background-color: transparent;
  border-top: hidden;
  border-left: hidden;
  border-right: hidden;
  border-bottom: 1px solid #919191;
  border-radius: 0px;
  font-size: 1em;
  color: #1f1f1f;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-image: url("../images/openArrow.svg");
  background-size: 20px;
  background-repeat: no-repeat;
  background-position: right;
}

input[type=text], input[type=email], input[type=number], input[type=url], input[type=password], textarea {
  position: relative;
  display: block;
  width: calc(100% - 4px);
  height: 20px;
  line-height: 20px;
  padding: 2px;
  background-color: transparent;
  border-top: hidden;
  border-left: hidden;
  border-right: hidden;
  border-bottom: 1px solid #919191;
  border-radius: 0px;
  margin-bottom: 1px;
  outline: none !important;
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
}

input[type=text]:hover:enabled, input[type=email]:hover:enabled, input[type=number]:hover:enabled, input[type=url]:hover:enabled, input[type=password]:hover:enabled, textarea:hover:enabled {
  border-bottom: 2px solid #919191;
  margin-bottom: 0px !important;
}

input[type=text]:disabled, input[type=email]:disabled, input[type=number]:disabled, input[type=url]:disabled, input[type=password]:disabled, textarea:disabled {
  border-bottom: 1px dashed #919191 !important;
}

input[type=text].noUnderline, input[type=email].noUnderline, input[type=number].noUnderline, input[type=url].noUnderline, input[type=password].noUnderline, textarea.noUnderline {
  border-bottom: 1px none transparent !important;
}

.inputContainer.withlabel.required label.inputLabel:after {
  content: " *";
  color: red;
}

.inputContainer {
  position: relative;
  display: table;
  width: 100%;
  max-width: 404px;
  height: auto;
  /*margin: 16px 0px 16px 0px;*/
  margin: 20px 0px 20px 0px;
  text-align: left;
}

table .inputContainer {
  margin: 10px 0px 10px 0px;
}

.inlineInputContainer {
  position: relative;
  display: table;
  width: 100%;
  max-width: 404px;
  height: auto;
  margin-top: 20px;
}

.inlineInputContainer > label.inputLabel {
  position: absolute;
  top: 0;
  left: 0;
  color: #A7A7A8;
}

.inputContainer.half {
  display: inline;
  float: left;
  max-width: calc((100% / 2) - 10px) !important;
}

.inlineInputContainer > .inputContainer {
  margin-left: 0px;
}

.inlineInputContainer > .inputContainer ~ .inputContainer {
  margin-left: 20px;
}

.inputContainer.third {
  display: inline;
  float: left;
  max-width: calc((100% / 3) - 15px) !important;
}

.inputContainer.fifth {
  display: inline;
  float: left;
  padding: 0px 5px 0px 5px;
  max-width: calc(23% - 15px) !important;
}

input[type=checkbox], input[type=radio] {
  position: absolute;
  display: none;
  opacity: 0;
  left: 0;
  top: 0;
  width: 0px;
  height: 0px;
}

input[type=checkbox] + label:before {
  content: " ";
  position: relative;
  display: inline-block;
  float: left;
  width: 18px;
  height: 18px;
  border: 2px solid #A7A7A8;
  border-radius: 3px;
  background: transparent;
  -webkit-transition: all 120ms ease-in-out;
  transition: all 120ms ease-in-out;
}

input[type=radio] + label:before {
  content: " ";
  position: relative;
  display: inline;
  float: left;
  width: 18px;
  height: 18px;
  border: 2px solid #A7A7A8;
  border-radius: 100%;
  background: transparent;
  -webkit-transition: all 120ms ease-in-out;
  transition: all 120ms ease-in-out;
}

input[type=checkbox]:checked + label:before, input[type=radio]:checked + label:before {
  border: 2px solid #005abe;
  background-color: #005abe;
}

input[type=checkbox]:disabled + label, input[type=radio]:disabled + label {
  cursor: default !important;
  opacity: 0.45 !important;
}

input[type=checkbox]:disabled + label:before, input[type=radio]:disabled + label:before {
  cursor: default;
}

input[type=checkbox] + label:after {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

input[type=checkbox]:checked + label:after {
  content: " ";
  position: absolute;
  width: 11px;
  height: 5px;
  left: 4px;
  top: 6px;
  border: 3px solid #f1f1f1;
  border-top: none;
  border-right: none;
  background: transparent;
}

input[type=checkbox] + label, input[type=radio] + label {
  position: relative;
  display: table;
  width: auto;
  line-height: 22px;
  word-break: break-all;
  word-wrap: break-word;
  text-indent: 8px;
  cursor: pointer !important;
}

input[type=checkbox].sliderCheckbox + label:before {
  content: " ";
  position: relative;
  display: inline-block;
  float: left;
  width: 38px !important;
  height: 14px !important;
  top: 4px;
  padding: 0px 2px 0px 2px;
  border: 0 none transparent !important;
  border-radius: 22px !important;
  background-color: #A7A7A8 !important;
  -webkit-transition: all 120ms ease-in-out;
  transition: all 120ms ease-in-out;
}

input[type=checkbox].sliderCheckbox:checked + label:before {
  background-color: #ADBFD8 !important;
}

input[type=checkbox].sliderCheckbox + label:after {
  content: " ";
  position: absolute;
  width: 22px !important;
  height: 22px !important;
  border-radius: 100% !important;
  top: 0;
  left: 0;
  border: 0 none transparent !important;
  background-color: #919191;
  -webkit-box-shadow: 0 0 2px 0 rgba(0, 0, 0, 0.25);
  box-shadow: 0 0 2px 0 rgba(0, 0, 0, 0.25);
  -webkit-transition: all 120ms ease-in-out;
  transition: all 120ms ease-in-out;
}

input[type=checkbox].sliderCheckbox:checked + label:after {
  left: 20px;
  background: #005abe;
}

.inputContainer.withlabel {
  margin-top: 25x !important;
  color: #A7A7A8;
}

.inputContainer.withlabel.withcharcount {
  margin-bottom: 22px !important;
}

.inputContainer .inputLabel[data-dynamic] {
  position: absolute;
  top: 3px;
  left: 2px;
  -webkit-transform: none;
  transform: none;
  -webkit-transform-origin: 0 0;
  transform-origin: 0 0;
  -webkit-transition: all 120ms ease-in-out;
  transition: all 120ms ease-in-out;
}

.inputContainer .inputLabel[data-dynamic="false"] {
  -webkit-transform: scale(0.8) translateX(0px) translateY(-120%);
  transform: scale(0.8) translateX(0px) translateY(-120%);
}

.inputContainer.withlabel.notempty .inputLabel[data-dynamic=""], .inputContainer.withlabel.hasfocus .inputLabel[data-dynamic=""], .inputContainer.withlabel.notempty .inputLabel[data-dynamic="true"], .inputContainer.withlabel.hasfocus .inputLabel[data-dynamic="true"] {
  /*font-size: 12px !important;
  */
  -webkit-transform: scale(0.8) translateX(0px) translateY(-120%);
  transform: scale(0.8) translateX(0px) translateY(-120%);
}

.inputContainer.withlabel.hasfocus .inputLabel[data-dynamic] {
  color: #005abe;
}

.inputContainer span.underline, .inputContainer span.underline {
  position: absolute;
  display: block;
  left: 0;
  right: 0;
  margin: -2px auto auto auto;
  width: 0%;
  height: 3px;
  background-color: #005abe;
  -webkit-transition: all 120ms ease-in-out;
  transition: all 120ms ease-in-out;
}

.inputContainer.hasfocus span.underline {
  width: 100% !important;
  height: 3px;
}

.inputCounter {
  position: absolute;
  display: table;
  right: 0px;
  font-size: 1em;
  font-weight: 100;
  -webkit-transform-origin: 100% 100%;
  transform-origin: 100% 100%;
  -webkit-transform: scale(0.8);
  transform: scale(0.8);
}

.inputContainer label.error, .inputContainer label.inputMessage {
  position: absolute;
  display: table;
  left: 0px;
  font-size: 1em;
  font-weight: 100;
  text-align: left;
  -webkit-transform-origin: 0% 100%;
  transform-origin: 0% 100%;
  -webkit-transform: scale(0.8);
  transform: scale(0.8);
}

.inputContainer.error, .inputContainer.error label.inputLabel, .inputContainer.error label.inputCounter {
  color: #f22613 !important;
}

.inputContainer.error span.underline {
  background-color: #f22613;
}

.tableContainer {
  position: relative;
  display: inline-block;
  float: left;
  max-width: 100%;
  width: auto;
  margin: 5px 0px 20px 0px;
  background-color: #FFFFFF;
  border-radius: 2px;
  overflow-x: auto;
}

.tableContainer + * {
  clear: both;
}

.clearfix:after {
  content: " ";
  display: block;
  clear: both;
}

table {
  position: relative;
  display: table;
  table-layout: fixed;
  width: auto;
  min-width: 250px;
  border-collapse: collapse;
  border-spacing: 0;
  word-wrap: break-word;
  background-color: #FFFFFF;
}

table.fullWidth {
  width: 100% !important;
}

table tr {
  border-bottom: 1px solid #DEDEDE;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}

table tr.selected {
  background-color: #F4F4F4;
}

table tr td, table tr th {
  padding: 8px 12px 8px 12px;
  text-align: right;
  position: relative;
}

table tr th {
  vertical-align: bottom !important;
  font-weight: 500;
  color: rgba(0, 0, 0, 0.54);
}

table tr th:first-child, table tr td:first-child {
  text-align: left;
}

table tr th.checkArea ~ th:nth-child(2), table tr td.checkArea ~ th:nth-child(2), table tr td.checkArea ~ td:nth-child(2) {
  text-align: left;
}

table tr th.checkArea, table tr td.checkArea {
  width: 23px;
  /* Width of the checkbox */
}

table tr th.sorting_asc:after {
  content: "";
  position: absolute;
  right: 3px;
  top: 0;
  bottom: 0px;
  margin: auto;
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-bottom: 5px solid #919191;
}

table tr th.sorting_desc:after {
  content: "";
  position: absolute;
  right: 3px;
  top: 0;
  bottom: 0px;
  margin: auto;
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 5px solid #919191;
}

.fixed-table {
	table-layout:fixed;
	margin:auto;
}
.fixed-table th, td {

}
.fixed-table thead, tfoot {
	display:table;
	width:100%;
}
.fixed-table tbody {
	max-height:600px;
	overflow:auto;
	overflow-x:hidden;
	display:block;
	width:100%;
}
.fixed-table tbody tr {
	display:table;
	width:100%;
	table-layout:fixed;
}

.tableContainer .tableBanner {
  background-color: #FFFFFF;
  display: block;
  border-bottom: 2px solid #DEDEDE;
  min-height: 40px;
  padding: 8px 5px 8px 5px;
  margin: 0px;
}

.tableContainer .tableBanner.right {
  text-align: right;
}

.collapseSearch .inputContainer {
  width: calc(100% - 40px);
  margin: 7px 0px;
}

.tableContainer .collapseSearch {
  position: relative;
  width: 40px;
  height: 40px;
  display: block;
  float: right;
  overflow: hidden;
  white-space: nowrap;
}

.tableContainer .collapseSearch.open {
  max-width: 350px;
  width: 200px;
  padding-right: 7px;
}

.tableContainer .collapseSearch .systemIcon, .tableContainer .collapseSearch .inputContainer {
  display: inline-block;
}

.tableContainer .collapseSearch .systemIcon {
  float: left;
}

.tag {
  position: relative;
  display: inline-block;
  min-width: 25px;
  width: auto;
  height: 18px;
  line-height: 18px;
  border-radius: 18px;
  padding: 2px 10px 2px 10px;
  font-size: 0.8em;
  text-align: center;
  background-color: #919191;
  color: #f1f1f1;
  cursor: default;
  white-space: nowrap;
}

.tag.big {
  min-width: 40px;
  width: auto;
  height: 20px;
  line-height: 20px;
  border-radius: 20px;
  padding: 4px 16px 4px 16px;
  font-size: 1em;
}

.tag.bigger {
  min-width: 40px;
  width: auto;
  height: 22px;
  line-height: 22px;
  border-radius: 20px;
  padding: 6px 22px 6px 22px;
  font-size: 1.25em;
}

.tag.deletable {
  padding: 2px 25px 2px 10px;
}

.tag.deletable label.deleteTag {
  position: absolute;
  display: inline;
  top: 0px;
  right: 0px;
  bottom: 0px;
  width: 22px;
  height: 22px;
  margin: auto 0px auto 0px;
  border-radius: 100%;
  overflow: hidden;
}

.tag.deletable label.deleteTag:before {
  content: "\d7";
  font-size: 1em;
  text-align: center;
  text-indent: 0px;
  line-height: 22px;
}

.tag:hover, .statusIcon:hover {
  -webkit-box-shadow: inset 0px 0px 0px 100px rgba(255, 255, 255, 0.25);
  box-shadow: inset 0px 0px 0px 100px rgba(255, 255, 255, 0.25);
}

/*
.tag.btn_shadow:hover
{
	-webkit-box-shadow:inset 0px 0px 0px 100px rgba(255,255,255,0.25), 2px 2px 4px 0 rgba(0,0,0,0.4);
	box-shadow:inset 0px 0px 0px 100px rgba(255,255,255,0.25), 2px 2px 4px 0 rgba(0,0,0,0.4);
}
*/
.tag.red {
  background-color: #f22613 !important;
}

.tag.blue {
  background-color: #005abe !important;
}

.tag.green {
  background-color: #2ecc71 !important;
}

.tag.disabled {
  opacity: 0.45;
  pointer-events: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.bannerNote {
  position: fixed;
  bottom: 0px;
  left: 0px;
  right: 0px;
  text-align: center;
  width: 100vw;
  min-height: 22px;
  height: auto;
  padding: 10px 0px;
  background-color: #005abe;
  color: #f1f1f1;
  z-index: 99999998;
  -webkit-animation-name: bannerNoteShow;
          animation-name: bannerNoteShow;
  -webkit-animation-duration: 120ms;
          animation-duration: 120ms;
  -webkit-animation-iteration-count: 1;
          animation-iteration-count: 1;
  -webkit-animation-delay: 0.3s;
          animation-delay: 0.3s;
  -webkit-animation-timing-function: ease-out;
          animation-timing-function: ease-out;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
}

@-webkit-keyframes bannerNoteShow {
  from {
    -webkit-transform: translateY(10px);
    transform: translateY(10px);
    opacity: 0;
  }
  to {
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}

@keyframes bannerNoteShow {
  from {
    -webkit-transform: translateY(10px);
    transform: translateY(10px);
    opacity: 0;
  }
  to {
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}
.bannerNote p {
  max-width: 1200px;
  display: inline-block;
  margin: auto 18px auto 0px;
}

.bannerNote p:before {
  content: " ";
  position: relative;
  display: inline-block;
  width: 18px;
  height: 18px;
  margin: 1px 5px;
  vertical-align: top;
  background-size: 18px;
  background-position: center;
  background-image: url("../images/info.svg");
}

.bannerNote.neutral p:before {
  background-image: none;
}

.bannerNote.success p:before {
  background-image: url("../images/checkmark.svg");
}

.bannerNote.error p:before {
  background-image: url("../images/error.svg");
}

.bannerNote.alert p:before {
  background-image: url("../images/questionmark.svg");
}

.bannerNote.neutral {
  background-color: #A7A7A8;
}

.bannerNote.success {
  background-color: #2ecc71;
}

.bannerNote.error {
  background-color: #f22613;
}

.bannerNote.alert {
  background-color: #efca4c;
}

/*
*********************************
*   CONTAINER ELEMENTS START    *
*********************************
*/
#container:before {
  content: "";
  clear: both;
}

#container {
  position: relative;
  display: block;
  top: 0px;
  max-width: 1325px;
  width: calc(100% - 20px);
  overflow-x: auto;
  margin: 60px auto 10px auto;
  padding: 10px;
}

#container.compressedContentView {
  margin: 60px auto auto 250px !important;
  max-width: calc(1200px);
  width: auto;
}

.tile {
  position: relative;
  display: inline-block;
  float: left;
  margin: 5px;
  padding: 10px;
  background-color: #FFFFFF;
  border-radius: 2px;
}

.tile.white {
  background-color: #FFFFFF;
}

.tile.wide {
  width: calc(100% - 30px);
  height: auto;
}

.tile.full {
  width: calc(100% - 30px);
  min-height: 500px;
  height: auto;
  padding: 10px;
}

.tile.half {
  width: calc((100% / 2) - (2 * 3 * 5px));
  height: auto;
}

.tile.third {
  width: calc((100% / 3) - (3 * 2 * 5px));
  height: auto;
}

.tile.twoThirds {
  width: calc(((100% / 3) * 2) - (3 * 2 * 5px));
  height: auto;
}

.tile.quarter {
  width: calc((100% / 4) - (2 * 3 * 5px));
  height: auto;
}

.tile.threequarters {
  width: calc(((100% / 4) * 3) - (2 * 3 * 5px));
  height: auto;
}

/*
#container.menuIconViewShowing .tile.third
{
    width: calc((100% / 2) - (2 * 3 * 5px)) !important;
}*/
@media all and (max-width: 800px) {
  .tile.third, .tile.twoThirds, .tile.half {
    width: calc(100% - 30px) !important;
  }

  .tile.quarter {
    width: calc((100% / 2) - (2 * 3 * 5px));
  }
}
/*
*
*	Bad sliders. Redo with div that has a sliding bar that adjusts the value of the hidden range-seeker.
*
*/
input[type=range] {
  -webkit-appearance: none;
  width: 100%;
  margin: 4px 0;
}

input[type=range]:focus {
  outline: none;
}

input[type=range]::-webkit-slider-runnable-track {
  width: 100%;
  height: 6px;
  cursor: pointer;
  -webkit-box-shadow: 0px 0px 0px transparent, 0px 0px 0px rgba(13, 13, 13, 0);
          box-shadow: 0px 0px 0px transparent, 0px 0px 0px rgba(13, 13, 13, 0);
  background: rgba(56, 58, 59, 0.4);
  border-radius: 6px;
  border: 0px solid rgba(0, 100, 1, 0);
}

input[type=range]::-webkit-slider-thumb {
  -webkit-box-shadow: 0px 0px 2px rgba(0, 0, 0, 0.25), 0px 0px 0px rgba(13, 13, 13, 0.25);
          box-shadow: 0px 0px 2px rgba(0, 0, 0, 0.25), 0px 0px 0px rgba(13, 13, 13, 0.25);
  border: 0px solid transparent;
  height: 14px;
  width: 14px;
  border-radius: 100px;
  background: #919191;
  cursor: pointer;
  -webkit-appearance: none;
  margin-top: -4px;
}

input[type=range]:focus::-webkit-slider-runnable-track {
  background: rgba(103, 107, 109, 0.4);
}

input[type=range]::-moz-range-track {
  width: 100%;
  height: 6px;
  cursor: pointer;
  box-shadow: 0px 0px 0px transparent, 0px 0px 0px rgba(13, 13, 13, 0);
  background: rgba(56, 58, 59, 0.4);
  border-radius: 6px;
  border: 0px solid rgba(0, 100, 1, 0);
}

input[type=range]::-moz-range-thumb {
  box-shadow: 0px 0px 2px rgba(0, 0, 0, 0.25), 0px 0px 0px rgba(13, 13, 13, 0.25);
  border: 0px solid transparent;
  height: 14px;
  width: 14px;
  border-radius: 100px;
  background: #919191;
  cursor: pointer;
}

input[type=range]::-ms-track {
  width: 100%;
  height: 6px;
  cursor: pointer;
  background: transparent;
  border-color: transparent;
  color: transparent;
}

input[type=range]::-ms-fill-lower {
  background: rgba(9, 9, 9, 0.4);
  border: 0px solid rgba(0, 100, 1, 0);
  border-radius: 12px;
  box-shadow: 0px 0px 0px transparent, 0px 0px 0px rgba(13, 13, 13, 0);
}

input[type=range]::-ms-fill-upper {
  background: rgba(56, 58, 59, 0.4);
  border: 0px solid rgba(0, 100, 1, 0);
  border-radius: 12px;
  box-shadow: 0px 0px 0px transparent, 0px 0px 0px rgba(13, 13, 13, 0);
}

input[type=range]::-ms-thumb {
  box-shadow: 0px 0px 2px rgba(0, 0, 0, 0.25), 0px 0px 0px rgba(13, 13, 13, 0.25);
  border: 0px solid transparent;
  height: 14px;
  width: 14px;
  border-radius: 100px;
  background: #919191;
  cursor: pointer;
  height: 6px;
}

input[type=range]:focus::-ms-fill-lower {
  background: rgba(56, 58, 59, 0.4);
}

input[type=range]:focus::-ms-fill-upper {
  background: rgba(103, 107, 109, 0.4);
}

input[type=range].blue {
  -webkit-appearance: none;
  width: 100%;
  margin: 4px 0;
}

input[type=range].blue:focus {
  outline: none;
}

input[type=range].blue::-webkit-slider-runnable-track {
  width: 100%;
  height: 6px;
  cursor: pointer;
  -webkit-box-shadow: 0px 0px 0px transparent, 0px 0px 0px rgba(13, 13, 13, 0);
          box-shadow: 0px 0px 0px transparent, 0px 0px 0px rgba(13, 13, 13, 0);
  background: rgba(14, 179, 255, 0.4);
  border-radius: 6px;
  border: 0px solid rgba(0, 100, 1, 0);
}

input[type=range].blue::-webkit-slider-thumb {
  -webkit-box-shadow: 0px 0px 2px rgba(0, 0, 0, 0.25), 0px 0px 0px rgba(13, 13, 13, 0.25);
          box-shadow: 0px 0px 2px rgba(0, 0, 0, 0.25), 0px 0px 0px rgba(13, 13, 13, 0.25);
  border: 0px solid transparent;
  height: 14px;
  width: 14px;
  border-radius: 100px;
  background: #005abe;
  cursor: pointer;
  -webkit-appearance: none;
  margin-top: -4px;
}

input[type=range].blue:focus::-webkit-slider-runnable-track {
  background: rgba(142, 219, 255, 0.4);
}

input[type=range].blue::-moz-range-track {
  width: 100%;
  height: 6px;
  cursor: pointer;
  box-shadow: 0px 0px 0px transparent, 0px 0px 0px rgba(13, 13, 13, 0);
  background: rgba(14, 179, 255, 0.4);
  border-radius: 6px;
  border: 0px solid rgba(0, 100, 1, 0);
}

input[type=range].blue::-moz-range-thumb {
  box-shadow: 0px 0px 2px rgba(0, 0, 0, 0.25), 0px 0px 0px rgba(13, 13, 13, 0.25);
  border: 0px solid transparent;
  height: 14px;
  width: 14px;
  border-radius: 100px;
  background: #005abe;
  cursor: pointer;
}

input[type=range].blue::-ms-track {
  width: 100%;
  height: 6px;
  cursor: pointer;
  background: transparent;
  border-color: transparent;
  color: transparent;
}

input[type=range].blue::-ms-fill-lower {
  background: rgba(0, 97, 142, 0.4);
  border: 0px solid rgba(0, 100, 1, 0);
  border-radius: 12px;
  box-shadow: 0px 0px 0px transparent, 0px 0px 0px rgba(13, 13, 13, 0);
}

input[type=range].blue::-ms-fill-upper {
  background: rgba(14, 179, 255, 0.4);
  border: 0px solid rgba(0, 100, 1, 0);
  border-radius: 12px;
  box-shadow: 0px 0px 0px transparent, 0px 0px 0px rgba(13, 13, 13, 0);
}

input[type=range].blue::-ms-thumb {
  box-shadow: 0px 0px 2px rgba(0, 0, 0, 0.25), 0px 0px 0px rgba(13, 13, 13, 0.25);
  border: 0px solid transparent;
  height: 14px;
  width: 14px;
  border-radius: 100px;
  background: #005abe;
  cursor: pointer;
  height: 6px;
}

input[type=range].blue:focus::-ms-fill-lower {
  background: rgba(14, 179, 255, 0.4);
}

input[type=range].blue:focus::-ms-fill-upper {
  background: rgba(142, 219, 255, 0.4);
}

.tabs {
  position: relative;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  min-height: 40px;
  margin: auto;
  font-weight: 600;
  background-color: rgba(213, 214, 214, 0.9);
}

.tabs .tab:first-child {
  margin: 0px 2px 0px 0px !important;
}

.tabs .tab {
  display: inline-block;
  float: left;
  padding: 10px 20px 10px 20px;
  min-height: 40px;
  margin: 0px 2px 0px 2px !important;
  background-color: #f1f1f1;
  color: #005abe;
  border-radius: 0 !important;
  font-weight: 400;
}

.tabs .tab.selected {
  background-color: #005abe !important;
  color: #f1f1f1 !important;
}

.hidden {
  display: none;
  opacity: 0;
}

.loading {
	height: 100px !important;
}

.bread-crumb {
  padding: 3px 3px 10px 3px;
}

.breadcrumb-link{
  font-size: 80%;
  color: black;
}

.type {
 padding: inherit;
}

.type.color-1 {
  background-color: red;
}
.type.color-2 {
  background-color: yellow;
}
.type.color-3 {
  background-color: green;
}
.type.color-4 {
  background-color: rgb(0, 162, 232);
}
.type.color-5 {
  background-color: rgb(255, 150, 0);
}
.type.color-6 {
  background-color: magenta;
}
.type.color-7 {
  background-color: lightgray;
}
.type.color-8 {
  background-color: white;
}
