@charset "UTF-8";
/* CSS Document */

/* RESET */
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
button,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-weight: inherit;
  font-style: inherit;
  font-size: 100%;
  font-family: inherit;
  vertical-align: baseline;
}
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}
body {
  line-height: 1;
}
ol,
ul {
  list-style: none;
}
blockquote,
q {
  quotes: none;
}
blockquote:before,
blockquote:after,
q:before,
q:after {
  content: none;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
  font-size: 0.9em;
  line-height: 1.4em;
}

th {
  padding: 10px 5px;
  font-weight: 700;
  text-align: center;
}

tr {
  border: #fff 1px solid;
}

td {
  padding: 8px;
  border-right: #fff 1px solid;
}
td:last-child {
  border-right: none;
}

body,
html {
  color: #333633;
  font-size: 11px;
  font-weight: 300;
  font-family: "Inter", sans-serif;
  text-align: left;
  width: 100%;
  height: 100%;
  overflow: hidden;
  -webkit-overflow-scrolling: touch;
  -webkit-text-size-adjust: 100%;
}
textarea {
  font-family: "Inter", sans-serif;
}

::-webkit-input-placeholder {
  color: inherit;
  opacity: 0.2;
}
:-moz-placeholder {
  color: inherit;
  opacity: 0.2;
}
::-moz-placeholder {
  color: inherit;
  opacity: 0.2;
}
:-ms-input-placeholder {
  color: inherit;
  opacity: 0.2;
}

input:focus::-webkit-input-placeholder {
  opacity: 0;
}
input:focus:-moz-placeholder {
  opacity: 0;
}
input:focus::-moz-placeholder {
  opacity: 0;
}
input:focus:-ms-input-placeholder {
  opacity: 0;
}

#container ::-webkit-scrollbar {
  width: 20px;
  background: transparent;
}
#container ::-webkit-scrollbar-thumb {
  border: 7px #fff solid;
  border-radius: 10px;
  background: #fff;
}
.popup_container::-webkit-scrollbar {
  width: 20px;
  background: transparent;
}
.popup_container::-webkit-scrollbar-thumb {
  border: 7px #fff solid;
  border-radius: 10px;
  background: #fff;
}

.bold {
  font-weight: 700;
}
.light {
  font-weight: 300;
}
.italic {
  font-style: italic;
}
.red {
  color: #ff6b86;
}

b,
strong {
  font-weight: 700;
}

b a,
strong a {
  font-weight: 700;
}

em {
  font-style: italic;
}

sup {
  font-size: 0.8em;
  vertical-align: super;
}

footer {
  font-size: 0.8em;
  font-weight: 300;
  line-height: 1.5em;
}

sub {
  font-size: 0.8em;
  vertical-align: sub;
}

.name {
  font-size: 16px;
}

.subname {
  font-size: 15px;
}

.minimal {
  font-size: 11px;
  text-transform: uppercase;
}

i {
  font-style: italic;
}
b {
  font-weight: 700;
}

*,
*:before,
*:after {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

/* alerts & modals */

#fog {
  position: fixed;
  width: 100%;
  height: 100%;
  z-index: 300;
  pointer-events: none;
  opacity: 0;
}

#fog.on {
  pointer-events: all;
}

#overlays {
  position: fixed;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 301;
}

.popup_out {
  position: absolute;
  top: calc(50% - 50vh);
  left: calc(50% - 50vw);
  width: 100vw;
  height: 100vh;
  cursor: default;
  z-index: -1;
}

.popup {
  position: relative;
  z-index: 302;
  width: 90%;
  height: 80%;
  max-width: 500px;
  padding-top: 50px;
  border-radius: 10px;
  pointer-events: all;
  opacity: 0;
  border: red 1px solid;
}
.popup.on {
  opacity: 1;
}
.popup.fs {
  max-width: none;
  height: 90vh;
  width: 90v;
}

.popup_container {
  width: 100%;
  height: 100%;
  overflow-y: scroll;
  overflow-x: hidden;
  position: relative;
  z-index: 0;
}

.popup_container.image_modal {
  overflow-y: hidden;
}

.popup_content {
  width: 100%;
  height: auto;
  padding-left: 30px;
  padding-right: 10px;
  padding-bottom: 20px;
  position: relative;
  z-index: 1;
  font-size: 16px;
  line-height: 22px;
}

.popup_container.image_modal .popup_content {
  width: 100%;
  height: 100%;
  background-position: 50% 50%;
  background-size: contain;
  background-repeat: no-repeat;
  transition: all;
}

.popup_title {
  width: 100%;
  height: 50px;
  line-height: 50px;
  position: absolute;
  top: 0;
  left: 0;
  padding-left: 30px;
  font-size: 12px;
  text-transform: uppercase;
  font-weight: 700;
  z-index: 1;
  padding-right: 50px;
}

.popup_x {
  width: 40px;
  height: 40px;
  position: absolute;
  top: 5px;
  right: 5px;
  border-radius: 5px;
  cursor: pointer;
  z-index: 2;
}

.popup .bomb {
  position: absolute;
  height: 3px;
  width: calc(100% - 20px);
  left: 10px;
  bottom: 3px;
}
.popup .wick {
  background: #fff;
  border-radius: 3px;
  height: 3px;
  width: 100%;
}

/* modal */

.modal {
  max-width: 600px;
  top: 20px;
  position: relative;
}
.modal.on {
  top: 0;
}

.modal.bc {
  position: fixed;
  top: auto;
  bottom: 0;
}
.modal.bc.on {
  bottom: 20px;
}

.modal.br {
  position: fixed;
  top: auto;
  bottom: 0;
  right: 20px;
}
.modal.br.on {
  bottom: 20px;
}

.modal.bl {
  position: fixed;
  top: auto;
  bottom: 0;
  right: 20px;
}
.modal.bl.on {
  bottom: 20px;
}

.disclamer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 10;
  pointer-events: none;
}

.disclamer_content {
  padding: 20px;
  width: 85%;
  max-width: 400px;
  height: auto;
  color: #fff;
  text-align: center;
  position: relative;
}

.disclamer_bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.85;
  z-index: -1;
  border-radius: 10px;
}
.disclamer_msg {
  font-size: 18px;
  line-height: 24px;
}
.disclamer_description {
  font-size: 12px;
  line-height: 18px;
  margin-top: 5px;
}

.disclamer_icon {
  width: 100%;
  height: 80px;
}

.disclamer_icon svg {
  width: 100%;
  height: 60px;
}

/* alert */

.alert {
  cursor: pointer;
  position: absolute;
}

.alert.bl {
  left: 20px;
  bottom: 0;
}
.alert.bl.on {
  bottom: 20px;
}

.alert.br {
  bottom: 0;
  right: 20px;
}
.alert.br.on {
  bottom: 20px;
}

.alert.bc {
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
}
.alert.bc.on {
  bottom: 20px;
}

.alert.tr {
  top: 20px;
  right: 20px;
}
.alert.tr.on {
  top: 20px;
}

/* THEME controls */

#theme_bt {
  position: absolute;
  z-index: 100;
  width: 40px;
  height: 40px;
  top: 80px;
  left: -70px;
  background-color: #fff;
  border-radius: 5px;
  fill: #333;
  cursor: pointer;
}

.theme_bt_icon {
  position: absolute;
  width: 100%;
  height: 100%;
  stroke: #222;
}

#theme_bt_icon1 {
  display: block;
}
#theme_bt_icon2 {
  display: none;
}

.theme_mode #theme_bt_icon1 {
  display: none;
}
.theme_mode #theme_bt_icon2 {
  display: block;
}

#theme_panel {
  position: fixed;
  top: 0;
  right: -410px;
  z-index: 100;
  width: 410px;
  height: 100%;
  background-color: #fff;
  font-size: 12px;
  margin-bottom: 10px;
  border-left: #f00 1px solid;
}
#theme_panel ::-webkit-scrollbar-thumb {
  border-color: #fff;
}
#theme_panel ::-webkit-scrollbar-thumb {
  background: #ccc;
}
#theme_panel ::-webkit-scrollbar-thumb:hover {
  background: #999;
}

#theme_container {
  width: 100%;
  height: calc(100% - 60px);
  overflow-y: scroll;
  overflow-x: hidden;
  padding: 25px;
  padding-bottom: 200px;
}

.theme_bts {
  position: absolute;
  bottom: 30px;
  left: 5%;
  height: 30px;
  width: 90%;
  display: flex;
  justify-content: space-between;
}

.theme_bt {
  height: 40px;
  cursor: pointer;
  font-size: 11px;
}

.theme_bt.w25 {
  width: 24%;
}
.theme_bt.w33 {
  width: 32%;
}
.theme_bt.w50 {
  width: 49%;
}

.theme_bt.caution {
  color: #f00;
}

.theme_mode #theme_panel {
  right: 0;
}

.theme_label {
  margin-bottom: 10px;
  font-weight: bold;
  text-transform: uppercase;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.theme_label.division {
  margin-top: 20px;
  margin-bottom: 10px;
}

.theme_label.division:first-child {
  margin-top: 0;
}

.division {
  font-weight: 400;
  text-transform: uppercase;
  font-size: 12px;
}

.theme_control {
  width: 100%;
  height: 30px;
  margin-bottom: 2px;
  display: flex;
  justify-content: start;
  line-height: 30px;
}

.col_options {
  width: 100%;
  height: 0;
  position: relative;
}

.swapper {
  position: absolute;
  right: 0;
  top: 0;
  height: 60px;
  width: 60px;
  border-radius: 10px;
}

.theme_picker {
  padding: 5px;
  border-radius: 3px;
  border: 1px #999 solid;
  background-color: #ff0000;
  width: 30px;
  height: 30px;
  position: relative;
  cursor: pointer;
  margin-right: 10px;
}

.theme_select {
  width: 100%;
  height: 30px;
  line-height: 30px;
  border-radius: 4px;
  background-color: #eee;
  border-color: #ccc;
  text-transform: uppercase;
  padding-left: 5px;
  margin-bottom: 10px;
}

#load {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 10;
  width: 100%;
  height: 100%;
  padding: 20px;
  padding-bottom: 80px;
  background-color: #fefefe;
}

.theme_sub_bts {
  height: 30px;
  display: flex;
  justify-content: space-between;
}

.theme_sub_text {
  width: 100%;
  height: 100%;
  resize: none;
  margin-bottom: 20px;
  border: none;
  border-radius: 3px;
  padding: 10px;
}

/* style */

.shadow {
  /* box-shadow: 0 0 7px 0 rgba(0, 0, 0, 0.15); */
}

.panel .shadow {
  box-shadow: none;
}

.animate8 {
  -webkit-transition: all 0.8s ease-in-out;
  -moz-transition: all 0.8s ease-in-out;
  -ms-transition: all 0.8s ease-in-out;
  -kthtml-transition: all 0.8s ease-in-out;
  transition: all 0.8s ease-in-out;
}

.animate6 {
  -webkit-transition: all 0.6s ease-in-out;
  -moz-transition: all 0.6s ease-in-out;
  -ms-transition: all 0.6s ease-in-out;
  -kthtml-transition: all 0.6s ease-in-out;
  transition: all 0.6s ease-in-out;
}

.animate5 {
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -ms-transition: all 0.5s ease-in-out;
  -kthtml-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}

.animate4 {
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -ms-transition: all 0.4s ease-in-out;
  -kthtml-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}

.animate3 {
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -kthtml-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.animate2 {
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  -kthtml-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

.animate1 {
  -webkit-transition: all 0.1s ease-in-out;
  -moz-transition: all 0.1s ease-in-out;
  -ms-transition: all 0.1s ease-in-out;
  -kthtml-transition: all 0.1s ease-in-out;
  transition: all 0.1s ease-in-out;
}

.animate2-out {
  -webkit-transition: all 0.2s ease-out;
  -moz-transition: all 0.2s ease-out;
  -ms-transition: all 0.2s ease-out;
  -kthtml-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
}

/* credits: https://css-tricks.com/revisiting-prefers-reduced-motion-the-reduced-motion-media-query/ */
@media screen and (prefers-reduced-motion: reduce), (update: slow) {
  * {
    animation-duration: 1ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 1ms !important;
  }
}

.icon45 svg,
.icon31 svg,
.icon24 svg,
.icon23 svg,
.icon21 svg,
.icon18 svg,
.icon15 svg,
.icon13 svg {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  margin: auto;
}

.icon45 svg {
  width: 45px;
  height: 45px;
  stroke-width: 1.3px;
}

.icon31 svg {
  width: 31px;
  height: 31px;
  stroke-width: 1.3px;
}

.icon24 svg {
  width: 24px;
  height: 24px;
  stroke-width: 1.3px;
}

.icon21 svg {
  width: 21px;
  height: 21px;
  stroke-width: 1.5px;
}

.icon18 svg {
  width: 18px;
  height: 18px;
  stroke-width: 1.5px;
}

.icon15 svg {
  width: 15px;
  height: 15px;
  stroke-width: 1.8px;
}

.icon13 svg {
  width: 13px;
  height: 13px;
  stroke-width: 2.2px;
}

/* Main */

#container {
  width: calc(100% - 200px);
  height: 100%;
  overflow: hidden;
  position: fixed;
  left: 100px;
}

.floatingMode #container {
  left: 110px;
  width: calc(100% - 210px);
}

/* CHART */

#chart {
  width: 100%;
  height: 100%;
  position: fixed;
  z-index: 1;
  top: 0;
  left: 0;
}

/* .floatingMode #chart { // fade chart edges: affects performance
  mask-image: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 1) 10%,
    rgba(0, 0, 0, 1) 90%,
    rgba(0, 0, 0, 0) 100%
  );
} */

.panel_mode.left #chart {
  right: 0;
  left: auto;
}
.panel_mode.right #chart {
  left: 0;
  right: auto;
}

#svg_container {
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 1;
  background-size: 100% 100%;
}

#svg_container svg {
  width: 100%;
  height: 100%;
}

/* floating element */

.floating {
  width: 70%;
  max-width: 400px;
  position: absolute;
  left: 0;
  right: 0;
  margin: 0 auto;
  z-index: 2;
}

.floating.bottom {
  bottom: 10px;
}
.floating.top {
  top: 10px;
}

.panel_mode.left .floating {
  right: 100px;
}
.panel_mode.right .floating {
  left: 100px;
}

/* dropdown */

.dropdown {
  height: 60px;
  width: 100%;
  border-radius: 10px;
  background: #333;
  position: absolute;
}

.dropdown_header {
  position: relative;
  width: 100%;
  height: 60px;
  border: #000 1px solid;
  border-radius: 10px;
}

.open .dropdown_header {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

.dropdown_ui {
  width: 100%;
  position: absolute;
  left: 0;
  border: #000 1px solid;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
}

.top .dropdown_ui {
  top: 60px;
  border-bottom: 0;
}
.bottom .dropdown_ui {
  bottom: 60px;
  border-top: 0;
}

.dropdown .arrow {
  width: 60px;
  height: 60px;
  position: absolute;
  top: 0;
  right: 0;
  left: auto;
  transform: rotate(0deg);
}

.dropdown.open .arrow {
  transform: rotate(180deg);
}
.bottom .dropdown .arrow {
  transform: rotate(180deg);
}
.bottom .dropdown.open .arrow {
  transform: rotate(0deg);
}

/* lamp */

#lamp {
  position: absolute;
  bottom: 70px;
  height: 30px;
  width: 90%;
  border-radius: 15px;
  left: 0;
  right: 0;
  margin: auto;
  cursor: pointer;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}

#lamp.active {
  opacity: 1;
  pointer-events: all;
}

#lamp_label {
  position: absolute;
  font-size: 10px;
  font-weight: 400;
  text-transform: uppercase;
  line-height: 30px;
  height: 30px;
  width: calc(100% - 90px);
  left: 40px;
  text-align: center;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
#lamp_location {
  font-weight: 700;
}

.lamp_item {
  width: 30px;
  height: 30px;
  position: absolute;
  top: 0;
}

#lamp_icon {
  left: 0;
}
#lamp_x {
  right: 0;
}

/* floating top */

#loading_feedback {
  position: absolute;
  height: 30px;
  width: 200px;
  border-radius: 15px;
  left: 0;
  right: 0;
  margin: auto;
  top: 15px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}

#loading_feedback_lb {
  line-height: 30px;
  text-align: center;
  font-size: 11px;
  font-weight: 400;
  text-transform: uppercase;
  position: absolute;
  width: 100%;
  height: 100%;
}

#loading_feedback_num {
  width: 16px;
  height: 16px;
  text-align: center;
  line-height: 16px;
  font-size: 9px;
  font-weight: 400;
  position: absolute;
  border-radius: 15px;
  top: 0;
  bottom: 0;
  margin: auto;
  right: 10px;
}

#loading_feedback.open {
  top: 370px;
}

#loading_feedback.loading {
  opacity: 1;
}

/* OPTIONS */

#options {
  bottom: 0;
  left: 0;
  right: 0;
  top: auto;
}

#options_top {
  outline: 0;
}

#options_toggle_button {
  outline-offset: -3px;
  width: 48px;
  height: calc(100% - 10px);
  border-radius: 5px;
  position: absolute;
  top: 5px;
  right: 5px;
  z-index: 1;
}

#options_top .label {
  position: absolute;
  height: 100%;
  line-height: 60px;
  left: 60px;
  top: 0;
  font-size: 11px;
  text-transform: uppercase;
}

#options_menu {
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.options_menu_li {
  width: 43px;
  position: relative;
  height: calc(100% - 10px);
  border-radius: 5px;
  outline-offset: -3px;
}

.options_menu_li .flag {
  position: absolute;
  bottom: -7px;
  height: 0px;
  width: 100%;
  background: #000;
  border-radius: 3px;
  display: none;
}

.open .options_menu_li.on .flag {
  height: 3px;
  display: block;
}

#options_ui {
  position: absolute;
  width: 100%;
  height: 300px;
  top: 60px;
  left: 0;
  display: none;
}

#options_lists {
  width: 100%;
  height: calc(100% - 40px);
  position: absolute;
  left: 0;
  bottom: 0;
}

.options_container {
  width: 100%;
  height: 100%;
  position: relative;
  outline: 0;
}

#options_ui_top {
  width: 100%;
  height: 40px;
  position: absolute;
  top: 0;
  left: 0;
  border-bottom: #000 1px solid;
}

#options_title {
  position: absolute;
  width: 100%;
  height: 40px;
  line-height: 40px;
  font-size: 11px;
  font-weight: 400;
  padding-left: 30px;
  padding-right: 30px;
  text-transform: uppercase;
  outline: 0;
}

/* options_content */

.options_content {
  overflow: auto;
  width: 100%;
  height: 100%;
  padding-top: 20px;
  position: relative;
}

.add_bottom .options_content {
  height: calc(100% - 40px);
}

.options_content .section {
  padding: 0 30px 20px 30px;
}

.options_content .section.no_title {
  padding-bottom: 0;
}

.options_content .subtitle {
  min-height: 21px;
  line-height: 21px;
  width: 100%;
  text-transform: uppercase;
  display: block;
  font-weight: 700;
}

.option_li {
  cursor: pointer;
  position: relative;
  width: 100%;
  height: 21px;
}

.option_li .hit {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 10;
}

.option_li .icon {
  width: 15px;
  height: 21px;
  position: absolute;
  top: 0;
}

.option_li.pad3 .icon {
  left: 10px;
}

.option_li .label {
  position: relative;
  width: 100%;
  height: 21px;
  line-height: 21px;
  font-size: 11px;
  text-transform: uppercase;
  font-weight: 300;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.option_li.on .label {
  font-weight: 400;
}

.option_li.pad0 .label {
  padding: 0;
}
.option_li.pad1 .label {
  padding-left: 15px;
  padding-right: 35px;
}
.option_li.pad2 .label {
  padding-left: 25px;
  padding-right: 25px;
}
.option_li.pad3 .label {
  padding-left: 35px;
  padding-right: 35px;
}

.option_li .toggle {
  left: 0;
  top: 3px;
}

.option_li .trash {
  position: absolute;
  right: 20px;
  top: 0;
  width: 15px;
  height: 100%;
  pointer-events: none;
  z-index: 3;
}

.trash.on {
  pointer-events: all;
  cursor: pointer;
}

.option_li .icon.help_bt {
  position: absolute;
  right: 0;
  left: auto;
  z-index: 11;
}

/* options_bottom */

.options_bottom {
  position: absolute;
  height: 40px;
  line-height: 40px;
  width: 100%;
  bottom: 0;
  left: 0;
  border-top: #000 1px solid;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
}

.options_bottom input {
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
}

.options_bottom .options_preferences {
  position: absolute;
  padding: 0 20px;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: end;
}
.options_bottom .options_preferences.flex {
  justify-content: space-between;
}

.options_bottom input {
  width: 100%;
  height: 100%;
  line-height: 40px;
  padding: 0 30px;
  background: none;
  padding: none;
  border: none;
  outline-offset: -2px;
}

.options_bottom .icon {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  width: 50px;
  height: 25px;
}

.options_bottom input {
  font-size: 12px;
}

.options_bottom .cancel {
  cursor: pointer;
  display: none;
}
.options_bottom.typing .cancel {
  display: block;
}
.options_bottom.typing .icon_search {
  display: none;
}

#order_direction {
  width: 40px;
  height: 30px;
  position: relative;
  cursor: pointer;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}

#order_direction .label {
  position: absolute;
  right: 100%;
  padding-right: 3px;
  padding-left: 3px;
  text-transform: uppercase;
  z-index: 11;
  top: 0;
  height: 30px;
  line-height: 30px;
  text-align: right;
}

.arr_direction {
  width: 12px;
  height: 100%;
  position: relative;
}

/* end options_bottom */

/* SIDE BARS */

.side_bar {
  position: fixed;
  top: 0;
  width: 100px;
  height: 100%;
  color: #fff;
  z-index: 4;
  background-size: 100% 100%;
}

.floatingMode .side_bar {
  border: rgba(0, 0, 0, 0) 1px solid;
  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px;
  overflow: hidden;
  top: 10px;
  height: calc(100% - 20px);
}

.bar_bg {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
}

/* right_bar */

#right_bar {
  right: 0;
}

.floatingMode #right_bar {
  right: 10px;
  border-left: none;
}

#user_bt {
  width: 60px;
  height: 60px;
  position: absolute;
  top: 10px;
  right: 20px;
  background-size: 40px 40px;
  background-position: center;
  background-repeat: no-repeat;
  cursor: pointer;
}

#zoom {
  width: 60px;
  height: 220px;
  position: absolute;
  border-radius: 10px;
  position: absolute;
  background-color: #f00;
  border: red 1px solid;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  padding: 5px 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

#zoom .bt {
  height: 43px;
  width: calc(100% - 10px);
  left: 5px;
  right: 5px;
}

#zoom_slider {
  width: 100%;
  height: 100px;
  position: relative;
  cursor: pointer;
}

#zoom_slider_track {
  width: 1px;
  height: 100%;
  background: #fff;
  margin: auto;
}

#zoom_slider_handler {
  width: 100%;
  height: 21px;
  position: absolute;
  left: 0;
  top: auto;
}

#zoom_slider_icon {
  position: absolute;
  width: 10px;
  height: 10px;
  top: 10px;
  background: #fff;
  border-radius: 10px;
  bottom: -10px;
  left: 0;
  right: 0;
  margin: auto;
}

/* leftBar */

#left_bar {
  left: 0;
}

.floatingMode #left_bar {
  left: 10px;
  border-right: none;
}

#logo {
  position: absolute;
  left: 0;
  right: 0;
  width: 50px;
  height: 50px;
  top: 15px;
  margin: auto;
  display: flex;
  justify-content: center;
  align-items: center;
}

#m_logo {
  display: flex;
  justify-content: center;
  align-items: center;
}

#ev_logo {
  width: 32px;
  height: 22px;
  stroke-width: 0;
  position: static;
}

#logo_img,
#m_logo_img {
  width: 100%;
  height: 100%;
  background-size: cover;
  display: none;
}

#app_info {
  width: 100%;
  height: 80px;
  bottom: 0;
  left: 0;
  position: absolute;
  display: flex;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  font-size: 10px;
  font-weight: 400;
}

/* bts */

.bt {
  width: 100%;
  border-radius: 5px;
  height: 80px;
  position: relative;
  list-style: none;
  background: transparent;
  border: none;
  cursor: pointer;
}

.bt .bt:active {
  outline: 0;
}

.bt svg {
  pointer-events: none;
  position: absolute;
  z-index: 1;
}

.bt .flag {
  position: absolute;
  border-radius: 4px;
  top: 2px;
  left: -23px;
  width: 0;
  height: calc(100% - 4px);
  z-index: 3;
  display: none;

  -webkit-transition: width 0.1s ease-in-out;
  -moz-transition: width 0.1s ease-in-out;
  -ms-transition: width 0.1s ease-in-out;
  -kthtml-transition: width 0.1s ease-in-out;
  transition: width 0.1s ease-in-out;
}

.panel_mode .bt .flag {
  display: block;
}

.bt.on .flag {
  width: 3px;
}

hr {
  width: 100%;
  border: none;
  height: 1px;
  background: #fff;
  margin: 0;
  padding: 0;
}

hr.section {
  margin-top: 30px;
}

/* MENU */

#menu_container {
  position: absolute;
  width: 100%;
  height: calc(100% - 160px);
  top: 80px;
}

#menu {
  width: 60px;
  position: relative;
  background-color: red;
  border: 1px red solid;
  border-radius: 10px;
  padding: 5px 0;
}

.panel_mode #menu {
  background-color: transparent;
  border-color: transparent;
}

#menu .center {
  position: relative;
}

#menu .top {
  position: fixed;
  top: 80px;
}

#menu .bottom {
  position: fixed;
  bottom: 80px;
}

#menu .bt {
  height: 43px;
  width: calc(100% - 10px);
  left: 5px;
  right: 5px;
}

#feedback_bt {
  bottom: 0;
  right: 0;
  position: absolute;
}

/* PANEL */

.panel {
  height: 100%;
  color: #fff;
  position: fixed;
  top: 0;
  z-index: 5;
  overflow: hidden;
  max-width: 700px;
  min-width: 400px;
  display: none;
}

.floatingMode .panel {
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
  border: 1px #fff solid;
  height: calc(100% - 20px);
  top: 10px;
}

#leftPanel {
  width: calc(50% - 100px);
  left: 100px;
  border-right: 1px #fff solid;
  border-left: 1px #fff solid;
}

.floatingMode #leftPanel {
  left: 110px;
}

#right_panel {
  width: calc(25% - 80px);
  right: 100px;
  border-left: 1px #fff solid;
}

a {
  font-weight: 400;
}

a:link {
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}
a:active {
  text-decoration: none;
  outline: 0;
}
a:visited {
  text-decoration: none;
}

a.anchor:link {
  text-decoration: none;
}
a.anchor:hover {
  text-decoration: none;
}
a.anchor:active {
  text-decoration: none;
}
a.anchor:visited {
  text-decoration: none;
}

.panel_page {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

#panel_slider {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}

#panel_slider.level_1 .panel_page.left {
  display: block;
}
#panel_slider.level_1 .panel_page.right {
  display: none;
}

#panel_slider.level_2 .panel_page.right {
  display: block;
}
#panel_slider.level_2 .panel_page.left {
  display: none;
}

.card_section {
  position: relative;
  height: 100%;
}

.panel_title,
.card_title {
  font-size: 12px;
  height: 15px;
  line-height: 15px;
  position: relative;
  pointer-events: none;
  text-transform: uppercase;
  padding-left: 35px;
  padding-right: 80px;
  width: 100%;
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.card_title {
  padding-left: 0;
  padding-right: 0;
}

.panel_title b,
.card_title b {
  font-weight: 700;
  opacity: 1;
}

.panel_title_total {
  margin-right: 4px;
  font-weight: 400;
}

.title_location {
  font-size: 10px;
  margin-bottom: 5px;
  text-transform: uppercase;
}

.subtitle {
  font-size: 12px;
  font-weight: 400;
  pointer-events: none;
  z-index: 4;
  text-transform: uppercase;
}

.subtitle.hr {
  margin-top: 10px;
}

.panel_page.right .panel_title {
  padding-left: 0;
}

.panel_bt {
  z-index: 9;
  height: 50px;
  width: 50px;
  position: absolute;
  top: 15px;
  cursor: pointer;
  border-radius: 5px;
  border: none;
}

.panel_bt:active {
  outline: 0;
}

.panel_bt.close {
  right: 15px;
  background: transparent;
}

.panel_bt.back {
  left: 15px;
  background: transparent;
}

.section_icon {
  width: 80px;
  height: 80px;
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  pointer-events: none;
  z-index: 4;
}

.panel_top {
  height: 100%;
  width: calc(100% - 160px);
  left: 80px;
  position: absolute;
  top: 0;
  bottom: 0;
  text-align: center;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;

  display: flex;
  flex-direction: column-reverse;
  justify-content: center;
  align-items: center;
}

/* 	PANEL MODE  */

.panel_mode.left #leftPanel {
  display: block;
}

.panel_mode.right #right_panel {
  display: block;
}

.panel_mode.left #left_bar_bg,
.panel_mode.full #left_bar_bg {
  opacity: 1;
}

.panel_mode.right #right_bar_bg,
.panel_mode.full #right_bar_bg {
  opacity: 1;
}

/*  metrics  */

.metric_container {
  margin-bottom: 50px;
}

.metric_item {
  margin-bottom: 22px;
}

.metric_item_name {
  margin-bottom: 10px;
}

.metric_name {
  font-size: 16px;
  font-weight: 400;
}

.resultContainer {
  position: relative;
  padding: 5px 0 5px 15px;
  margin-bottom: 5px;
}

.resultFlagContainer {
  position: absolute;
  width: 4px;
  height: 100%;
  left: 0;
  top: 0;
  display: flex;
  justify-content: center;
}

.resultFlag {
  width: 2px;
  border-radius: 2px;
  height: 100%;
}

.highlighted .resultFlag {
  width: 4px;
  border-radius: 4px;
}

.chartSubtitle {
  font-size: 11px;
  font-weight: 400;
  display: flex;
  justify-content: start;
  align-items: center;
  font-size: 11px;
  line-height: 13px;
}

.chartLegend {
  display: inline-block;
  cursor: pointer;
  text-transform: uppercase;
  padding-left: 5px;
}

.chartLegendIcon {
  display: inline-block;
  position: relative;
  width: 15px;
  height: 22px;
  flex-grow: 0;
  flex-shrink: 0;
}

.quadrantsChart {
  width: 100%;
  height: 300px;
  display: block;
  border-radius: 10px;
}

.quadrantsChart svg {
  width: 100%;
  height: 100%;
}

.axisLabel {
  text-transform: uppercase;
  font-size: 10px;
  font-weight: 400;
}

.quadLabel {
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 400;
}

.cardChart {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 5px;
  padding-top: 10px;
  padding-bottom: 10px;
}
.cardChart svg {
  width: 300px;
  height: 300px;
}

/*  updater */

.updater {
  width: 100%;
  height: 35px;
  position: relative;
  padding-left: 40px;
  padding-top: 2px;
  line-height: 35px;
  cursor: pointer;
  font-size: 12px;
  opacity: 1;
  border-radius: 5px;
}

.updater.loading {
  pointer-events: none;
  padding-left: 70px;
}

.updater .toggle {
  top: 0;
  bottom: 0;
  margin: auto;
  left: 5px;
  pointer-events: none;
}

/* 	text panels (about & help )  */
/* 
#about .section_title {
  margin-top: 25px;
  margin-bottom: 10px;
}

#about_container .text p {
  margin-bottom: 15px;
}

#about_container .text {
  font-size: 14px;
  line-height: 20px;
} */

.header_title {
  /* pointer-events: none; */
  position: absolute;
  top: 0;
  bottom: 0;
  left: 35px;
  height: 40px;
  margin: auto;
}

.project_name {
  font-weight: 400;
  font-size: 13px;
  line-height: 18px;
  height: 18px;
}

.board_title {
  font-size: 15px;
  line-height: 20px;
  height: 20px;
}

.text_panel {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.single_link {
  font-size: 14px;
  font-weight: 400;
  padding: 5px 10px 5px 25px;
  cursor: pointer;
  position: relative;
  border-radius: 3px;
}

.single_link .icon {
  width: 20px;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
}

.quote {
  font-size: 24px;
  line-height: 30px;
  font-style: italic;
  font-weight: 300;
  margin-bottom: 30px;
  width: 100%;
  text-align: center;
}

.quote .author {
  font-size: 14px;
  font-style: normal;
  margin-top: 10px;
}

#about_logos {
  width: 100%;
  height: 150px;
  margin: 50px 0;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

#about_logos svg {
  width: 100%;
}

/* help */

#help_container .content {
  padding-bottom: 100px;
}

#help_position {
  font-weight: 700;
  display: inline-block;
  margin-right: 10px;
}

.chart_legend {
  font-size: 14px;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  justify-items: start;
  font-size: 12px;
  text-transform: uppercase;
}

.chart_legend .icon {
  width: 10px;
  margin-right: 5px;
  height: 100%;
  position: relative;
}

.legend_label {
  font-size: 10px;
  min-width: 17px;
  height: 17px;
  border-radius: 10px;
  margin-right: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 400;
  text-transform: uppercase;
}

.legend_text {
  font-weight: 400;
}

/* 	MOD.NAVIGATOR  */

.navigator {
  width: 100%;
  height: 100%;
  position: relative;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
}

.navigator_bt {
  height: 100%;
  width: 60px;
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  cursor: pointer;
  border-radius: 5px;
}

.navigator_bt.next {
  right: 0;
}
.navigator_bt.prev {
  left: 0;
}

.navigator_bt.off {
  pointer-events: none;
}

.navigator_bt.off .iconOn {
  display: none;
}

.navigator_bt.off .iconOff {
  display: block;
}

.navigator_bt .iconOff {
  display: none;
}

.navigator_pages {
  position: absolute;
  width: calc(100% - 160px);
  height: 100%;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  display: flex;
  flex-direction: row;
  justify-content: center;
}

.navigator_page {
  display: inline-block;
  height: 100%;
  position: relative;
  cursor: pointer;
  width: 10px;
}

.navigator_page.on {
  width: 30px;
}

.navigator_page .dot {
  height: 5px;
  width: calc(100% - 5px);
  border-radius: 5px;
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  background-color: #fff;
}

.navigator_page.on .label {
  opacity: 1;
}

#help_title {
  font-size: 16px;
  height: 50px;
  line-height: 50px;
}

.icons_list {
  width: 100%;
  position: relative;
  text-align: center;
}

.icons_list .icon {
  display: inline-block;
  height: 80px;
  width: 80px;
  position: relative;
}

.icons_list .icon .label {
  position: absolute;
  bottom: 3px;
  left: 0;
  width: 100%;
  height: 15px;
  text-align: center;
  text-transform: uppercase;
  font-size: 9px;
  line-height: 14px;
  font-weight: 400;
}

/* MOD.button */

.button {
  position: relative;
  cursor: pointer;
  border: none;
  text-align: center;
  outline-offset: 2px;
  outline: none;
}
.button:focus {
  outline: none;
}

.button:focus-visible {
  outline: 1px solid #fff;
}

.button.discreet {
  border-radius: 5px;
  height: 30px;
  padding-right: 10px;
  line-height: 20px;
  font-size: 11px;
  background: transparent;
  display: flex;
  justify-content: center;
  align-items: center;
}

.button.sm {
  border-radius: 5px;
  height: 40px;
  padding: 0 40px;
  line-height: 40px;
  font-size: 12px;
  width: 50%;
  margin-left: 25%;
  margin-right: 25%;
}
.button.md {
  border-radius: 6px;
  height: 50px;
  padding: 0 50px;
  line-height: 50px;
  font-size: 13px;
  width: 70%;
  margin-left: 15%;
  margin-right: 15%;
}
.button.lg {
  border-radius: 7px;
  height: 60px;
  padding: 0 60px;
  line-height: 60px;
  font-size: 14px;
  width: 90%;
  margin-left: 5%;
  margin-right: 5%;
}

.button.sm.wide {
  width: 60%;
  margin-left: 20%;
  margin-right: 20%;
}
.button.md.wide {
  width: 80%;
  margin-left: 10%;
  margin-right: 10%;
}
.button.lg.wide {
  width: 96%;
  margin-left: 2%;
  margin-right: 2%;
}

.button .label {
  font-weight: 400;
  text-transform: uppercase;
}

.button .icon {
  position: absolute;
  top: 0;
}

.button .icon.right {
  right: 0;
}

.button .icon.left {
  left: 0;
}

.button.lg .icon {
  width: 60px;
  height: 60px;
}

.button.md .icon {
  width: 50px;
  height: 50px;
}

.button.sm .icon {
  width: 40px;
  height: 40px;
}

.button.discreet .icon {
  width: 30px;
  height: 30px;
  position: relative;
}

.button.favorite {
  width: auto;
  margin: 0;
  padding-right: 15px;
}

.button.sm.favorite,
.button.md.favorite,
.button.lg.favorite {
  margin: 0;
}

/* content */

.container {
  width: 100%;
  position: absolute;
  overflow-x: hidden;
  overflow-y: scroll;
  font-size: 16px;
  line-height: 22px;
  font-weight: 300;
  z-index: 4;
}

/* mode_default: header */
.mode_default .container {
  height: calc(100% - 80px);
  top: 80px;
}
.mode_default .top_bar,
.mode_default .footer {
  display: none;
}

/* mode_footer: header (80/70) + footer */
.mode_footer .container {
  height: calc(100% - 160px);
  top: 80px;
}
.mode_footer .top_bar,
.mode_footer .bottom_bar {
  display: none;
}

/* mode_topbar: header (80/70) + topbar (45) */
.mode_topbar .container {
  height: calc(100% - 130px);
  top: 130px;
}
.mode_topbar .footer,
.mode_topbar .bottom_bar {
  display: none;
}

/* mode_full: header + topbar + footer */
.mode_full .container {
  height: calc(100% - 210px);
  top: 130px;
}
.mode_full .bottom_bar {
  display: none;
}

.content {
  width: 100%;
  position: relative;
  padding: 35px;
  padding-right: 20px;
}

.content.list {
  padding: 20px 35px 25px 35px;
}

.content_padding {
  padding-left: 35px;
  padding-right: 15px;
}

.header {
  width: 100%;
  position: absolute;
  top: 0;
  height: 81px;
  border-bottom: #fff 1px solid;
  z-index: 5;
  display: flex;
  flex-direction: column-reverse;
  justify-content: center;
}

.top_bar {
  width: 100%;
  height: 50px;
  position: absolute;
  top: 81px;
  border-bottom: #fff 1px solid;
  z-index: 5;
}

.top_bar input {
  border-radius: 0;
}

.bottom_bar {
  width: 100%;
  height: 51px;
  position: absolute;
  bottom: 80px;
  border-top: #fff 1px solid;
  z-index: 5;
}

.footer {
  width: 100%;
  height: 80px;
  border-top: #fff 1px solid;
  position: absolute;
  bottom: 0;
  z-index: 5;
  padding: 10px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap;
}

.footer .section {
  position: absolute;
  width: 100%;
  height: 100%;
  padding-top: 15px;
}

.related_project {
  width: 100%;
  height: 60px;
  cursor: pointer;
  margin-bottom: 2px;
  position: relative;
  list-style: none;
}

.related_project .image {
  width: 60px;
  height: 60px;
  position: absolute;
  left: 0;
  top: 0;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  border-radius: 3px;
}

.related_project .label {
  width: calc(100% - 60px);
  height: 60px;
  position: absolute;
  right: 0;
  top: 0;
  line-height: 60px;
  padding-left: 20px;

  font-size: 16px;
}

.credits {
  list-style: none;
}

.person {
  position: relative;
  padding-left: 10px;
  width: calc(100% + 10px);
  left: -10px;
  line-height: 20px;
}

.person .plus {
  height: 25px;
}

.person .name {
  height: 20px;
  font-weight: 700;
  font-size: 14px;
  line-height: 20px;
}

.person.expandable {
  cursor: pointer;
}

.role {
  font-size: 11px;
  text-transform: uppercase;
  margin-left: 5px;
  margin-right: 5px;
  list-style: none;
  position: relative;
  line-height: 20px;
}

.credits .division {
  margin-top: 15px;
  margin-bottom: 5px;
  font-size: 12px;
  line-height: 20px;
  text-transform: uppercase;
  font-weight: 400;
}

.copyright {
  font-size: 11px;
  text-align: center;
  text-transform: uppercase;
}

.imageCredit {
  font-size: 11px;
  text-align: right;
}

/*  COMPONENTS  */

/* list item */

.listContainer .list {
  margin-bottom: 30px;
}

.listContainer .list:last-child {
  margin-bottom: 0;
}

.list {
  width: 100%;
  min-height: 100%;
  position: relative;
}

.list.p0 {
  padding: 0 !important;
}

.related {
  width: 100%;
  position: relative;
}

.list_item {
  position: relative;
  list-style: none;
  border: none;
  background: transparent;
  overflow: hidden;
}

.list_item:active {
  outline: 0;
}

.list_item.no_hover:hover {
  background: transparent !important;
}

.list_item.mn {
  min-height: 30px;
  height: auto;
  position: relative;
  border-radius: 5px;
  border: none;
  margin-bottom: 1px;
}

.list_item.bn {
  height: 150px;
  border-radius: 10px;
  width: 100%;
  left: 0;
  background-color: #f00;
  margin-bottom: 10px;
}

.list_item.lg {
  height: 80px;
  border-radius: 7px;
  width: calc(100% + 10px);
  left: -10px;
}
.list_item.md {
  height: 60px;
  border-radius: 5px;
  width: calc(100% + 7px);
  left: -7px;
}
.list_item.sm {
  height: 36px;
  border-radius: 4px;
  width: calc(100% + 4px);
  left: -4px;
}

.list_item.inline {
  position: relative;
  display: inline-block;
  padding: 0 10px;
  margin-right: 5px;
  margin-bottom: 5px;
  height: 30px;
  border-radius: 15px;
  border: none;
  width: auto;
  padding-left: 35px;
}

.list_item .drawer {
  right: 20px;
  top: 10px;
  bottom: 10px;
  margin: auto;
}

.list_item .thumb {
  position: absolute;
  border-radius: 4px;
  overflow: hidden;
  border: #f00 1px solid;
}

.list_item.bn .thumb {
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  border-radius: 0;
  transform: scale(1.01);
}

.list_item.bn:hover .thumb,
.list_item.bn:focus .thumb {
  transform: scale(1.05);
}

.list_item.lg .thumb {
  width: 60px;
  height: 60px;
  top: 10px;
  left: 10px;
}

.list_item.md .thumb {
  width: 46px;
  height: 46px;
  top: 7px;
  left: 7px;
}

.list_item.sm .thumb {
  width: 32px;
  height: 32px;
  top: 2px;
  left: 0;
}

.list_item.mn .thumb {
  width: 20px;
  height: 15px;
  top: 7px;
  left: 4px;
}

.list_item.inline .thumb {
  position: absolute;
  left: 10px;
  top: 0;
  width: 20px;
  height: 30px;
}

.fill {
  background-size: cover;
  background-position: center;
}
.fit {
  background-position: center;
  background-repeat: no-repeat;
  background-size: 75%;
}

.list_item .info {
  position: absolute;
  height: 100%;
  top: 0;
  z-index: 10;
  min-height: 30px;
}

.list_item.bn .info {
  left: 20px;
  width: calc(100% - 40px);
  top: auto;
  padding-bottom: 20px;
  display: flex;
  flex-direction: column;
  justify-content: end;
  align-items: end;
}

.list_item.bn .fog {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9;
}

.list_item.lg .info {
  left: 90px;
  width: calc(100% - 95px);
}
.list_item.md .info {
  left: 70px;
  width: calc(100% - 75px);
}
.list_item.sm .info {
  left: 50px;
  width: calc(100% - 55px);
}
.list_item.mn .info {
  left: 30px;
  width: calc(100% - 35px);
}
.list_item.inline .info {
  display: inline-block;
  height: 100%;
  vertical-align: top;
  position: relative;
}

/* favorite list-item */
.list_item .star {
  position: absolute;
  height: 100%;
  top: 0;
  right: 0;
  display: none;
  justify-content: center;
  align-items: center;
}
.list_item.show_star .star {
  display: flex;
}

.list_item.show_star .starOff {
  display: flex;
}
.list_item.show_star .starOn {
  display: none;
}

.list_item.show_star.favorite_star .starOff {
  display: none;
}
.list_item.show_star.favorite_star .starOn {
  display: flex;
}

.list_item.lg .star {
  width: 40px;
}
.list_item.md .star {
  width: 35px;
}
.list_item.sm .star {
  width: 30px;
}
.list_item.mn .star {
  width: 20px;
}
/* todo: inline.star */

.list_item.lg.show_star .info {
  width: calc(100% - 130px);
}
.list_item.md.show_star .info {
  width: calc(100% - 105px);
}
.list_item.sm.show_star .info {
  width: calc(100% - 80px);
}
.list_item.mn.show_star .info {
  width: calc(100% - 50px);
}
.list_item.inline .info {
  padding-right: 30px;
}

.list_item .label {
  width: 100%;
  height: 20px;
  line-height: 20px;
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  font-weight: 400;
  line-height: 20px;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}

.list_item.bn .label {
  width: 100%;
  line-height: 20px;
  position: relative;
  top: auto;
  bottom: auto;
  margin: 0;
}

.list_item.bn .label .name {
  font-size: 20px;
}
.list_item.lg .label .name {
  font-size: 16px;
}
.list_item.md .label .name {
  font-size: 15px;
}
.list_item.sm .label.name {
  font-size: 15px;
}
.list_item.mn .label .name {
  font-size: 14px;
}

.list_item.inline .info {
  width: auto;
  display: block;
  position: relative;
}

.list_item.inline .label {
  position: relative;
  display: inline-block;
  font-weight: 400;
  line-height: 30px;
  height: 30px;
  top: 0;
}

.list_item.inline .label .name {
  font-size: 14px;
}

.list_item.lg .label .number {
  font-size: 14px;
  font-weight: 300;
}
.list_item.md .label .number {
  font-size: 13px;
  font-weight: 300;
}
.list_item.sm .label .number {
  font-size: 13px;
  font-weight: 300;
}
.list_item.mn .label .number {
  font-size: 12px;
  font-weight: 300;
}

.list_item .double_lb .label {
  top: 50%;
  bottom: initial;
  margin: none;
}

.list_item .secondary_label {
  position: absolute;
  bottom: 50%;
  width: 100%;
  font-weight: 400; /* keep 400 for lightmode! */
}

.list_item.md.icon_thumb .info {
  left: 65px;
}
.list_item.sm.icon_thumb .info {
  left: 45px;
}

.list_item .info.no_thumb {
  width: calc(100% - 20px);
  left: 25px;
}

/* subfuncions */

.subfunc {
  width: 25px;
  height: 100%;
  position: absolute;
  top: 0;
  cursor: pointer;
}

.subfunc.pos0 {
  right: 5px;
}
.subfunc.pos1 {
  right: 30px;
}
.subfunc.pos2 {
  right: 55px;
}

.drawer {
  position: absolute;
  width: 60px;
  height: 30px;
  opacity: 0;
}
.drawer .bg {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 4px;
}
.hover .drawer {
  opacity: 1;
}

/* toggle */

.toggle {
  position: absolute;
  background: #fff;
  overflow: hidden;
}

.toggle.sm {
  width: 25px;
  height: 14px;
  border-radius: 14px;
}

.toggle.md {
  width: 30px;
  height: 16px;
  border-radius: 16px;
}

.toggle .handler {
  background: #fff;
  position: absolute;
  top: 2px;
  left: 2px;
}

.toggle.sm .handler {
  width: 10px;
  height: 10px;
  border-radius: 10px;
}

.toggle.md .handler {
  width: 12px;
  height: 12px;
  border-radius: 12px;
}

.on .toggle.sm .handler {
  left: 13px;
}

.on .toggle.md .handler {
  left: 16px;
}

.on .toggle .bg {
  opacity: 1;
}

/* content modules //////////////////////////////////////////*/

.section {
  width: 100%;
  position: relative;
  height: auto;
}

.margin_mn {
  margin-top: 5px;
}
.margin_sm {
  margin-top: 10px;
}
.margin_md {
  margin-top: 20px;
}
.margin_lg {
  margin-top: 30px;
}
.margin_xl {
  margin-top: 50px;
}
.margin_xxl {
  margin-top: 70px;
}

.h_mn {
  height: 5px;
}
.h_sm {
  height: 10px;
}
.h_md {
  height: 20px;
}
.h_lg {
  height: 30px;
}
.h_xl {
  height: 50px;
}
.h_xxl {
  height: 70px;
}

.content .h_mn:first-child,
.content .h_sm:first-child,
.content .h_md:first-child,
.content .h_lg:first-child,
.content .h_xl:first-child,
.content .h_xxl:first-child {
  height: 0;
}

.flex_center {
  display: flex;
  justify-content: center;
  align-items: center;
}
.flex_right {
  display: flex;
  justify-content: end;
  align-items: center;
}
.flex_left {
  display: flex;
  justify-content: start;
  align-items: center;
}
.h_full {
  height: 100%;
}

.col1 {
  width: 100%;
  max-width: 330px;
  position: relative;
}

.col2 {
  width: 50%;
  max-width: 300px;
  position: relative;
}

.section_container {
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: start;
}

.section_title {
  width: 100%;
  height: auto;
  font-size: 18px;
  line-height: 24px;
  min-height: 24px;
  font-weight: 700;
}
.section_title::first-letter {
  text-transform: capitalize;
}

.section_title .counter {
  font-size: 13px;
}

.list .section_title {
  font-size: 16px;
  margin-bottom: 10px;
}

.intro {
  font-size: 15px;
  line-height: 20px;
  font-weight: 300;
  color: #fff;
}

.footnote {
  font-size: 12px;
  line-height: 18px;
  font-weight: 300;
}

.footnote p {
  margin-bottom: 10px;
}

.subtext {
  margin-top: 2px;
  font-size: 14px;
  line-height: 20px;
  font-weight: 300;
}

.subtext2 {
  margin-top: 10px;
  font-size: 12px;
  line-height: 18px;
  font-weight: 300;
}

.text {
  font-size: 16px;
  line-height: 22px;
  font-weight: 300;
}

.text::first-letter {
  text-transform: uppercase;
}

.text li {
  margin-left: 20px;
  margin-bottom: 5px;
  list-style: disc;
}

.text p {
  margin-bottom: 20px;
}

.text > *:last-child {
  margin-bottom: 0;
}

.bullet_list {
  padding-left: 20px;
}

.bullet_list li {
  list-style: disc;
  padding-bottom: 10px;
}

.bullet_list_sm {
  padding-left: 20px;
}

.bullet_list_sm li {
  list-style: circle;
  padding-bottom: 7px;
  font-size: 14px;
  line-height: 20px;
}

h1 {
  outline: 0;
}

.text h1 {
  font-size: 18px;
  margin-top: 30px;
  font-weight: 400;
  margin-bottom: 20px;
  line-height: 28px;
}

.text h2 {
  margin-top: 40px;
  font-weight: 400;
  margin-bottom: 20px;
}

.text h2.min_margin {
  margin-bottom: 5px;
}

.text h3 {
  font-size: 18px;
  font-weight: 400;
  margin-bottom: 20px;
}

.text h1:first-child {
  margin-top: 0;
}
.text h2:first-child {
  margin-top: 0;
}

.text img {
  display: block;
  width: 100%;
  height: auto;
  margin-bottom: 20px;
  border-radius: 5px;
}

.icon_text {
  width: 100%;
  height: auto;
  min-height: 80px;
  position: relative;
}

.icon_text.left {
  padding-left: 160px;
  padding-right: 50px;
}
.icon_text.right {
  padding-right: 160px;
  padding-left: 50px;
}

.icon_text .icon {
  width: 75px;
  height: 75px;
  position: absolute;
  top: 0;
}

.icon_text .icon svg {
  width: 100%;
  height: 100%;
}

.icon_text.left .icon {
  left: 50px;
}
.icon_text.right .icon {
  right: 50px;
}

.link {
  font-size: 16px;
  line-height: 22px;
  font-weight: 300;
  cursor: pointer;
}

.extra_link {
  margin-bottom: 5px;
  padding-left: 20px;
  position: relative;
}

.extra_link .icon {
  position: absolute;
  left: 0;
  top: 5px;
  width: 15px;
  height: 15px;
}

.link:hover {
  text-decoration: underline;
}

.link_icon {
  position: relative;
  width: 21px;
  margin-left: 5px;
  top: 2px;
}

.source {
  width: 100%;
  position: relative;
  margin-bottom: 10px;
}

.source .top {
  width: 100%;
  position: relative;
  border-radius: 5px;
}

.source .top .label {
  padding-top: 2px;
  position: relative;
  font-weight: 700;
  display: block;
  text-transform: uppercase;
  padding-left: 25px;
}

.source_title {
  padding-top: 5px;
  padding-bottom: 5px;
  position: relative;
  font-size: 15px;
  line-height: 20px;
  font-weight: 400;
  padding-left: 30px;
  padding-right: 25px;
  display: block;
  margin-bottom: 0;
}

.source .top .icon {
  position: absolute;
  left: 0;
  top: 0;
  width: 25px;
  height: 30px;
}

.source .link {
  font-size: 13px;
  padding-left: 50px;
  line-height: 18px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  padding-right: 20px;
  position: relative;
  padding-top: 0;
}
.source.no_title .link {
  padding-left: 22px;
}

.source .link {
  height: 22px;
  line-height: 22px;
}

.source .link .icon {
  height: 22px;
}

.source .icon {
  position: absolute;
  left: 30px;
  top: 0;
  width: 15px;
  height: 18px;
}

.source.no_title .icon {
  left: 0;
}

.source .link:hover {
  text-decoration: underline;
}

.source .plus_text {
  padding-left: 30px;
}

.plus_text {
  overflow: hidden;
  font-size: 13px;
  line-height: 17px;
  height: 0;
  padding-right: 25px;
}

.plus_text.open {
  height: auto;
  padding-bottom: 10px;
}

.expandable {
  cursor: pointer;
  padding-right: 25px;
  border-radius: 5px;
}

.lang_selector {
  width: 100%;
  height: 40px;
  position: relative;
  display: flex;
  justify-content: center;
}

.lang_bt {
  height: 40px;
  padding: 0 20px;
  width: auto;
  border: none;
  line-height: 40px;
  font-size: 11px;
  background: none;
  text-transform: uppercase;
  cursor: pointer;
  font-weight: 400;
  margin: 0 1px;
}

.lang_bt:first-child {
  border-top-left-radius: 5px;
  border-bottom-left-radius: 5px;
}

.lang_bt:last-child {
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
}

/* autoNav */

.autoplay_container {
  width: 100%;
  position: relative;
  border-radius: 5px;
  border: #fff 1px solid;
  padding: 10px 12px;
  font-size: 14px;
  text-align: left;
}

.autoplay {
  position: relative;
  width: 100%;
  text-align: center;
}
.autoplay .preloader {
  position: absolute;
  right: 0;
  left: auto;
}

.autoplay_cancel {
  position: fixed;
  z-index: 302;
  right: 0;
  top: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
  outline: none;
}

.dash {
  width: 40px;
  height: 2px;
  position: absolute;
  bottom: 0;
}

.hr {
  width: 100%;
  height: 1px;
}

hr {
  margin-top: 30px;
  margin-bottom: 30px;
  height: 2px;
  width: 40px;
}

.quote {
  text-align: center;
}

.quote_tx {
  display: inline-block;
  width: 100%;
  padding: 0 100px;
  font-size: 18px;
  line-height: 24px;
  font-weight: 300;
  position: relative;
  margin-bottom: 20px;
}

.quote_mark {
  position: absolute;
  font-size: 80px;
  line-height: 0;
  height: 30px;
  margin: auto;
  padding-top: 40px;
}

.quote_mark.left {
  left: 50px;
  top: -12px;
}
.quote_mark.right {
  right: 50px;
  bottom: -12px;
}

.quote_author {
  font-size: 14px;
  padding: 0 100px;
  line-height: 20px;
}

.quote_author .detail {
  font-size: 12px;
  text-transform: uppercase;
  opacity: 0.3;
  display: inline-block;
  margin-left: 10px;
}

.metric_result {
  width: 100%;
  position: relative;
  font-size: 14px;
  line-height: 22px;
  font-weight: 300;
  margin-bottom: 3px;
}
.metric_result.title {
  font-size: 12px;
  text-transform: uppercase;
}

.metric_lamp {
  position: absolute;
  cursor: pointer;
  right: 0;
  width: 20px;
  height: 20px;
  top: 0;
}

.metric_result_mini {
  position: absolute;
  top: 0;
  right: 30px;
  font-weight: 700;
  font-size: 14px;
}

.chartDescription {
  font-size: 14px;
  line-height: 20px;
}

.chartDescription.title {
  text-transform: uppercase;
}

.step {
  height: 2px;
  border-radius: 2px;
  display: inline-block;
  margin-right: 2px;
  position: relative;
  width: 100%;
}
.step.highlighted {
  height: 4px;
  border-radius: 0;
}

/* md */
.mn .step {
  height: 2px;
}
.mn .step.highlighted {
  height: 2px;
}

/* md */
.md .step {
  height: 3px;
}
.md .step.highlighted {
  height: 6px;
}

/* lg */
.lg .step {
  height: 4px;
}
.lg .step.highlighted {
  height: 8px;
}

.step:last-child {
  margin-right: 0;
}

.text blockquote {
  font-style: italic;
  margin-top: 50px;
  padding-left: 20px;
  padding-right: 20px;
  border-left: #fff 3px solid;
  margin-bottom: 50px;
  font-size: 18px;
  line-height: 26px;
}

.text blockquote em {
  font-size: 14px;
  line-height: 1.33em;
  display: block;

  font-style: normal;
}

.asterisk {
  font-size: 12px;
  line-height: 18px;
  margin-top: 20px;
}

.asterisk ul li {
  margin-bottom: 0;
  margin-left: 0;
}

.asterisk ul {
  margin-left: 10px;
}

.text ul {
  margin-bottom: 20px;
  padding-left: 0;
  list-style: disc;
}

.summary {
  font-size: 18px;
  line-height: 26px;
  font-weight: 300;
}

.poster .plus_text {
  font-size: 15px;
  line-height: 20px;
}
.source .plus_text {
  font-size: 13px;
  line-height: 17px;
}

.plus {
  position: absolute;
  right: 5px;
  top: 0;
  width: 15px;
  height: 30px;
}

.message {
  width: 100%;
  text-align: center;
  padding: 0 5px;
}

.message.left {
  text-align: left;
}

.message.lg {
  font-size: 18px;
  line-height: 24px;
}
.message.md {
  font-size: 16px;
  line-height: 20px;
}
.message.sm {
  font-size: 14px;
  line-height: 18px;
}
.message.mn {
  font-size: 12px;
  line-height: 16px;
}

.message.box {
  padding: 20px;
  border-radius: 5px;
}

.message .icon {
  width: 100%;
  padding-bottom: 10px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.message .icon svg {
  width: 70px;
  height: 70px;
  stroke-width: 2px;
}

.title {
  width: 100%;
  position: relative;
  font-weight: 700;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-items: start;
  margin-bottom: 5px;
}

.title .help_bt {
  position: absolute;
  width: 22px;
  height: 22px;
  top: 0;
  right: 0;
  cursor: pointer;
}

/* form */

.form {
  width: 100%;
}

.input {
  width: 100%;
  border: #fff 1px solid;
  border-radius: 4px;

  font-weight: 300;
  color: #fff;
  background: transparent;
}

.input.lg {
  height: 50px;
  line-height: 50px;
  padding-left: 20px;
  font-size: 16px;
}

.input.md {
  height: 40px;
  line-height: 40px;
  padding-left: 15px;
  font-size: 14px;
}

.input.sm {
  height: 30px;
  line-height: 30px;
  padding-left: 10px;
  font-size: 13px;
}

.input::placeholder {
  opacity: 1;
}

/* assistant ///////////////////////////////////////////////////// */

.messages {
  width: 100%;
}

.user_area {
  width: 100%;
  min-height: 120px;
  position: relative;
}
.clear_area {
  width: 100%;
  position: relative;
  margin-bottom: 100px;
  margin-top: 30px;
  display: flex;
  justify-content: center;
}
.clear_area.off {
  pointer-events: none;
}

.user_area.off {
  opacity: 0.3;
  pointer-events: none;
}

.user_area .panel_bt {
  position: absolute;
  top: 35px;
  right: 0;
  background: none;
}

.user_input {
  background: transparent;
  border: none;
  position: absolute;
  top: 35px;
  left: 66px;
  line-height: 24px;
  padding: 14px;
  border-radius: 5px;
  width: calc(100% - 130px);
  min-height: 20px;
  text-wrap: wrap;
  height: 92px;
  resize: none;
}

.chat_message {
  position: relative;
  width: 100%;
  padding: 50px 0 40px 80px;
  border-bottom: #fff 1px solid;
  min-height: 125px;
}

.chat_message.assistant .text {
  opacity: 0.5;
}
.chat_message.assistant.on .text {
  opacity: 1;
}

.chat_icon {
  position: absolute;
  left: 0;
  top: 35px;
  width: 50px;
  height: 50px;
  border-radius: 5px;
}

.chat_message .preloader {
  position: absolute;
  top: 61px;
  left: 84px;
  transform: translate(-50%, -50%);
  width: 30px;
  height: 30px;
}

.chat_intro {
  padding-top: 20px;
  font-size: 14px;
  line-height: 20px;
}

.chat_intro.off {
  opacity: 0.3;
  pointer-events: none;
}

.chat_intro_list {
  display: flex;
  justify-content: space-between;
  align-items: top;
  gap: 4px;
}

.prompt_tip {
  width: 100%;
  height: auto;
  padding: 20px;
  border-radius: 8px;
  margin-bottom: 10px;
  margin-left: 0;
  cursor: pointer;
}

.qr_wrapper {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #fff;
  color: #222;
  padding: 12px;
  border-radius: 5px;
  border: #eee 1px solid;
}
.qrcode {
  flex-grow: 0;
  flex-shrink: 0;
}
.qrcode_msg {
  font-size: 16px;
  line-height: 20px;
  padding-left: 15px;
  display: flex;
  justify-content: start;
  align-items: center;
  width: 100%;
  flex-grow: 1;
  flex-shrink: 1;
}

/* favorites /////////////////////////////////////////////////////////// */

.favorite_option {
  z-index: 9;
  height: 100%;
  width: 100%;
  flex-grow: 1;
  flex-shrink: 1;
  cursor: pointer;
  border-radius: 5px;
  border: none;
  background: transparent;
  position: relative;
  text-transform: uppercase;
  outline-offset: 2px;
  outline: none;
  padding-top: 27px;
}
.favorite_option:focus {
  outline: none;
}

.favorite_option .icon {
  width: 100%;
  height: 20px;
  position: absolute;
  top: 8px;
  left: 0;
}

/* tip /////////////////////////////////////////////////////////// */

#tip {
  position: fixed;
  z-index: 310;
  display: none;
  pointer-events: none;
}

#tip.show {
  display: block;
}

#tip_info {
  position: absolute;
  height: 0;
  width: 500px;
}

#tip_info.top {
  top: -35px;
  left: -250px;
  text-align: center;
}

#tip_info.right {
  top: -7px;
  left: 25px;
  text-align: left;
}

#tip_info.left {
  top: -7px;
  left: auto;
  right: 20px;
  text-align: right;
}

#tip_label {
  font-size: 10px;
  line-height: 18px;
  font-weight: 400;
  text-transform: uppercase;
  border-radius: 3px;
  padding: 5px 10px;
}

/* tooltip /////////////////////////////////////////////////////////// */

#tooltip {
  position: fixed;
  z-index: 10;
  display: none;
}

#tooltip_info {
  position: absolute;
  bottom: 20px;
  border-radius: 5px;
  line-height: 16px;
  width: 260px;
  padding: 10px;
  border: red 1px solid;
}

.down #tooltip_info {
  top: 30px;
  bottom: auto;
}

#tooltip_tb {
  width: 100%;
  height: 120px;
  background-size: cover;
  background-position: center;
  margin-bottom: 10px;
  position: relative;
  border-radius: 3px;
}

#tooltip_lb {
  font-weight: 700;
  font-size: 12px;
}

#tooltip_desc {
  font-size: 12px;
  font-weight: 400;
  margin-top: 5px;
  line-height: 16px;
  -webkit-box-orient: vertical;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: normal;
}

#tooltip_metrics {
  width: 100%;
}

/* MINI CHART/////////////////////////////////////////////////////////// */

.mini_chart {
  position: relative;
  width: 100%;
  height: 20px;
  display: flex;
  flex-direction: row;
  justify-items: flex-start;
  align-items: end;
  margin-bottom: 5px;
}

.mini_chart .icon {
  width: 20px;
  height: 20px;
  margin-right: 5px;
  position: relative;
}

.mini_chart .info {
  width: calc(100% - 25px);
  height: 20px;
  position: absolute;
  right: 0;
  top: 0;
  font-weight: 400;
  font-size: 9px;
  line-height: 11px;
  text-transform: uppercase;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: end;
  padding-bottom: 7px;
}

.mini_chart .info.no_chart {
  padding-bottom: 5px;
}

.mini_chart .minichart_container {
  position: absolute;
  top: auto;
  bottom: 0;
  left: auto;
  right: 0;
  width: calc(100% - 25px);
  height: 2px;
}

.minichart_title {
  margin-right: 10px;
  white-space: nowrap;
}

/* GROUP LIST/////////////////////////////////////////////////////////// */

.footer_message {
  padding: 20px 35px;
  text-align: center;
  font-size: 14px;
  line-height: 20px;
}

/* CARDS/////////////////////////////////////////////////////////// */

.section_img {
  width: 100%;
  height: auto;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  overflow: hidden;
  border-radius: 7px;
}

.section_img .alt {
  display: inline-block;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

.section_img svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.section_img .help_label {
  font-size: 12px;
  text-anchor: start;
  text-transform: uppercase;
  font-weight: 400;
}

.section_img .help_label.center {
  text-anchor: middle;
}

.section_img.expandable_image {
  cursor: pointer;
}

.section_img.expandable_image .icon {
  position: absolute;
  right: 10px;
  top: 10px;
  width: 24px;
  height: 24px;
  border-radius: 3px;
  display: none;
}

.section_img.expandable_image .icon svg {
  width: 15px;
  height: 15px;
}

.section_img.expandable_image:hover .icon {
  display: block;
}

#collection_card_img {
  position: relative;
}

.section_player {
  width: 100%;
  height: auto;
  padding-top: 56.25%;
  background-size: cover;
  background-color: transparent;
  background-position: center;
  position: relative;
  overflow: hidden;
  border-radius: 5px;
}

.section_player iframe {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

/* random image */

.random_image {
  width: 100%;
  height: auto;
  padding-top: 56.25%;
  position: relative;
  background-size: cover;
  background-color: transparent;
  background-position: center;
  background: transparent;
}

.random_image .img {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

.random_image .img.top {
  z-index: 10;
}
.random_image .img.bottom {
  z-index: 1;
}

/* mosaic */

.mosaic_fog {
  opacity: 0.25;
  z-index: 50;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}

.slice {
  position: absolute;
  background-size: cover;
  background-position: center;
  border: #000 1px solid;
  border-top: none;
  border-right: none;
}

.blend {
  background-blend-mode: luminosity;
}

.slice.tl {
  top: 0;
  left: 0;
  border-left: none;
}
.slice.tr {
  top: 0;
  right: 0;
}
.slice.br {
  bottom: 0;
  right: 0;
  border-bottom: none;
}
.slice.bl {
  bottom: 0;
  left: 0;
  border-left: none;
  border-bottom: none;
}
.slice.br {
  bottom: 0;
  right: 0;
  border-bottom: none;
}
.slice.tc {
  top: 0;
  left: 33%;
}
.slice.bc {
  top: 50%;
  left: 33%;
  border-bottom: none;
}

.slice.sFull {
  width: 100%;
  height: 100%;
}

.slice.tb.s1 {
  width: 50%;
  height: 50%;
}

.slice.tb.s2h {
  width: 100%;
  height: 50%;
}

.slice.tb.s3v {
  width: 50%;
  height: 100%;
}

.slice.tb.s3h {
  width: 100%;
  height: 50%;
}

.slice.bn.s1 {
  width: 34%;
  height: 50%;
}

.slice.bn.s2h {
  width: 67%;
  height: 50%;
}

.slice.bn.s2v {
  width: 34%;
  height: calc(100% + 1px);
}

.slice.bn.s3h {
  width: 100%;
  height: 50%;
}

.slice.bn.s3v {
  width: 50%;
  height: 100%;
}

.slice.bn.s2x {
  width: 67%;
  height: calc(100% + 1px);
}

#group_card_logo {
  width: 80%;
  height: 80%;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  margin: auto;
}

#group_card_img {
  margin-bottom: 30px;
  background-repeat: no-repeat;
  background-position: center;
}

#card_name .secondary_label {
  position: absolute;
  height: 15px;
  line-height: 15px;
  top: 0;
}

#card_name {
  font-size: 24px;
  font-weight: 700;
  width: 100%;
  position: relative;
  line-height: 1.4;
}

#card_name .number {
  font-weight: 400;
  font-size: 18px;
}

#card_name.double_label {
  padding-top: 20px;
}

/* POSTER */

.poster {
  position: relative;
  width: 100%;
  padding-left: 20px;
  padding-right: 35px;
  border-radius: 5px;
  cursor: pointer;
}
.poster .summary {
  padding-bottom: 5px;
}

.flag_left {
  position: absolute;
  left: 1px;
  top: 1px;
  border-radius: 1.5px;
  width: 3px;
  height: calc(100% - 2px);
}

/* CARD IMPACT */

.result {
  width: 100%;
  height: 21px;
  font-size: 12px;
  position: relative;
  cursor: pointer;
  overflow: hidden;
  border-radius: 4px;
}

.result .arrow {
  width: 21px;
  height: 21px;
  position: absolute;
  left: 0;
  top: 0;
  transform: rotate(0deg);
}

.result.open .arrow {
  transform: rotate(180deg);
}

.result .answers {
  width: 40%;
  position: absolute;
  top: 22px;
  left: calc(50% + 10px);
}

.result .answer {
  width: 100%;
  height: 21px;
  font-size: 12px;
  text-align: center;
}

.scale_container {
  width: 100%;
  height: 11px;
  position: relative;
  margin: 10px 0 5px 0;
}

.result_scale {
  position: relative;
  font-size: 10px;
  width: 100%;
  height: 11px;
  line-height: 11px;
  text-transform: uppercase;
}

.scale_min {
  position: absolute;
  left: 0;
}

.scale_max {
  position: absolute;
  right: 0;
}

.scale_track {
  position: absolute;
  left: calc(50% + 10px);
  height: 100%;
  width: 40%;
}

.result_name {
  width: 50%;
  height: 21px;
  line-height: 21px;
  font-size: 11px;
  text-align: left;
  padding-right: 10px;
  padding-left: 25px;
  position: absolute;
  text-transform: uppercase;
  top: 0;
  left: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.result .label {
  height: 24px;
  line-height: 24px;
  font-size: 12px;
  font-weight: 400;
  text-align: center;
  text-transform: uppercase;
}

.result_ruler {
  width: 50%;
  position: absolute;
  top: 0;
  right: 0;
  height: 21px;
}

.result_track {
  position: absolute;
  right: 10px;
  top: 0;
  bottom: 0;
  margin: auto;
  width: calc(100% - 10px);
  height: 7px;
  border-radius: 10px;
  overflow: hidden;
}

.tick {
  position: absolute;
  width: 1px;
  height: 100%;
  top: 0;
}

.result_bar {
  position: absolute;
  left: 50%;
  width: 50%;
  height: 100%;
  transform-origin: left;
}

/* card */

#card {
  z-index: 8;
}

#card .miniselect {
  width: 100%;
  height: 35px;
  overflow: hidden;
  padding-top: 5px;
  border: #fff 1px solid;
  border-radius: 3px;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 10;
  cursor: pointer;
}

#card .miniselect .icon {
  position: absolute;
  right: 0;
  top: 0;
  width: 35px;
  height: 35px;
  cursor: pointer;
  transform: rotate(0);
}

#card .miniselect.open .icon {
  transform: rotate(180deg);
}

#card .select_item {
  font-size: 11px;
  width: 100%;
  text-align: center;
  height: 25px;
  line-height: 25px;
  pointer-events: none;
  display: none;
  cursor: pointer;
}

#card .select_item.selected {
  display: block;
}

#card .miniselect.open .select_item {
  pointer-events: all;
  display: block;
}

/* panel lamp */

.panel .lamp_bt {
  position: relative;
  width: 100%;
  height: 100%;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  cursor: pointer;
  border-radius: 5px;
}

.panel .lamp_bt .icon {
  position: absolute;
  width: 21px;
  height: 21px;
  top: 0;
  bottom: 0;
  margin: auto;
  left: 20px;
}

.panel .lamp_bt .toggle {
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  right: 20px;
  overflow: hidden;
}

.panel .lamp_lb {
  position: absolute;
  width: 100%;
  height: 11px;
  top: 0;
  bottom: 0;
  margin: auto;
  text-align: center;
  font-size: 11px;
  text-transform: uppercase;
  pointer-events: none;
}

/* CARD NAVIGATION */

#card .nav {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}

#card .nav_bt {
  position: relative;
  width: 50%;
  height: 100%;
  border-radius: 5px;
  cursor: pointer;
}

#card .nav_bt .icon {
  width: 50px;
  height: 100%;
  position: absolute;
  top: 0;
}
#card .nav_bt.prev .icon {
  left: 0;
}
#card .nav_bt.next .icon {
  right: 0;
}

#card .nav_bt .label {
  width: calc(100% - 45px);
  position: absolute;
  height: 20px;
  line-height: 20px;
  top: 1px;
  bottom: 0;
  margin: auto;
  font-size: 11px;
  text-transform: uppercase;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

#card .nav_bt.next .label {
  left: 0;
  text-align: right;
  padding-left: 10px;
}
#card .nav_bt.prev .label {
  right: 0;
  text-align: left;
  padding-right: 10px;
}

/* CARD CHARTS */

#card .scores {
  width: 100%;
  position: relative;
}

#card .score {
  width: 100%;
  height: 12px;
  position: relative;
  margin-bottom: 5px;
  font-size: 0;
}

#card .score_bg {
  display: inline-block;
  width: calc(20% - 1px);
  border-right: #fff 1px solid;
  position: relative;
  height: 4px;
}

#card .score_bar {
  width: 100%;
  height: 100%;
}

#card .score_bar.odd {
  width: 10%;
  margin-right: 0;
}

#card .score_scale {
  width: 34%;
  position: absolute;
  left: 33%;
  height: 12px;
  top: 2px;
}

#card .score_lb {
  width: 33%;
  height: 100%;
  font-weight: 300;
  text-transform: uppercase;
  position: absolute;
  left: 0;
  top: 0;
  text-align: right;
  padding-right: 10px;
}

#card .score_num {
  width: 33%;
  height: 100%;
  font-size: 9px;
  font-weight: 300;
  text-transform: uppercase;
  position: absolute;
  right: 0;
  top: 0;
  text-align: left;
  padding-left: 10px;
}

#card .readiness,
#card .impact {
  width: 100%;
  position: relative;
  height: 30px;
  font-size: 16px;
  line-height: 30px;
  font-weight: 300;
  text-align: center;
  text-transform: uppercase;
}

#card .metric {
  width: 100%;
  position: relative;
  font-size: 18px;
  line-height: 30px;
  font-weight: 300;
  text-align: center;
  margin-bottom: 5px;
  text-transform: uppercase;
}

#card .note {
  font-size: 12px;
  text-align: center;
  line-height: 18px;
  width: 70%;
  margin: auto;
  font-weight: 300;
}

.metric_chart {
  padding: 3px 0;
}

.track {
  width: 100%;
  height: 4px;
  position: relative;
  border-radius: 10px;
  /* overflow: hidden; */
  line-height: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: row;
}
.track .result_ball {
  position: absolute;
  width: 10px;
  height: 10px;
  top: 2px;
}
/* sm (default) */
.track .bar {
  height: 4px;
  border-radius: 2px;
  margin: 0 1px;
}
.track .barOff {
  height: 2px;
  border-radius: 1px;
}
.track .result_ball .ball {
  height: 100%;
  width: 100%;
  border-radius: 100%;
  position: relative;
  left: -50%;
  top: -50%;
}

/* mn */
.track.mn {
  height: 2px;
  border-radius: 1px;
}
.track.mn .bar {
  height: 2px;
  border-radius: 1px;
}
.track.mn .result_ball {
  width: 6px;
  height: 6px;
  top: 1px;
}

/* md */
.track.md {
  height: 6px;
  border-radius: 3px;
}
.track.md .bar {
  height: 6px;
  border-radius: 3px;
}
.track.md .result_ball {
  width: 10px;
  height: 10px;
  top: 3px;
}

/* lg */
.track.lg {
  height: 8px;
  border-radius: 4px;
}
.track.lg .bar {
  height: 8px;
  border-radius: 4px;
}
.track.lg .result_ball {
  width: 14px;
  height: 14px;
  top: 4px;
}

.scale {
  width: 1px;
  height: 100%;
  position: absolute;
  top: 0;
}

/* multi-progress-bar */
.multi_bar.highlighted {
  height: 4px;
  border-radius: 0;
  position: relative;
  top: -1px;
  border-radius: 2px;
}

#card .bar {
  height: 100%;
}

#card .impact_out {
  width: 100px;
  height: 100px;
  border-radius: 80px;
  margin: auto;
  position: relative;
  border: #fff 2px solid;
  margin-bottom: 10px;
}

#card .impact_in {
  border-radius: 80px;
  margin: auto;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
}

.spiderChartLegend {
  font-size: 12px;
}

/* search */

.search_str {
  width: 100%;
  height: 50px;
  border: none;
  line-height: 50px;
  padding-left: 35px;
  padding-right: 80px;
  background: none;
  font-weight: 300;
  font-size: 14px;
  outline-offset: -2px;
}

.search_icon {
  width: 21px;
  height: 100%;
  position: absolute;
  right: 25px;
  top: 0;
  bottom: 0;
  pointer-events: none;
  z-index: 4;
}

.search_cancel {
  position: absolute;
  right: 20px;
  top: 0;
  bottom: 0;
  margin: auto;
  width: 60px;
  height: 25px;
  cursor: pointer;
  border-radius: 25px;
  z-index: 5;
  opacity: 0;
  pointer-events: none;
}

.search_cancel.on {
  pointer-events: all;
  opacity: 1;
}

.search_cancel .icon15 {
  width: 25px;
  height: 25px;
  position: absolute;
  right: 0;
  top: 0;
}

.search_n {
  width: 40px;
  height: 25px;
  line-height: 25px;
  text-align: center;
  font-size: 14px;
  font-weight: 400;
  position: absolute;
  left: 0;
  top: 0;
}

.no_results {
  width: 100%;
  height: 11px;
  text-align: center;
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  text-transform: uppercase;
}

/* right  */

.out_bt {
  width: 80px;
  height: 80px;
  border-radius: 3px;
  position: absolute;
  cursor: pointer;
  color: #fff;
  line-height: 80px;
  z-index: 4;
}

#fs_bt {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 4;
}

#fs_icon1 {
  display: block;
}
#fs_icon2 {
  display: none;
}
.full #fs_icon1 {
  display: none;
}
.full #fs_icon2 {
  display: block;
}

/* OVERRIDES */

a.anchor:link {
  text-decoration: none;
}
a.anchor:hover {
  text-decoration: underline;
}
a.anchor:active {
  text-decoration: underline;
}

.blur.sm {
  filter: blur(3px);
}
.blur.md {
  filter: blur(6px);
}
.blur.lg {
  filter: blur(9px);
}

.blurMessage {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 400;
}

.mt5 {
  margin-top: 5px !important;
}
.mt10 {
  margin-top: 10px !important;
}
.ml10 {
  margin-left: 10px !important;
}
.ml15 {
  margin-left: 15px !important;
}
.mt40 {
  margin-top: 40px !important;
}
.mt20 {
  margin-top: 20px !important;
}
.mb10 {
  margin-bottom: 10px !important;
}
.mr10 {
  margin-right: 10px !important;
}
.mr5 {
  margin-right: 5px !important;
}
.mb0 {
  margin-bottom: 0 !important;
}
.fw100 {
  font-weight: 100 !important;
}
.pointer {
  cursor: pointer !important;
}
.disabled {
  pointer-events: none !important;
}
.ellipsis {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.visually-hidden {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}

/* addresses a bug in Safari: Voice Over does not read lists with "list-style: none;"*/
li:before {
  content: "\200B"; /* add zero-width space */
  position: absolute;
}
@charset "UTF-8";
/* CSS Document */

/* UI */

#radar_ui {
  width: 100%;
  height: 100%;
  margin: auto;
  text-align: center;
}

.radar_ui_container {
  height: 100%;
  border: #fff 1px solid;
  position: absolute;
}

.radar_ui_bt {
  width: 100%;
  height: 100%;
  cursor: pointer;
  position: relative;
}

.radar_ui_bt .icon {
  width: 50px;
  height: 50px;
  position: absolute;
  left: 0;
  top: 0;
}

.radar_ui_bt .arr {
  width: 50px;
  height: 50px;
  position: absolute;
  right: 0;
  top: 0;
  left: auto;
  transform: rotate(0);
}

.open .radar_ui_bt .arr {
  transform: rotate(180deg);
}

.radar_ui_bt .data {
  width: calc(100% - 100px);
  height: 100%;
  position: absolute;
  left: 50px;
  top: 0;
  text-align: left;
  overflow: hidden;
}

.radar_ui_bt .label {
  width: 100%;
  position: absolute;
  top: 12px;
  opacity: 0.25;
}

.radar_ui_bt .value {
  width: 100%;
  height: 18px;
  position: absolute;
  top: 25px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 14px;
  text-transform: capitalize;
}

.radar_ui_container .bt_x {
  position: absolute;
  height: 100%;
  width: 30px;
  right: 40px;
  top: 0;
  cursor: pointer;
  display: none;
}

.active .bt_x {
  display: block;
}

/* list */

.radar_ui_list {
  width: 33%;
  border: #fff 1px solid;
  border-bottom: none;
  height: 0;
  position: absolute;
  bottom: 60px;
  overflow: auto;
  text-align: left;
  list-style: none;
}

#radar_ui .p1_3 {
  width: 33%;
  left: 0%;
}
#radar_ui .p2_3 {
  width: 33%;
  left: 33%;
}
#radar_ui .p3_3 {
  width: 33%;
  left: 66%;
}
#radar_ui .p1_2 {
  width: 50%;
  left: 0%;
}
#radar_ui .p2_2 {
  width: 50%;
  left: 50%;
}
#radar_ui .p1_1 {
  width: 50%;
  left: 25%;
}

.list_title {
  display: none;
  height: 35px;
  line-height: 35px;
  padding-left: 5px;
  font-size: 14px;
}

.radar_ui_ul {
  padding: 12px;
}

.radar_ui_ul .subtitle {
  font-size: 12px;
  font-weight: 300;
  position: relative;
  pointer-events: none;
  z-index: 4;
  margin-top: 20px;
  margin-bottom: 15px;
  opacity: 0.25;
  padding-left: 8px;
  text-transform: uppercase;
}

.radar_ui_ul .subtitle.top {
  margin-top: 5px;
}

.radar_ui_list.open {
  height: 200px;
}

.radar_ui_li {
  width: 100%;
  height: 25px;
  line-height: 25px;
  padding-left: 35px;
  position: relative;
  cursor: pointer;
  text-transform: uppercase;
}

.radar_ui_li .label {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 11px;
  font-weight: 300;
}

.radar_ui_li.off .label {
  opacity: 0.2;
}

.radar_ui_li .icon {
  height: 25px;
  width: 25px;
  position: absolute;
  left: 0;
  top: 0;
}

.bubble {
  pointer-events: none;
}

.entity_container .range {
  pointer-events: none;
}

.entity_container .range_result {
  opacity: 1;
}
.entity_container.selected .range_result {
  opacity: 0.5;
}
.magnetic_off .entity_container.selected .range_result {
  opacity: 1 !important;
}

/* order/impact list icon behavior */

.order_li.off .icon,
.impact_li.off .icon {
  opacity: 0.2;
}

/* lamp list icon behavior */

.lamp_li .lamp_on {
  opacity: 0.2;
}

.lamp_li .lamp_off {
  opacity: 0;
}

.lamp_li:hover .lamp_on {
  opacity: 1;
}
.lamp_li.on .lamp_on {
  opacity: 1;
}
.lamp_li.on .lamp_off {
  opacity: 0;
}
.lamp_li.off .lamp_off {
  opacity: 0.2;
}
.lamp_li.off:hover .lamp_off {
  opacity: 1;
}
.lamp_li.off .lamp_on {
  opacity: 0;
}

/* RADAR ELEMENTS */
/* map */

svg g:focus {
  outline: 1px solid red;
  outline-offset: 5px;
}

svg circle:focus {
  outline: none;
}

svg text:focus {
  outline: none;
}

svg image:focus {
  outline: none;
}

.entity_map_label {
  font-weight: 400;
  font-family: "Inter", sans-serif;
  cursor: pointer;
}

.col_map_label {
  font-weight: 700;
  font-family: "Inter", sans-serif;
  cursor: pointer;
}

.hit {
  cursor: pointer;
}

.radar_lb {
  font-weight: 200;
  cursor: default;
  font-family: "Inter", sans-serif;
  text-transform: uppercase;
}

.entity_container.off .label {
  fill-opacity: 1;
}
.entity_container .flag,
.entity_container .focus,
.entity_container .visited {
  pointer-events: none;
}

.entity_container .number {
  opacity: 1;
}
.entity_container.selected .number {
  opacity: 0;
}
.magnetic_off .entity_container.selected .number {
  opacity: 1 !important;
}

.entity_container .hide_on_select {
  opacity: 1;
}
.entity_container.selected .hide_on_select {
  opacity: 0;
}
.magnetic_off .entity_container.selected .hide_on_select {
  opacity: 1 !important;
}

.entity_container .fade_on_select {
  opacity: 1;
}
.entity_container.selected .fade_on_select {
  opacity: 0.5;
}
.magnetic_off .entity_container.selected .fade_on_select {
  opacity: 1 !important;
}

.entity_container.selected .label {
  fill-opacity: 1;
}
.hide_labels .entity_container .label {
  display: none;
}
.hide_labels .entity_container .label_number {
  display: none;
}
.hide_labels .col_container .label {
  display: none;
}

.visited_off .visited {
  display: none;
}
.tail_off .tail {
  display: none;
}
@charset "UTF-8";
/* CSS Document */

.mobile {
  display: none;
}

/* LAPTOP */
@media (max-width: 1440px) {
  .side_bar {
    width: 80px;
  }

  .bt .flag {
    left: -13px;
  }

  #container {
    width: calc(100% - 160px);
    left: 80px;
  }

  .floatingMode #container {
    width: calc(100% - 170px);
    left: 90px;
  }

  #user_bt {
    width: 48px;
    height: 48px;
    right: 10px;
  }

  #leftPanel {
    width: calc(50% - 80px);
    left: 80px;
  }

  .floatingMode #leftPanel {
    width: calc(50% - 90px);
    left: 90px;
  }

  #menu_container .bt {
    height: 40px;
  }

  .panel_mode.left .floating {
    right: 80px;
  }
  .panel_mode.right .floating {
    left: 80px;
  }

  .panel_mode.left.floatingMode .floating {
    right: 90px;
  }
  .panel_mode.right.floatingMode .floating {
    left: 90px;
  }

  #logo {
    top: 10px;
    stroke-width: 0;
  }

  .header {
    height: 70px;
  }

  .footer {
    height: 70px;
  }

  .panel_bt {
    height: 50px;
    width: 50px;
    top: 10px;
  }

  .panel_bt.close {
    right: 10px;
  }

  .panel_bt.back {
    left: 10px;
  }

  .top_bar {
    top: 70px;
    height: 45px;
  }

  .search_str {
    height: 45px;
    line-height: 45px;
  }

  /* mode_default: header(70) */
  .mode_default .container {
    height: calc(100% - 70px);
    top: 70px;
  }

  /* mode_footer: header(70) + footer(70) */
  .mode_footer .container {
    height: calc(100% - 140px);
    top: 70px;
  }

  /* mode_topbar: header(70) + topbar(45) */
  .mode_topbar .container {
    height: calc(100% - 115px);
    top: 115px;
  }

  /* mode_full: header(70) + topbar(45) + footer(70) */
  .mode_topbar .container {
    height: calc(100% - 115px);
    top: 115px;
  }

  .axisLabel {
    font-size: 9px;
  }

  .quadLabel {
    font-size: 11px;
  }

  .axisLabel {
    font-size: 9px;
  }

  .quadLabel {
    font-size: 11px;
  }

  /* favorites */
  .favorite_option {
    padding-top: 22px;
  }

  .favorite_option .icon {
    top: 5px;
  }
}

/* MOBILE */
@media (max-width: 800px) {
  .mobile {
    display: block;
  }
  .desktop {
    display: none;
  }

  #theme_bt {
    display: none;
  }

  .internal_button {
    width: 100%;
    margin-left: 0;
  }

  .text blockquote {
    margin-top: 40px;
    padding-left: 20px;
    padding-right: 10px;
    font-size: 18px;
    line-height: 1.33em;
    margin-bottom: 40px;
  }

  .panel_bt {
    top: 0;
  }
  .panel_bt.back {
    left: 0;
  }
  .panel_bt.close {
    right: 0;
  }

  .result {
    height: 42px;
  }

  .result_name {
    top: 0;
    width: 100%;
  }

  .result_ruler {
    top: 20px;
    width: 100%;
  }

  .result .answers {
    width: 100%;
    position: absolute;
    top: 42px;
    left: 0;
  }

  #right_bar {
    display: none;
  }
  #tooltip {
    display: none;
  }

  #m_header {
    position: fixed;
    z-index: 200;
    width: 100%;
    height: 60px;
    text-align: center;
  }

  .single_line #m_project {
    display: none;
  }
  .single_line #m_title {
    height: 60px;
    line-height: 60px;
    position: absolute;
    top: 0;
    width: 100%;
  }

  #m_about_logos {
    width: 100%;
    height: 200px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
  }

  #card .nav_bt .label {
    font-size: 10px;
  }

  #card .nav_bt {
    width: 50%;
  }

  .m_bar_bg {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 101;
  }

  #m_footer .m_bar_bg {
    border-top: #000 1px solid;
  }
  #m_header .m_bar_bg {
    border-bottom: #000 1px solid;
  }

  .bt {
    width: 60px;
    height: 60px;
    position: relative;
    list-style: none;
  }

  #m_user_bt {
    position: absolute;
    top: 0;
    right: 0;
    z-index: 103;
    background-size: 25px 25px;
    background-position: center;
    background-repeat: no-repeat;
  }

  #m_logo {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 103;
    background-size: 25px 25px;
    background-position: center;
    background-repeat: no-repeat;
  }

  #m_ev_logo {
    position: absolute;
    width: 100%;
    height: 20px;
    left: 0;
    top: 20px;
    z-index: 103;
    border-radius: 0;
    stroke-width: 0;
  }

  .header_title {
    position: absolute;
    width: calc(100% - 120px);
    height: 60px;
    left: 60px;
    top: 0;
    padding-top: 12px;
    z-index: 102;
  }

  .summary {
    font-size: 16px;
    line-height: 22px;
  }

  .project_name {
    position: relative;
    font-weight: 400;
    font-size: 10px;
    line-height: 20px;
    text-transform: uppercase;
  }

  .board_title {
    position: relative;
    font-size: 14px;
    height: 18px;
    font-weight: 700;
  }

  .panel_back {
    height: 50px;
    width: 50px;
    left: 0;
  }

  .panel_top {
    height: 50px;
    width: calc(100% - 100px);
    left: 50px;
  }

  /* LEFT BAR + MENU */

  #left_bar {
    display: none;
  }

  /* CONTAINER */

  #container {
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
  }

  .panel {
    width: 100%;
    height: calc(100% - 119px);
    left: 0;
    top: 60px;
    position: absolute;
    z-index: 200;
  }

  .floatingMode .panel {
    height: calc(100% - 129px);
  }

  .header {
    height: 50px;
  }

  .footer {
    height: 45px;
    padding: 0;
  }

  .navigator_pages {
    width: calc(100% - 100px);
  }

  .navigator_bt {
    height: 100%;
  }

  .navigator_bt.next {
    right: 0;
  }
  .navigator_bt.prev {
    left: 0;
  }

  #loading_feedback {
    top: 35px;
  }

  .list {
    padding-left: 0;
    padding-right: 0;
    padding-bottom: 20px;
  }

  /* mode_default: header(50) */
  .mode_default .container {
    height: calc(100% - 50px);
    top: 50px;
  }

  /* mode_footer: header(50) + footer(45) */
  .mode_footer .container {
    height: calc(100% - 95px);
    top: 50px;
  }

  /* mode_topbar: header(50) + topbar(45) : top-bar goes to bottom if no footer */
  .mode_topbar .container {
    height: calc(100% - 95px);
    top: 50px;
  }

  /* mode_full: header(50) + topbar(45) + footer(45) */
  .mode_full .container {
    height: calc(100% - 140px);
    top: 95px;
  }

  /* mode_top forces top_bar to bottom */
  .mode_topbar .top_bar {
    height: 45px;
    top: initial;
    bottom: 0;
    border-bottom: none;
    border-top: #000 1px solid;
  }

  /* mode_full forces top_bar back to top */
  .mode_full .top_bar {
    height: 45px;
    top: 0;
    bottom: initial;
    border-top: none;
    border-bottom: #000 1px solid;
  }

  .panel_x {
    height: 50px;
    width: 50px;
    right: 0;
  }

  .panel_nav {
    top: 0;
  }

  .title_location {
    font-size: 10px;
    height: 10px;
    line-height: 10px;
    width: 100%;
    top: 12px;
    display: block;
    margin-right: 0;
    margin-right: 0;
    margin-bottom: 5px;
    text-transform: uppercase;
  }

  .title_object {
    position: relative;
    display: block;
    bottom: 12px;
    width: 100%;
    top: 0;
    height: 10px;
    line-height: 10px;
    font-size: 10px;
  }

  .panel_title {
    padding-right: 20px;
    padding-left: 20px;
    line-height: 50px;
    height: 100%;
  }

  #leftPanel {
    left: 0;
    width: 100%;
    max-width: initial;
    min-width: initial;
    border-right: none;
    border-left: none;
  }

  .content {
    padding-left: 20px;
    padding-right: 20px;
    padding-bottom: 20px;
  }

  .quote_tx {
    padding-left: 20px;
    padding-right: 20px;
  }

  .quote_mark.left {
    left: -10px;
    top: -12px;
  }
  .quote_mark.right {
    right: -10px;
    bottom: -12px;
  }
  .quote_author {
    padding-left: 20px;
    padding-right: 20px;
  }

  #card .nav_bt .icon {
    height: 100%;
  }

  #card .nav_bt {
    border-radius: 0;
  }

  #card .nav_bt.prev {
    left: 0;
    border-right: red 1px solid;
  }
  #card .nav_bt.next {
    right: 0;
  }

  #search_entity_str {
    padding-left: 20px;
  }

  #m_minipanel {
    position: fixed;
    pointer-events: none;
    width: calc(100% - 20px);
    height: 50px;
    left: 100%;
    right: 0;
    margin: auto;
    top: 70px;
    z-index: 100;
    border-radius: 5px;
    /*  */
    background: #f00;
    color: #fff;
  }

  .minibanners_list {
    padding: 25px 0;
  }

  .minibanner_li {
    padding: 0 25px 10px 25px;
  }

  /* m_footer / m_menu */

  .footer_message {
    padding: 10px;
    text-align: center;
    font-size: 12px;
    line-height: 16px;
  }

  #m_footer {
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 60px;
    border-top: #000 1px solid;
    z-index: 103;
    display: flex;
    flex-direction: row;
    justify-content: center;
    justify-content: space-between;
  }

  #m_menu_bt {
    z-index: 104;
    width: 100%;
    height: 100%;
    padding-left: 70px;
    padding-right: 70px;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  #menuMobileLabel {
    text-transform: uppercase;
    font-size: 12px;
    font-weight: 400;
  }

  #menuMobileIcon {
    position: absolute;
    left: 0;
    width: 80px;
    height: 100%;
  }

  #m_menu_arrow {
    position: absolute;
    width: 40px;
    height: 100%;
    right: 10px;
  }

  #m_feedback_bt {
    width: 80px;
    height: 60px;
    z-index: 104;
    border-left: #f00 1px solid;
  }

  #m_explore_arrow {
    width: 100%;
    height: 25px;
    position: absolute;
    top: 0;
    display: none;
  }

  .about #m_explore_arrow,
  .welcome #m_explore_arrow {
    display: block;
  }

  .popup_content {
    padding-left: 20px;
    padding-right: 20px;
  }

  .popup_title {
    padding-left: 20px;
  }

  #m_menu_container {
    position: fixed;
    width: 100%;
    z-index: 310;
    border-top-right-radius: 20px;
    border-top-left-radius: 20px;
    border: 1px #000 solid;
    bottom: -100%;
  }

  #m_menu_container.on {
    bottom: 0 !important;
  }

  #m_menu {
    position: absolute;
    width: 100%;
    top: 40px;
    overflow: hidden;
    line-height: 0;
  }

  .m_menu_li {
    position: relative;
    width: 100%;
    height: 40px;
    line-height: 30px;
  }

  .m_menu_li .icon {
    position: absolute;
    width: 60px;
    height: 40px;
    left: 0;
    top: 0;
  }

  .m_menu_li .label {
    position: absolute;
    height: 40px;
    line-height: 40px;
    left: 60px;
    top: 0;
    font-size: 12px;
    font-weight: 400;
    text-transform: uppercase;
  }

  #m_app_info {
    width: 100%;
    height: 30px;
    text-align: center;
    font-size: 12px;
    position: absolute;
    bottom: 0;
  }

  #m_menu_x {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 50px;
    pointer-events: none;
    touch-action: none;
  }

  #m_menu_x .icon {
    width: 30px;
    height: 4px;
    border-radius: 3px;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
  }

  /* CHART / options */

  #chart {
    height: calc(100% - 122px);
    top: 60px;
  }

  #tip.show {
    display: none;
  }

  .floating {
    width: calc(100% - 20px);
  }

  .panel_mode.left .floating {
    right: 0;
  }
  .panel_mode.right .floating {
    left: 0;
  }

  #options_top .left_icon {
    height: 50px;
  }

  #options_top .label {
    height: 50px;
    line-height: 50px;
    left: 50px;
  }

  #options_menu {
    height: 50px;
  }

  #options_ui {
    top: 50px;
    height: 250px;
  }

  .options_menu_li .flag {
    bottom: -5px;
  }

  /* dropdown */

  .dropdown {
    height: 50px;
  }

  .dropdown_header {
    height: 50px;
  }

  .top .dropdown_ui {
    top: 50px;
  }
  .bottom .dropdown_ui {
    bottom: 50px;
  }

  .dropdown .arrow {
    width: 50px;
    height: 50px;
  }

  /* help */

  .help_nav_arrow {
    width: 50px;
  }

  #help_container .content {
    padding-bottom: 50px;
  }

  #help_text {
    text-align: left;
  }

  .section_img .help_label {
    font-size: 18px;
  }

  .icon_text.left {
    padding-left: 0;
    padding-right: 0;
  }
  .icon_text.right {
    padding-right: 0;
    padding-left: 0;
  }

  .icon_text .icon {
    width: 100%;
    height: 75px;
    position: initial;
    margin-bottom: 20px;
  }

  .icon_text h2 {
    text-align: center;
  }

  .icon_text.left .icon {
    left: 0;
  }
  .icon_text.right .icon {
    right: 0;
  }
  .quadrantsChart {
    height: 250px;
  }

  .axisLabel {
    font-size: 9px;
  }

  .quadLabel {
    font-size: 10px;
  }

  #card .lamp_bt {
    width: 100%;
    height: 100%;
    border-radius: 0;
  }

  .button.sm {
    width: 80%;
    margin-left: 10%;
    margin-right: 10%;
  }
  .button.md {
    width: 90%;
    margin-left: 5%;
    margin-right: 5%;
  }
  .button.lg {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
  }

  .button.sm.favorite,
  .button.md.favorite,
  .button.lg.favorite {
    width: auto;
  }

  /* favorites /////////////////////////////////////////////////////////// */

  .favorite_option {
    border-right: red 1px solid;
  }
  .favorite_option:last-child {
    border-right: 0;
  }

  .favorite_option {
    border-radius: 0;
    outline: none;
    padding-top: 0;
    padding-left: 40px;
    text-align: left;
    font-size: 10px;
  }

  .favorite_option .icon {
    width: 40px;
    height: 100%;
    top: 0;
    left: 0;
  }

  /* /////////// assistant */

  .user_area .panel_bt {
    top: 20px;
  }

  .user_area .panel_bt {
    width: 30px;
  }

  .user_input {
    top: 20px;
    left: 50px;
    padding: 10px;
    width: calc(100% - 90px);
  }

  .chat_message {
    padding: 25px 0 25px 60px;
    min-height: 80px;
  }

  .chat_icon {
    position: absolute;
    left: 0;
    top: 20px;
    width: 40px;
    height: 40px;
  }

  .chat_intro_list {
    flex-direction: column;
  }

  .chat_message .preloader {
    top: 41px;
    left: 74px;
  }
}
@charset "UTF-8";
/* CSS Document */

body.ar {
  font-family: "Cairo", sans-serif;
  text-align: right;
  direction: rtl;
}

.lang_bt.ar {
  font-family: "Cairo";
  font-size: 12px;
}

.ar #left_bar {
  left: auto;
  right: 0;
}

.ar #right_bar {
  right: auto;
  left: 0;
}

.ar #leftPanel {
  left: auto;
  right: 100px;
  border-left: 1px #f00 solid;
}

.ar.panel_mode.left #chart {
  left: 0;
  right: auto;
}

.ar #tip_info.right {
  left: auto;
  right: 25px;
  text-align: right;
}

.ar .panel_bt.close {
  right: auto;
  left: 15px;
}

.ar .panel_bt.back {
  left: auto;
  right: 15px;
}

.ar .panel_bt.back svg {
  rotate: 180deg;
}

.ar .bt .flag {
  left: auto;
  right: -23px;
}

/* CARD */

.ar #card .nav_bt.prev {
  left: auto;
  right: 15px;
}
.ar #card .nav_bt.next {
  right: auto;
  left: 15px;
}

.ar #card .nav_bt.prev .icon {
  left: auto;
  right: 0;
  rotate: 180deg;
}
.ar #card .nav_bt.next .icon {
  right: auto;
  left: 0;
  rotate: 180deg;
}

.ar #card .nav_bt.next .label {
  right: 0;
  left: auto;
  text-align: left;
  padding-left: 0;
  padding-right: 10px;
}
.ar #card .nav_bt.prev .label {
  left: 0;
  right: auto;
  text-align: right;
  padding-right: 0;
  padding-left: 10px;
}

/* list_item */

.ar .list {
  padding: 10px 20px 25px 20px;
}

.ar #order_direction .label {
  right: auto;
  left: 100%;
  text-align: left;
}

.ar .lang_bt:last-child {
  border-radius: 0;
  border-top-left-radius: 5px;
  border-bottom-left-radius: 5px;
}

.ar .lang_bt:first-child {
  border-radius: 0;
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
}

.ar .list_item.lg {
  left: auto;
  right: -10px;
}
.ar .list_item.md {
  left: auto;
  right: -7px;
}
.ar .list_item.sm {
  left: auto;
  right: -4px;
}

.ar .list_item.lg .thumb {
  left: auto;
  right: 10px;
}
.ar .list_item.md .thumb {
  left: auto;
  right: 7px;
}
.ar .list_item.sm .thumb {
  left: auto;
  right: 4px;
}

.ar .list_item.lg .info {
  left: auto;
  right: 90px;
}
.ar .list_item.md .info {
  left: auto;
  right: 70px;
}
.ar .list_item.sm .info {
  left: auto;
  right: 60px;
}

.ar .list_item.md.icon_thumb .info {
  left: auto;
  right: 55px;
}
.ar .list_item.sm.icon_thumb .info {
  left: auto;
  right: 45px;
}
.ar .list_item .info.no_thumb {
  left: auto;
  right: 10px;
}

/* content */

.ar .panel_title {
  padding-left: 80px;
  padding-right: 35px;
}

.ar .panel_title_total {
  margin-left: 4px;
  margin-right: 0;
}

.ar .search_cancel {
  right: auto;
  left: 20px;
}

.ar .content {
  padding: 35px;
  padding-left: 15px;
}

.ar .content_padding {
  padding-right: 35px;
  padding-left: 15px;
}

.ar .section_title {
  padding-left: 15px;
  padding-right: 0;
}

.ar .legend_label {
  margin-right: 0;
  margin-left: 10px;
}

.ar .person {
  left: 0;
}

.ar .division {
  padding-right: 0;
}

.ar .step:last-child {
  border-right: 1px #fff solid;
}
.ar .step:first-child {
  border-right: none;
}

.ar .listItem.mn .info {
  left: auto;
  right: 30px;
}

.ar .listItem.mn .icon.main {
  left: auto;
  right: 5px;
}

.ar .listItem.mn .label {
  padding-left: 30px;
  padding-right: 0;
}

/* credits */

.ar #menuMobileLabel {
  text-align: center;
}

.ar .single_link {
  padding: 5px 25px 5px 10px;
}

.ar .single_link .icon {
  left: auto;
  right: 0;
}

/* popup */

.ar .popup_content {
  padding-right: 30px;
  padding-left: 10px;
}

.ar .help_bt {
  right: auto;
  left: 0;
}

/* help */

.ar .section_img .help_label {
  text-anchor: end;
}

.ar .section_img .help_label.center {
  text-anchor: middle;
}

.ar .navigator_bt.next {
  right: auto;
  left: 15px;
  transform: rotate(180deg);
}

.ar .navigator_bt.prev {
  left: auto;
  right: 15px;
  transform: rotate(180deg);
}

/* sources */

.ar .source {
  text-align: left;
  direction: ltr;
}

/* options */

.ar #chart .options_content {
  direction: rtl;
}

.ar #chart .options_title {
  direction: rtl;
}

.ar .option_li .toggle {
  left: auto;
  right: 0;
}
.ar .option_li .icon.help_bt {
  right: auto;
  left: 0;
}

.ar .options_bottom .icon {
  right: auto;
  left: 0;
}

.ar #order_direction .label {
  right: auto;
  left: 100%;
}

/* radar */

.ar .radar_lb {
  font-family: "Cairo", sans-serif;
}

.ar .entity_map_label {
  font-family: "Cairo", sans-serif;
}

.ar .col_map_label {
  font-family: "Cairo", sans-serif;
}

.ar #chart svg {
  text-align: left;
  direction: ltr;
}

.ar #tooltip {
  direction: ltr;
}

.ar #tooltip #tooltip_info {
  direction: rtl;
}

/* LAPTOP */
@media (max-width: 1440px) {
  .ar #leftPanel {
    left: auto;
    right: 80px;
  }
}

/* MOBILE */
@media (max-width: 800px) {
  .ar #leftPanel {
    right: 0;
  }

  .ar #m_menu {
    direction: ltr;
  }

  .ar #menuMobileIcon {
    left: auto;
    right: 0;
  }

  .ar #m_menu_arrow {
    right: auto;
    left: 10px;
  }

  .ar .m_menu_li .icon {
    left: auto;
    right: 0;
  }

  .ar .m_menu_li .label {
    left: auto;
    right: 60px;
  }

  .ar .m_menu_li .icon {
    left: auto;
    right: 0;
  }

  .ar #leftPanel {
    border-left: none;
  }
}
