/*******************************************************************************
 *
 * Global
 *
 ******************************************************************************/

/* For smooth anchor scrolling */
html {
  scroll-behavior: smooth;
}
 
/* For footer positioning */
html,
body {
  height: 100vh;
  margin: 0px 0px 0px 0px;
  padding: 0px 0px 0px 0px;
}

/* Backgrounds */
body::before {
  position: fixed;
  width: 100%;
  height: 100%;
  top: -65%;
  transform: skew(0deg, -10deg);
}

/* Fonts */
html, body, th, td {
  font-family: 'ff-meta-web-pro', arial, sans-serif;
  font-size: 16px;
  color: #000;
	line-height: 1.35;
}

h1,
.h1 {
  font-size: 24px;
  font-weight: bold;
	margin-bottom: 0px;
	line-height: 1.4;
}

h2,
.h2 {
  font-size: 24px;
  font-weight: normal;
	margin-bottom: 0px;
	line-height: 1.4;
}

h3,
.h3 {
  font-size: 20px;
  font-weight: bold;
	line-height: 1.4;
}

h4,
.h4 {
  font-size: 20px;
  font-weight: normal;
	line-height: 1.4;
}

h5,
.h5 {
  font-size: 20px;
  font-weight: bold;
	margin-bottom: 12px;
}

h6,
.h6 {
  font-size: 16px;
  font-weight: bold;
	margin-bottom: 12px;
}

ul {
	margin-top: 16px;
	margin-bottom: 16px;
}

hr {
	margin: 24px 0px 24px 0px;
	padding: 0px 0px 0px 0px;
}

hr.bold {
	display: block;
	border: none;
	height: 2px;
	background-color: #000;
}

hr.solid {
	display: block;
	border: none;
	height: 1px;
	background-color: #000;
}

hr.dotted {
	display: block;
	border: none;
	height: 1px;
	
	background-image: url('/images/line-dotted.svg');
	background-position: bottom;
	background-size: auto;
	background-repeat: repeat-x;
}

small,
.small {
	font-size: 87.5%;
}

.text-muted {
  color: rgba(0,0,0,0.30) ! important;
	mix-blend-mode: multiply;
}

.text-danger,
.text-danger:hover,
a.text-danger,
a.text-danger:hover   {
  color: #DD005E ! important;
}

a:not(.btn):not(.btn-link):not(.dropdown-item):hover {
  filter: brightness(65%);
}

.text-prewrap {
  white-space: pre-wrap;
}



/*******************************************************************************
 *
 * Header, footer, sections
 *
 ******************************************************************************/

/* Page */
.page {
  min-height: 100%;
  padding-bottom: 150px;
}

/* Header */
header {
  font-size: 16px;
  font-weight: normal;
  text-align: left;
  padding-bottom: 60px;
  padding-top: 30px;
}

header .logo {
  max-height: 65px;
  max-width: 180px;
}

/* Footer */
footer {
  font-size: 14px;
  font-weight: normal;
  position: relative;
  height: 100px;
  margin-top: -100px;
}

footer > div,
footer > div > div {
  height: 100%;
  width: 100%;
}

footer ul.languages {
  position: absolute;
  bottom: 0px;
}

/* Sections */
section.title {
  border-bottom: 2px solid #000;
	margin-bottom: 20px;
	padding-bottom: 20px;
}

section.lead {
  font-size: 16px;
  font-weight: normal;
	margin-top: 20px;
	padding-bottom: 20px;
	
	background-image: url('/images/line-dotted.svg');
	background-position: bottom;
	background-size: auto;
	background-repeat: repeat-x;
}

section.grid .row:not(:last-child) {
  background-clip: content-box;
	background-image: url('/images/line-dotted.svg');
	background-position: bottom;
	background-size: auto;
	background-repeat: no-repeat;
}

section.grid .col:not(:last-child) {
	background-image: url('/images/line-dotted-vertical.svg');
	background-position: right;
	background-size: auto;
	background-repeat: repeat-y;
}

section.content {
	
}

section.buttons {
	text-align: center;
	margin-top: 40px;
}

section {
	position: relative;
	margin: 0px 0px 0px 0px;
	padding: 0px 0px 0px 0px;
}

/*
  Override the maximal width of the layout globally – it does not make
  sense to have an overly wide layout, even on a large screen.
  
  This takes the max-width of the lg layout for the xl layout.
*/
@media (min-width: 1200px) {
  .container {
    max-width: 960px;
  }
}


/*******************************************************************************
 *
 * Tools
 *
 * Blue:     bg color #00A5D7, bg opacity 0.07, text color #00A5D7
 * Turquois: bg color #00ABA8, bg opacity 0.07, text color #00ABA8
 * Green:    bg color #009C3C, bg opacity 0.06, text color #009C3C
 * Yellow:   bg color #DDDB00, bg opacity 0.10, text color #999600
 * Purple:   bg color #7C61AE, bg opacity 0.06, text color #7C61AE
 * Red:      bg color #CC2A1F, bg opacity 0.05, text color #CC2A1F
 * Orange:   bg color #D96C00, bg opacity 0.06, text color #D96C00
 *
 ******************************************************************************/

/* Assessment tool */
body.assmt-tool::before {
  content: '';
  background-color: #00A5D7;
  opacity: 0.07;
}

body.assmt-tool a:not(.btn):not(.btn-link),
body.assmt-tool a:not(.btn):not(.btn-link):hover,
body.assmt-tool footer,
body.assmt-tool .links,
body.assmt-tool .link,
body.assmt-tool .link-list a {
  color: #00A5D7;
}

body.assmt-tool .btn-primary:not(:disabled):not(.disabled).active,
body.assmt-tool .btn-primary:not(:disabled):not(.disabled):active,
body.assmt-tool .btn-primary:not(:disabled):not(.disabled):hover {
  background: #00A5D7;
  border-color: #00A5D7;
}

body.assmt-tool .icon-info {
  background-image:url(/images/icon-info-blue.svg);
}

body.assmt-tool .message {
  background: #00A5D7;
}

body.assmt-tool .btn-inverse:hover {
  color: #00A5D7;
}

/* Categorization tool */
body.catgr-tool::before {
  content: '';
  background-color: #7C61AE;
  opacity: 0.06;
}

body.catgr-tool a:not(.btn):not(.btn-link),
body.catgr-tool a:not(.btn):not(.btn-link):hover,
body.catgr-tool footer,
body.catgr-tool .links,
body.catgr-tool .link,
body.catgr-tool .link-list a {
  color: #7C61AE;
}

body.catgr-tool .btn-primary:not(:disabled):not(.disabled).active,
body.catgr-tool .btn-primary:not(:disabled):not(.disabled):active,
body.catgr-tool .btn-primary:not(:disabled):not(.disabled):hover {
  background: #7C61AE;
  border-color: #7C61AE;
}

body.catgr-tool .icon-info {
  background-image:url(/images/icon-info-purple.svg);
}

body.catgr-tool .message {
  background: #7C61AE;
}

body.catgr-tool .btn-inverse:hover {
  color: #7C61AE;
}

/* Exclusion list training */
body.exlst-tool::before {
  content: '';
  background-color: #00ABA8;
  opacity: 0.07;
}

body.exlst-tool a:not(.btn):not(.btn-link),
body.exlst-tool a:not(.btn):not(.btn-link):hover,
body.exlst-tool footer,
body.exlst-tool .links,
body.exlst-tool .link,
body.exlst-tool .link-list a {
  color: #00ABA8;
}

body.exlst-tool .btn-primary:not(:disabled):not(.disabled).active,
body.exlst-tool .btn-primary:not(:disabled):not(.disabled):active,
body.exlst-tool .btn-primary:not(:disabled):not(.disabled):hover {
  background: #00ABA8;
  border-color: #00ABA8;
}

body.exlst-tool .icon-info {
  background-image:url(/images/icon-info-turquois.svg);
}

body.exlst-tool .message {
  background: #00ABA8;
}

body.exlst-tool .btn-inverse:hover {
  color: #00ABA8;
}

/* Setup tool */
body.setup-tool::before {
  content: '';
  background-color: #009C3C;
  opacity: 0.05;
}

body.setup-tool a:not(.btn):not(.btn-link),
body.setup-tool a:not(.btn):not(.btn-link):hover,
body.setup-tool footer,
body.setup-tool .links,
body.setup-tool .link,
body.setup-tool .link-list a {
  color: #009C3C;
}

body.setup-tool .btn-primary:not(:disabled):not(.disabled).active,
body.setup-tool .btn-primary:not(:disabled):not(.disabled):active,
body.setup-tool .btn-primary:not(:disabled):not(.disabled):hover {
  background: #009C3C;
  border-color: #009C3C;
}

body.setup-tool .icon-info {
  background-image:url(/images/icon-info-green.svg);
}

body.setup-tool .message {
  background: #009C3C;
}

body.setup-tool .btn-inverse:hover {
  color: #009C3C;
}

body.setup-tool .dropdown-item:active {
  color: #fff ! important;
  background-color: #009C3C;
}

body.setup-tool .nav-link.dropdown-toggle {
	background-image: url('/images/icon-pulldown-green.svg');
}

body.setup-tool .chart-horizontal-bar-top-level,
body.setup-tool .chart-horizontal-bar-sub-level,
body.setup-tool .chart-vertical-bar-top-level {
  background-color: #009C3C;
}


/* Admin tool */
body.admin-tool::before {
  content: '';
  background-color: #DDDB00;
  opacity: 0.10;
}

body.admin-tool a:not(.btn):not(.btn-link),
body.admin-tool a:not(.btn):not(.btn-link):hover,
body.admin-tool footer,
body.admin-tool .links,
body.admin-tool .link,
body.admin-tool .link-list a {
  color: #999600;
}

body.admin-tool .btn-primary:not(:disabled):not(.disabled).active,
body.admin-tool .btn-primary:not(:disabled):not(.disabled):active,
body.admin-tool .btn-primary:not(:disabled):not(.disabled):hover {
  background: #999600;
  border-color: #999600;
}

body.admin-tool .icon-info {
  background-image:url(/images/icon-info-yellow.svg);
}

body.admin-tool .message {
  background: #999600;
}

body.admin-tool .btn-inverse:hover {
  color: #999600;
}

body.admin-tool .dropdown-item:active {
  color: #fff ! important;
  background-color: #999600;
}

body.admin-tool .nav-link.dropdown-toggle {
	background-image: url('/images/icon-pulldown-yellow.svg');
}

body.admin-tool .chart-horizontal-bar-top-level,
body.admin-tool .chart-horizontal-bar-sub-level,
body.admin-tool .chart-vertical-bar-top-level {
  background-color: #DDDB00;
}

/* Sections */
body.assmt-tool section.title,
body.catgr-tool section.title,
body.exlst-tool section.title {
	text-align: center;
}

body.setup-tool section.lead {
	margin-bottom: 20px;
	background-image: none;
}

body.admin-tool section.lead {
	margin-bottom: 20px;
	background-image: none;
}



/*******************************************************************************
 *
 * Links
 *
 ******************************************************************************/

ul.link-list {
  font-size: 14px;
  padding: 0;
  margin: 30px 0px;
  display: block;
  width: 100%;
  text-align: center;
}

ul.link-list li {
  display: inline;
}

ul.link-list li:not(:last-child)::after {
  content: '·';
  padding-left: 8px;
  padding-right: 8px;
}

ul.link-list-comma {
  padding: 0;
  display: inline;
}

ul.link-list-comma li {
  display: inline;
}

ul.link-list-comma li:not(:last-child)::after {
  content: ', ';
}

.link {
  font-weight: normal;
}



/*******************************************************************************
 *
 * Tables
 *
 ******************************************************************************/

td, th {
	text-align: left;
	vertical-align: top;
}

td:first-child,
th:first-child {
	padding-left: 0px ! important;
}

td:last-child,
th:last-child {
	padding-right: 0px ! important;
}

.table {
	margin-top: 0px;
	margin-bottom: 12px;
}

.table > tbody > tr > td, .table > thead > tr > th {
	border-top: none;
}

.table > tbody > tr > td {
	background-image: url('/images/line-dotted.svg');
	background-position: bottom;
	background-size: auto;
	background-repeat: repeat-x;
}

.table > thead > tr > th {
	border-bottom: 1px solid #000;
}

.table-caption {
	padding-top: 12px;
	padding-bottom: 12px;
	border-bottom: 1px solid #000;
	margin-bottom: 0px;
}

.table.table-summary > tbody > tr > td {
	padding-right: 8px;
	padding-left: 8px;
}

.table-summary ul:last-child {
  margin-bottom: 0px;
}

@media (max-width: 767.98px) {
	.table.table-exclusions .table-number,
	.table.table-questions .table-number {
		display: block;
		position: absolute;
	}
	.table.table-exclusions .table-content,
	.table.table-questions .table-content {
		display: block;
		padding-right: 0px;
		padding-left: 40px;
		width: 100%;
	}
	.table.table-exclusions .table-toggles,
	.table.table-questions .table-toggles {
		display: block;
		padding-right: 0px;
		padding-left: 40px;
		width: 100%;
	}
}

.table-toggles {
  position: relative;
}

.table-toggles .icon-exclusions-outcome,
.table-toggles .icon-questions-outcome {
  position: absolute;
  left: 100%;
  top: 21px;
  margin-left: 15px;
  display: none;
}

.table-toggles .icon-radio-toggle {
  display: none;
  height: 18px;
  width: 18px;
  margin-top: 2px;
}

tr .tr-hover-hidden,
tr:hover .tr-hover-visible {
  display: block;
}

tr .tr-hover-visible,
tr:hover .tr-hover-hidden {
  display: none;
}

td .td-hover-hidden,
td:hover .td-hover-visible {
  display: block;
}

td .td-hover-visible,
td:hover .td-hover-hidden {
  display: none;
}

.td-hover-scroll-container {
  overflow: hidden;
  max-height: 44px;
}

.td-hover-scroll-content {
  transform: translateY(0px);
  transition: transform .2s;
}

.td-hover-scroll:hover .td-hover-scroll-content {
  transform: translateY(-44px);
}

.table > tbody > tr.tr-no-bottom-border > td {
  background-image: none;
}

.table > tbody > tr.tr-solid-bottom-border > td {
	background-image: url('/images/line-solid.svg');
}

.table tr.tr-no-paddings > td {
  padding: 0px 0px 1px 0px; /* Needs 1px padding to display the background */
}

.table-borderless > tbody > tr > td {
  background-image: none;
}

.table-compact > tbody > tr > td {
  padding-top: 6px;
  padding-bottom: 6px;
}

.table > tfoot > tr > td {
	background-image: url('/images/line-solid.svg');
	background-position: top;
	background-size: auto;
	background-repeat: repeat-x;
	border: none;
	position: relative;
	top: -1px;
}

.table.table-no-bottom-border > tbody > tr:last-child > td {
  background-image: none;
}




/*******************************************************************************
 *
 * Buttons
 *
 ******************************************************************************/

.btn {
  border-top-left-radius: 5px;
  border-top-right-radius: 0px;
  border-bottom-left-radius: 0px;
  border-bottom-right-radius: 5px;
	
	padding-top: 5px;
	padding-bottom: 5px;
	
	transition: none;
	
	cursor: pointer;
}

.btn-link {
  color: #000;
  text-decoration: none;
}

.btn-link:hover {
  color: #000;
  text-decoration: none;
}

.btn-link.disabled,
.btn-link:disabled,
.btn-link[disabled] {
  cursor: not-allowed;
	opacity: 0.1;
  color: #000;
	mix-blend-mode: multiply;
}

.btn.active,
.btn.focus,
.btn:focus {
  outline: none;
	box-shadow: none ! important;
}

.btn.disabled,
.btn:disabled,
.btn[disabled] {
  cursor: not-allowed;
	opacity: 0.1;
	mix-blend-mode: multiply;
}

.btn-primary {
  border-color: #000;
  border-width: 2px;
  background: transparent;
  color: #000;
  font-weight: bold;
}

.btn-primary.disabled,
.btn-primary:disabled,
.btn-primary[disabled] {
  border-color: #000;
  border-width: 2px;
  background: transparent;
  color: #000;
  font-weight: bold;
	opacity: 0.1;
	mix-blend-mode: multiply;
}

.btn-primary:not(:disabled):not(.disabled).active,
.btn-primary:not(:disabled):not(.disabled):active,
.btn-primary:not(:disabled):not(.disabled):hover {
  color: #fff;
}

.btn-inverse {
  font-weight: bold;
  border-color: #fff;
  border-width: 2px;
}

.btn-inverse:hover {
  background: #fff;
}


.btn-submit .icon-spinner {
  display: none;
  position: absolute;
  right: 30px;
  margin-top: 1px;
}

.btn-submit .icon-check {
  display: none;
  position: absolute;
  right: 30px;
  margin-top: 4px;
}

.btn-submit.submitting {
  background: #00A5D7;
  border-color: #00A5D7;
  color: #fff;
}

.btn-submit.submitted {
  background: #00A5D7;
  border-color: #00A5D7;
  color: #fff;
  cursor: not-allowed;
}

.btn-submit.submitting .icon-spinner {
  display: inline;
}


.btn-submit.submitted .icon-check {
  display: inline;
}

.btn-no-padding {
  padding: 0;
}

@-webkit-keyframes rotate-center {
  0% {
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
@keyframes rotate-center {
  0% {
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

.btn-group-toggle .btn-toggle {
  border-color: #000;
  border-width: 1px;
  background: transparent;
  font-weight: bold;
	font-size: 14px;
  color: #000;
  opacity: 0.1;
	mix-blend-mode: multiply;
	
	padding-top: 2px;
	padding-bottom: 2px;
}

.btn-group-toggle .btn-toggle + .btn-toggle {
	margin-left: 3px;
}

.btn-group-toggle .btn-toggle.active {
  opacity: 1;
	border-color: #00A5D7; /* Don't set transparent border, has side effect with wkhtmltopdf */
  background: #00A5D7;
  color: #fff;
}

.btn-group-toggle .btn-toggle:hover,
.btn-group-toggle.indetermined .btn-toggle:hover {
  opacity: 1;
	border-color: #00A5D7; /* Don't set transparent border, has side effect with wkhtmltopdf */
  background: #00A5D7;
  color: #fff;
}

.btn-group-toggle.indetermined .btn-toggle {
  opacity: 1;
  border-color: rgba(0,0,0,0.1);
  background: transparent;
  color: #000;
}

.btn-group-toggle.disabled {
  cursor: not-allowed;
}

.btn-group-toggle.disabled .btn-toggle {
  pointer-events: none;
  cursor: not-allowed;
}

section.buttons.buttons-one .btn {
	min-width: 50%; /* Fallback for no calc */
	min-width: calc(50% + 10px);
}

section.buttons.buttons-two .btn {
	min-width: 25%;
	margin-left: 5px;
	margin-right: 5px;
}

@media (max-width: 767.98px) {
	section.buttons.buttons-one .btn {
		width: 100%;
	}
	section.buttons.buttons-two .btn {
		width: 48%; /* Fallback for no calc */
		width: calc(50% - 5px);
	}
	section.buttons.buttons-two .btn:first-child {
		float: left;
		margin-left: 0px;
	}
	section.buttons.buttons-two .btn:last-child {
		float: right;
		margin-right: 0px;
	}
	section.actions .btn-block {
  	margin-bottom: 10px;
	}
}




/*******************************************************************************
 *
 * Icons
 *
 ******************************************************************************/

.icon-info {
	display: inline-block;
	vertical-align: top;
	margin-top: 2px;
  background-repeat: no-repeat;
  background-position: 0px 0px;
}

.icon-download {
	vertical-align: top;
	padding-top: 2.5px;
	padding-left: 8px;
}

.icon-collapse {
	display: inline-block;
	vertical-align: top;
	float: right;
	padding-top: 5px;
}

.icon-factsheets,
.icon-assessment,
.icon-categorization {
	width: 70px;
	height: 70px;
	margin-bottom: 10px;
}

.icon-exclusion-list-training,
.icon-exclusion-list-test,
.icon-exclusion-list-browse {
	width: 110px;
	margin-top: -10px;
	margin-bottom: -5px;
}

.icon-logout {
	height: 16px;
	padding-right: 5px;
	position: relative;
	top: -1.5px;
}

.icon-issue {
	width: 50px;
	height: 50px;
	margin-top: 10px;
	margin-bottom: 10px;
}

.icon-upload {
	width: 24px;
	height: 24px;
}

.icon-sector-risk,
.icon-exclusions-outcome,
.icon-questions-outcome,
.icon-overall-risk {
	width: 34px;
	height: 34px;
	margin-top: 4px;
  margin-right: 4px;
}

.icon-plus {
	width: 20.5px;
	height: 20.5px;
}

.icon-spinner {
	width: 24px;
	height: 24px;
	-webkit-animation: rotate-center .65s linear infinite none;
          animation: rotate-center .65s linear infinite none;
}



/*******************************************************************************
 *
 * Collapse
 *
 ******************************************************************************/

[data-toggle=collapse] {
	cursor:pointer; /* This is required for iOS ! */
}

[data-toggle=collapse] .icon-collapse {
	transform: scaleY(1);
	transition: transform;
	transition-duration: 0.3s;
}

[data-toggle=collapse].collapsed .icon-collapse {
	transform: scaleY(-1);
}



/*******************************************************************************
 *
 * Forms
 *
 ******************************************************************************/

.col-form-label {
	font-weight: bold;
}

.form-control,
.custom-select {
	border: none;
	border-radius: 0px;
	border-bottom: 1px solid #000;
	background-color: transparent;
	padding-left: 0px;
	padding-right: 0px;
	color: #000;
}

.form-control:focus,
.custom-select:focus {
	background-color: transparent;
	box-shadow: none;
	border-color: #000;
	color: #000;
}

.form-control:disabled,
.form-control[disabled],
.custom-select:disabled,
.custom-select[disabled] {
	background-color: transparent;
	box-shadow: none;
	border-color: #000;
	color: #000;
	opacity: 1;
  -webkit-text-fill-color: #000;
  cursor: not-allowed;
}

.form-group {
	margin-bottom: 8px;
}

.custom-select {
	background-image: url('/images/icon-pulldown-black.svg');
	background-repeat: no-repeat;
	background-position: right center;
	background-size: auto;
	overflow-x: hidden;
	text-overflow: ellipsis;
	padding-right: 30px;
}

textarea.form-control,
.textarea.form-control {
	border-bottom: none;
	background-image: url('/images/line-solid-repeating.svg');
	background-repeat: no-repeat; /* Do not repeat here, wkhtmltopdf has problems with that */
	background-attachment: local;
	line-height: 40px;
	padding-top: 0px ! important;
	padding-bottom: 0px ! important;
	
	height: auto;
}

textarea.comments,
textarea.comments-6 {
	min-height: 240px; /* Eq 6 lines */
}

textarea.comments-5 {
	min-height: 200px; /* Eq 5 lines */
}

textarea.comments-4 {
	min-height: 160px; /* Eq 4 lines */
}

textarea.comments-3 {
	min-height: 120px; /* Eq 3 lines */
}



/* These need to be separate to work properly */
.form-control::-webkit-input-placeholder {
  color: #000;
  opacity: 0.35;
	mix-blend-mode: multiply;
}

.form-control::-moz-placeholder {
  color: #000;
  opacity: 0.35;
	mix-blend-mode: multiply;
}

.form-control:-moz-placeholder {
  color: #000;
  opacity: 0.35;
	mix-blend-mode: multiply;
}

.form-control::-ms-input-placeholder {
  color: #000;
  opacity: 0.35;
	mix-blend-mode: multiply;
}

.form-control:-ms-input-placeholder {
  color: #000;
  opacity: 0.35;
	mix-blend-mode: multiply;
}

.form-control::placeholder {
  color: #000;
  opacity: 0.35;
	mix-blend-mode: multiply;
}

.selectize-control.single .selectize-input:after {
  display: none;
}

.selectize-input.full {
  background-color: transparent;
}

.form-text {
  margin-top: 8px;
}

label.link {
  cursor: pointer;
}

label.link:hover {
  text-decoration: underline;
  filter: brightness(65%);
}



/*******************************************************************************
 *
 * Hovering upload
 *
 ******************************************************************************/

#hovering-upload {
	position: fixed;
	width: 100%;
	bottom: 30px;
	z-index: 10000;
	pointer-events: none;
}

#hovering-upload form {
	width: 50px;
	height: 50px;
	position: relative;
	
	display: inline-block;
	
	background-color: #fff;
	border-radius: 100%;
	
	-webkit-box-shadow: 0px 3px 6px 0px rgba(0,0,0,0.20);
	-moz-box-shadow: 0px 3px 6px 0px rgba(0,0,0,0.20);
	box-shadow: 0px 3px 6px 0px rgba(0,0,0,0.20);
}

#hovering-upload label {
	margin: 0px 0px 0px 0px;
	padding: 0px 0px 0px 0px;
	width: 100%;
	height: 100%;
	display: block;
	pointer-events: auto;
	cursor: pointer;
}

#hovering-upload input {
	position: absolute;
	left: -100000px;
	top:  -100000px;
}

#hovering-upload .icon-spinner {
  display: none;
}

#hovering-upload form.submitting .icon-upload {
  display: none;
}

#hovering-upload form.submitting .icon-spinner {
  display: inline;
}

/* Enlarge the icon with a padding to the size of the whole
   button for better usability */
#hovering-upload .icon-upload,
#hovering-upload .icon-spinner {
	padding: 12px 13px 14px 13px;
	width: 50px;
	height: 50px;
}



/*******************************************************************************
 *
 * Hovering back to top
 *
 ******************************************************************************/

#hovering-backtotop {
	position: fixed;
	width: 100%;
	bottom: 30px;
	z-index: 10000;
	pointer-events: none;
}

#hovering-backtotop a {
	width: 50px;
	height: 50px;
	position: relative;
	
	display: inline-block;
	pointer-events: auto;
	
	background-color: #fff;
	border-radius: 100%;
	
	-webkit-box-shadow: 0px 3px 6px 0px rgba(0,0,0,0.20);
	-moz-box-shadow: 0px 3px 6px 0px rgba(0,0,0,0.20);
	box-shadow: 0px 3px 6px 0px rgba(0,0,0,0.20);
}

#hovering-backtotop a:hover {
	background-color: #fff;
  filter: none;
}


/* Enlarge the icon with a padding to the size of the whole
   button for better usability */
#hovering-backtotop .icon-collapse {
	padding: 18px 16px 14px 16px;
	width: 50px;
	height: 50px;
}



/*******************************************************************************
 *
 * Evaluation
 *
 ******************************************************************************/

.evaluation {
	position: relative;
	left: 10%;
	width: 80%;
	margin-top: 15px;
}

.evaluation-graph {
	width: 100%;
}

.evaluation-text {
	position: absolute;
	width: 60%;
	left: 20%;
	text-align: center;
	top: 35%; /* Fallback for non-calc-able browsers */
	top: calc(50% - 48px - 4.8px);
}

.evaluation-value {
	font-weight: bold;
	font-size: 48px;
}

.evaluation-caption {
	
}

.evaluation-huge-text {
  font-size: 200px;
  line-height: 200px;
  font-weight: 700;
  margin-top: 30px;
  display: inline-block;
}

.evaluation-huge-text-container hr {
  display: none;
}


/* On very small screen we have to reduce the
   font size. The same is true for the smallest
   resolution where we have a two column layout.
*/
@media (max-width: 479.98px),
       (min-width: 768px) and (max-width: 991.98px) {
	.evaluation-text {
		top: 35%; /* Fallback for non-calc-able browsers */
		top: calc(50% - 36px - 3.6px);
	}

	.evaluation-value {
		font-size: 36px;
	}
}

/* At the md breakpoint we'd like to show the hr
   that's in the code at the bottom
*/
@media (max-width: 767.98px) {
  .evaluation-huge-text-container hr {
    display: block;
  }
  .evaluation-huge-text {
    font-size:   160px;
    line-height: 160px;
    margin-top: -25px;
  }
}




/*******************************************************************************
 *
 * Uploads
 *
 ******************************************************************************/

.upload-preview {
	display: inline-block;
	width: 130px;
	height: 97.5px;
	margin-right: 15px;
	margin-bottom: 15px;
	overflow: hidden;
	position: relative;
}

.upload-preview .upload-thumbnail {
	border-top-left-radius: 5px;
	border-bottom-right-radius: 5px;
	width: 100%;
	height: 100%;
}

.upload-preview:after {
  display: block;
  content: "";
  position: absolute;
  
	border: 1px solid rgba(0, 0, 0, 0.1);
	border-top-left-radius: 5px;
	border-bottom-right-radius: 5px;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	
	pointer-events: none;
}

.upload-preview .upload-delete {
	position: absolute;
	bottom: 0px;
	right: 0px;

	/*border: 1px solid rgba(0, 0, 0, 0.1);*/
	border-top-left-radius: 5px;
	border-bottom-right-radius: 5px;

	background-color: #fff;
	width: 40px;
	height: 40px;
	
	padding: 13px;
	padding-top: 8px;
}

.upload-new {
	display: inline-block;
	width: 130px;
	height: 97.5px;
	margin-right: 15px;
	margin-bottom: 15px;
	border: 1px solid rgba(0, 0, 0, 0.1);
	border-top-left-radius: 5px;
	border-bottom-right-radius: 5px;
	overflow: hidden;
	position: relative;
}

/*
.upload-delete:hover,
.upload-new:hover {
	border: 1px solid rgba(0, 0, 0, 1);
}
*/

.upload-new input {
	position: absolute;
	left: -100000px;
	top:  -100000px;
}

.upload-new label {
	width: 100%;
	height: 100%;
	margin: 0px 0px 0px 0px;
	padding: 0px 0px 0px 0px;
	display: block;
	pointer-events: auto;
	cursor: pointer;
}

.upload-new .icon-spinner {
  display: none;
}

.upload-new form.submitting .icon-plus {
  display: none;
}

.upload-new form.submitting .icon-spinner {
  display: inline;
}

/* Enlarge the icon with a padding to the size of the whole
   button for better usability */
.upload-new .icon-plus,
.upload-new .icon-spinner {
	padding: 38px 54px 38px 54px;
	width: 130px;
	height: 97.5px;
}

.upload-frame {
  width: 0;
  height: 0;
  display: none;
}



/*******************************************************************************
 *
 * Alerts
 *
 ******************************************************************************/

.alert {
  width: 100%;
  z-index: 1000;
  position: fixed;
  
  border-radius: 0;
  border-left: none;
  border-to: none;
  border-right: none;
  
  padding: 30px 0px 30px 0px;
  
  display: none;
}

.alert-dismissible .close {
  position: static;
  float: right;
  margin-top: -4px;
  margin-left: 50px;
  padding: 0px;
  display: inline-block;
}

.alert .icon-close {
  height: 16px;
}

@media (max-width: 767.98px) {
  .alert {
    padding: 25px 0px 25px 0px;
  }
}



/*******************************************************************************
 *
 * Messages
 *
 ******************************************************************************/

.message {
  display: block;
  color: #fff;
  padding: 20px;
}

.message * {
  color:#fff;
}



/*******************************************************************************
 *
 * Tooltips
 *
 ******************************************************************************/

.tooltip {
  font-family: 'ff-meta-web-pro', sans-serif;
  font-size: 14px;
	line-height: 1.4;
}

.tooltip-inner {
  padding: 4px 8px 6px 8px;
}

.tooltip-wide .tooltip-inner {
  max-width: 300px;
}



/*******************************************************************************
 *
 * Progress
 *
 ******************************************************************************/
 
.progress {
	position: absolute;
	background: transparent;
	height: 4px;
  overflow: hidden;
	left: 0px;
	bottom: -3px;
	border-radius: 0px;
}

.progress::before {
  content: "";
  display: block;
	height: 4px;
	width: 100%;
  overflow: hidden;
	background: #000;
  animation-duration: 1s;
  animation-timing-function: ease-in-out;
  animation-name: progress-indicator;
}

@keyframes progress-indicator {
  from { width: 0%; }
  to { width: 100%; }
}

.progress-static::before {
  animation-duration: 0s ! important;
}


/*******************************************************************************
 *
 * Navigation
 *
 ******************************************************************************/
 
.nav {
  /*height: 65px;*/
  margin-top: 0px;
  padding-top: 15px;
}

.nav-item:first-child .nav-link {
  padding-left: 0;
}

.nav-link {
  padding-left: 15px;
  padding-right: 15px;
}

.nav-link:focus {
  outline: none;
}

.nav-link:hover {
  text-decoration: underline;
}

.nav-link.active {
  color: #000 ! important;
}

.dropdown-menu {
  border-radius: 4px;
  border: 1px solid rgba(0,0,0,0.15);
  background: #fff;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175); /*0px 1px 4px rgba(0, 0, 0, 0.16);*/
}

.dropdown-item,
.dropdown-header {
  padding-left: 15px;
  padding-right: 15px;
}

.dropdown-item.active {
  color: #000 ! important;
  background: #fff;
}

.dropdown-item.active:hover {
  color: #000;
  background: #f8f9fa;
}

.dropdown-toggle {
  padding-right: 18px;
	background-image: url('/images/icon-pulldown-black.svg');
	background-repeat: no-repeat;
	background-size: auto;
}

.nav-link.dropdown-toggle {
	background-position: right 12px;
}

.btn-link.dropdown-toggle {
	background-position: right 10px;
}

.btn-link.btn-no-padding.dropdown-toggle {
	background-position: right 5px;
}

.btn-link.dropdown-toggle:hover {
	text-decoration: underline;
}

.btn-link.dropdown-toggle:focus {
	text-decoration: none;
}

.dropdown-toggle::after {
  display: none;
}

.nav-link.dropdown-toggle {
  margin-right: 15px;
}

.nav-link.active.dropdown-toggle {
	background-image: url('/images/icon-pulldown-black.svg') ! important;
}

.dropdown-toggle.text-muted {
	background-image: url('/images/icon-pulldown-muted.svg');
}

.dropdown-header {
  color: rgba(0,0,0,0.20);
}

.nav-item {
  padding-right: 15px;
}

.nav-item > .nav-link {
  padding-left: 0px;
}



/*******************************************************************************
 *
 * Selectize
 *
 ******************************************************************************/

.selectize-input {
	border: none;
	border-radius: 0px;
	border-bottom: 1px solid #000;
	background-color: transparent;
	padding-left: 0px ! important;
	padding-right: 0px;
	color: #000;

	background-image: url('/images/icon-pulldown-black.svg');
	background-repeat: no-repeat;
	background-position: right 11px;
	background-size: auto;
	overflow-x: hidden;
	text-overflow: ellipsis;
	padding-right: 30px;
}

.selectize-input.focus {
	border-radius: 0px;
	box-shadow: none;
	border-color: #000;
}

.selectize-dropdown {
  border-radius: 4px;
  border: 1px solid rgba(0,0,0,0.15);
  background: #fff;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175); /*0px 1px 4px rgba(0, 0, 0, 0.16);*/
}

.selectize-dropdown-content {
  max-height: 300px;
}

.selectize-input .item {
  background-color: rgba(0,0,0,0.05) ! important;
	mix-blend-mode: multiply;
	padding: 2px 6px ! important;
}

.selectize-input .item.active {
  background-color: rgba(0,0,0,0.15) ! important;
  color: #000 ! important;
}



/*******************************************************************************
 *
 * Chart
 *
 ******************************************************************************/

.chart-horizontal-bar-top-level,
.chart-horizontal-bar-sub-level {
  height: 12px;
  margin-top: 5px;
}

.chart-horizontal-bar-sub-level {
  opacity: 0.25;
	mix-blend-mode: multiply;
}

.chart-vertical-bar-top-level,
.chart-vertical-bar-sub-level {
  width: 50%;
  margin-top: 0px;
  margin-bottom: 0px;
}

.chart-vertical {
  background-image: url(/images/line-faded-repeating.svg);
  background-position: center bottom;
}

.chart-vertical td {
  height: 275px;
}



/*******************************************************************************
 *
 * Landscapes
 *
 ******************************************************************************/

.landscape-container {
  position: relative;
}

.landscape-image-container {
  position: relative;
  width: 80%;
}

.landscape-image {
  width: 100%;
  height: auto;
  z-index: 1;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}

.landscape-image-background {
  width: 100%;
  height: 75%; /* Aspect ratio 4:3 */
}

.landscape-icon {
  position: absolute;
  width: 50px;
  height: 50px;
  margin-left: -25px;
  margin-top: -25px;
  border-radius: 100%;
  filter: drop-shadow(0px 3px 6px rgba(0,0,0,0.20));
  z-index: 2;
}

.landscape-icon::before {
  content: "";
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  border: 2px solid #fff;
  border-radius: 100%;
  opacity: 0;
  transition: all .15s;
  z-index: 3;
}

.landscape-icon:hover {
  filter: drop-shadow(0px 3px 6px rgba(0,0,0,0.20)) ! important;
}

.landscape-icon:hover::before,
.landscape-icon-selected::before {
  transform: scale(1.25);
  opacity: 1;
}

.landscape-icon img {
  width: 100%;
  height: 100%;
  background-color: #fff;
  border-radius: 100%;
}

.landscape-icon-done::after {
  content: "";
  position: absolute;
  bottom: -6px;
  right: -6px;
  display: block;
  overflow: hidden;
  background-repeat: no-repeat;
  background-image: url(/images/icon-done-turquois.svg);
  width: 24px;
  height: 24px;
  border: 2px solid #fff;
  border-radius: 100%;
  z-index: 4;
}

.landscape-thumbnail-container {
  position: absolute;
  width:20%;
  height:100%;
  top:0px;
  right:0px;
  display:flex;
  flex-direction: column;
  justify-content: space-between;
  text-align: right;
}

.landscape-thumbnail {
  position: relative;
}

.landscape-thumbnail:hover,
.landscape-thumbnail-selected {
  filter: none ! important;
}

.landscape-thumbnail img {
  opacity: 0.35;
  transition: all .15s;
  width: 90%;
}

.landscape-thumbnail:hover img,
.landscape-thumbnail-selected img {
  opacity: 1;
}

.landscape-thumbnail:hover,
.landscape-thumbnail-selected {
  opacity: 1;
  filter: none ! important;
}

.landscape-thumbnail-done::after {
  content: "";
  position: absolute;
  bottom: 6px;
  right: 6px;
  display: block;
  overflow: hidden;
  background-repeat: no-repeat;
  background-image: url(/images/icon-done-turquois.svg);
  width: 24px;
  height: 24px;
  border: 2px solid #fff;
  border-radius: 100%;
}


/*******************************************************************************
 *
 * Other
 *
 ******************************************************************************/



/* Other */
.no-transition {
  transition: none ! important;
}

.todo {
	color: red ! important;
}

/* Experimental */
img.saturate {
	filter: saturate(110%);
}

/* Close modal button and container */
.close-modal-container {
  
}

.close-modal {
  position: absolute;
  top: 30px;
  border: none;
  padding: 0px;
  background-color: transparent;
}

.close-modal:active,
.close-modal:focus {
  outline-color: transparent;
}

/* Google recaptcha */
.grecaptcha-badge {
  bottom: 70px ! important;
}

@media (max-width: 767.98px) {
  .grecaptcha-badge {
    bottom: 30px ! important;
  }
}


.h-0 {
  height: 0;
}

.w-0 {
  width: 0;
}

.w-10 {
  width: 10% ! important;
}

.w-20 {
  width: 20% ! important;
}

.w-30 {
  width: 30% ! important;
}

.w-40 {
  width: 40% ! important;
}

.w-50 {
  width: 50% ! important;
}

.w-60 {
  width: 60% ! important;
}

.w-70 {
  width: 70% ! important;
}

.w-80 {
  width: 80% ! important;
}

.w-90 {
  width: 90% ! important;
}

