.ui_static 
{
  font-family: Roboto, Arial;
  font-size: 14px;
}

.ui_static_clickable 
{
  font-family: Roboto, Arial;
  font-size: 14px;
  background-color: rgb(230, 230, 230);
  cursor: pointer;
}

.ui_static_clickable:hover 
{
  font-family: Roboto, Arial;
  font-size: 14px;
  background-color: rgb(240, 240, 240);
}

.ui_frame_shadow
{
  box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.20);
}

.ui_header_content
{
  font-family: Roboto, Arial;
  font-size: 12px;
  padding-left: 5px;
  line-height: 12px;
  background-color: rgb(250, 250, 250);
  cursor: move;
  overflow: hidden;
  font-weight: bold;
  border-style: solid;
  border-color: white;
  border-left-width: 0px;
  border-right-width: 0px;
  border-top-width: 0px;
  border-bottom-width: 6px; 
  pointer-events: auto;
}

.ui_button_bar
{
  background-color: rgb(250, 250, 250);
  text-align: center;
  padding-top: 7px;
  padding-bottom: 7px;
  border-top-width: 5px;
  border-color: white;
  border-bottom-width: 0px;
  border-left-width: 0px;
  border-right-width: 0px;
  border-style: solid;
  pointer-events: auto;
}

.ui_modal_container 
{
  border-radius: 3px;
}

.ui_modal_validation 
{
  padding: 2px 4px;
  background-color: #fbe5e1;
  color: #c0341d;
  border-radius: 3px;
}

.ui_modal_info 
{
  font-family: Roboto, Arial;
  font-size: 1rem;
  margin-bottom: 15px;
  font-weight: 400;
}

.ui_input 
{
  font-family: Roboto, Arial;
  font-size: 1rem;
  margin-bottom: 5px;
  width: 100%;
  height: 27px;
  padding: 2px 8px;
  border: 1px solid #dfdfdf;
}

.ui_resize_tag 
{
  position: absolute;
  border: 2px solid white;
  pointer-events: auto;
}

.ui_resize_tag:hover
{
  position: absolute;
  border: 2px solid white;
  pointer-events: auto;
}

/*-------------------------------------------------------------------------------*/
/* M E N U */
/*-------------------------------------------------------------------------------*/

.ui_menu_item
{
  float: left;
  border-top: 1px solid transparent;
  border-bottom: 1px solid transparent;
}

.ui_menu_item:hover
{
  background-color: rgb(240, 239, 241)
}

.ui_menu_item_selected
{
  float: left;
  border-top: 1px solid transparent;
  border-bottom: 1px solid transparent;
  background-color: rgb(240, 239, 241)
}

.ui_menu_item_string
{
  float: left;
  height: 22px;
  line-height: 22px;
  padding-left: 4px;
  padding-right: 4px;
  cursor: pointer;
  font-size: 12px;
  pointer-events: none;
}

.ui_menu_item_icon 
{
  color: black;
  font-size: 16px;
  line-height: 16px;
  padding: 4px 0px 0px 8px;
  float: left;
  width: 28px;
  height: 22px;
  cursor: pointer;
  pointer-events: none;
}

.ui_submenu_item_triangle
{
  color: rgba(0, 0, 0, 0.8);
  font-size: 16px;
  line-height: 16px;
  padding: 4px 0px 0px 8px;
  float: left;
  width: 28px;
  height: 22px;
  cursor: pointer;
  transform: rotate(180deg);
  pointer-events: none;
}

.ui_menu_popup
{
  font-family: Roboto, Arial;
  padding-top: 2px;
  padding-bottom: 2px;
  width: 300px;
  background-color: rgb(250, 250, 250);
  position: fixed;
  border: 6px solid white;
  -webkit-box-shadow: 1px 1px 2px 0px rgba(0,0,0,0.30);
  -moz-box-shadow: 1px 1px 2px 0px rgba(0,0,0,0.30);
  box-shadow: 1px 1px 2px 0px rgba(0,0,0,0.30);   
}

.ui_menu_item_separator
{
  position:relative;
  left: 28px;
  width: calc(100% - 32px);
  float: left;
  height: 3px;
  border-top: 1px solid rgb(250, 250, 250);
  border-bottom: 1px solid rgb(250, 250, 250);
  background-color: rgba(0, 0, 0, 0.2);
}

/*-------------------------------------------------------------------------------*/
/* B U T T O N */
/*-------------------------------------------------------------------------------*/

.ui_button 
{
    font-family: Roboto, Arial;
    font-size: 1rem;
    font-weight: 600;
    border: 1px solid #0000008f;
    border-radius: 4px;
    background-color: white;
    margin-left: 5px;
    margin-right: 5px;
    box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.20);
    cursor: pointer;
    padding: 4px 10px 4px 10px;
}

.ui_button:hover 
{
    border: 1px solid #0000008f;
    border-radius: 4px;
    padding: 4px 10px 4px 10px;
    margin-left: 5px;
    margin-right: 5px;
    box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.10);
}

.ui_button:active 
{
  border: 1px solid #0000008f;
  position: relative;
  top: 1px;
  left: 1px;
  background-color: white;
  box-shadow: inset 1px 1px 2px 0px rgba(0, 0, 0, 0.40);
}

.ui_button:disabled 
{
  border: 1px solid #989898;
  font-family: Roboto, Arial;
  font-size: 1rem;
  font-weight: 600;
  padding: 4px 10px 4px 10px;
  margin-left: 5px;
  margin-right: 5px;
  color: rgb(148, 148, 148);
  cursor: initial;
}

/*-------------------------------------------------------------------------------*/

.ui_window_container
{
  font-family: Roboto, Arial;
  pointer-events: auto;
}

.ui_window_content
{
  position: absolute;
  font-size: 12px;
  pointer-events: auto;
}

.ui_childs_content
{
  position: absolute; /* change that for html rasterizer */
  overflow: hidden;
  width: 100%;
}

select
{
  font-size:12px;
}

.uitree_dir_open
{
    width:16px;
    height:16px;
    display: inline-block;
    margin-top: 2px;
    margin-right: 3px;
    background-repeat: no-repeat;
    background-image: url(resources/tree_icon.png);
    background-position: -32px 0px;
    vertical-align: middle;
    float: left;
}

.uitree_dir_close
{
    width:16px;
    height:16px;
    display: inline-block;
    margin-top: 2px;
    margin-right: 3px;
    background-repeat: no-repeat;
    background-image: url(resources/tree_icon.png);
    background-position: -48px 0px;
    vertical-align: middle;
    float: left;
}

.uitree_radio_button
{
    width:16px;
    height:16px;
    display: inline-block;
    margin-right: 3px;
    background-repeat: no-repeat;
    background-image: url(resources/tree_icon.png);
    background-position: 0px 0px;
    vertical-align: middle;
}

.uitree_check_on
{
    width:16px;
    height:16px;
    margin-left: 3px;
    margin-top: 2px;
    background-repeat: no-repeat;
    background-image: url(resources/tree_icon.png);
    background-position: 0px -16px;
    vertical-align: middle;
}

.uitree_check_off
{
    width:16px;
    height:16px;
    margin-left: 3px;
    margin-top: 2px;
    background-repeat: no-repeat;
    background-image: url(resources/tree_icon.png);
    background-position: -16px -16px;
    vertical-align: middle;
}

.uitree_item
{
    width: 100%;
    cursor: pointer;
    clear: both;
}

/* F O C U S   A N I M A T I O N */

.ui_scroll_from_top
{
    animation: ui_scroll_from_top_a 150ms;
    -webkit-animation: ui_scroll_from_top_a 150ms;

    animation-timing-function: ease-in-out;
}

@-webkit-keyframes ui_scroll_from_top_a
{
    0%   { -webkit-transform: translateY(-100px); }
    100% { -webkit-transform: translateY(0px); }
}

@keyframes ui_scroll_from_top_a
{
    0%   { transform: translateY(-100px); }
    100% { transform: translateY(0px); }
}

.ui_scroll_from_top_r
{
    animation: ui_scroll_from_top_ra 150ms;
    -webkit-animation: ui_scroll_from_top_ra 150ms;
    animation-timing-function: ease-in-out;
}

@-webkit-keyframes ui_scroll_from_top_ra
{
    0%   { -webkit-transform: translateY(0px); }
    100% { -webkit-transform: translateY(-100px); }
}

@keyframes ui_scroll_from_top_ra
{
    0%   { transform: translateY(0px); }
    100% { transform: translateY(-100px); }
}

/* F O C U S   A N I M A T I O N */

.ui_focus
{
}

@-webkit-keyframes ui_focus_animation
{
}

@keyframes ui_focus_animation
{
}

/* U N F O C U S   A N I M A T I O N */

.ui_unfocus
{
    animation: ui_unfocus_animation 300ms;
    -webkit-animation: ui_unfocus_animation 300ms;
    animation-timing-function:ease-in-out;
}

@keyframes ui_unfocus_animation
{
    0% { -webkit-transform: scale(1, 1); transform: scale(1, 1); }
    50% { -webkit-transform: scale(0.95, 0.95); transform: scale(0.95, 0.95); }
    100% { -webkit-transform: scale(1, 1); transform: scale(1, 1); }
}

@-webkit-keyframes ui_unfocus_animation
{
    0% { -webkit-transform: scale(1, 1); transform: scale(1, 1); }
    50% { -webkit-transform: scale(0.95, 0.95); transform: scale(0.95, 0.95); }
    100% { -webkit-transform: scale(1, 1); transform: scale(1, 1); }
}

/* Z O O M   A N I M A T I O N */

.ui_zoom
{
    animation: ui_zoom_animation 150ms;
    animation-fill-mode: forwards;
    animation-timing-function:ease-in-out;
    -webkit-animation: ui_zoom_animation 150ms;
    -webkit-animation-fill-mode: forwards;
    -webkit-animation-timing-function:ease-in-out;
}

@keyframes ui_zoom_animation
{
    from { transform: scale(1, 1); }
    to { transform: scale(1.1, 1.1); }
}

@-webkit-keyframes ui_zoom_animation
{
    from { -webkit-transform: scale(1, 1); }
    to { -webkit-transform: scale(1.1, 1.1); }
}

.ui_zoom_inv
{
    animation: ui_zoom_inv_animation 150ms;
    animation-fill-mode: forwards;
    animation-timing-function:ease-in-out;
    -webkit-animation: ui_zoom_inv_animation 150ms;
    -webkit-animation-fill-mode: forwards;
    -webkit-animation-timing-function:ease-in-out;
}

@keyframes ui_zoom_inv_animation
{
    from { transform: scale(1.1, 1.1); }
    to { transform: scale(1, 1); }
}

@-webkit-keyframes ui_zoom_inv_animation
{
    from { -webkit-transform: scale(1.1, 1.1); }
    to { -webkit-transform: scale(1, 1); }
}


/* U N Z O O M   A N I M A T I O N */

.ui_unzoom
{
    animation: ui_unzoom_animation 150ms;
    animation-fill-mode: forwards;
    animation-timing-function:ease-in-out;
    -webkit-animation: ui_unzoom_animation 150ms;
    -webkit-animation-fill-mode: forwards;
    -webkit-animation-timing-function:ease-in-out;
}

@keyframes ui_unzoom_animation
{
    from { transform: scale(1, 1); }
    to { transform: scale(0.8, 0.8); }
}

@-webkit-keyframes ui_unzoom_animation
{
    from { -webkit-transform: scale(1, 1); }
    to { -webkit-transform: scale(0.8, 0.8); }
}

.ui_unzoom_inv
{
    animation: ui_unzoom_inv_animation 150ms;
    animation-fill-mode: forwards;
    animation-timing-function:ease-in-out;
    -webkit-animation: ui_unzoom_inv_animation 150ms;
    -webkit-animation-fill-mode: forwards;
    -webkit-animation-timing-function:ease-in-out;
}

@keyframes ui_unzoom_inv_animation
{
    from { transform: scale(0.8, 0.8); }
    to { transform: scale(1, 1); }
}

@-webkit-keyframes ui_unzoom_inv_animation
{
    from { -webkit-transform: scale(0.8, 0.8); }
    to { -webkit-transform: scale(1, 1); }
}

/* F A D E I N   F A D E O U T   A N I M A T I O N */

.ui_fadein
{
    animation: ui_fadein_animation 300ms;
    animation-timing-function: ease-in-out;
    animation-fill-mode: forwards;

    -webkit-animation: ui_fadein_animation 300ms;
    -webkit-animation-timing-function: ease-in-out;
    -webkit-animation-fill-mode: forwards;
}

@keyframes ui_fadein_animation
{
    from { opacity: 0; }
    to { opacity: 0.2; }
}

@-webkit-keyframes ui_fadein_animation
{
    from { opacity: 0; }
    to { opacity: 0.2; }
}

.ui_fadeout
{
    animation: ui_fadeout_animation 150ms;
    animation-timing-function:ease-in-out;
    animation-fill-mode: forwards;

    -webkit-animation: ui_fadeout_animation 150ms;
    -webkit-animation-timing-function:ease-in-out;
    -webkit-animation-fill-mode: forwards;
}

@keyframes ui_fadeout_animation
{
    from { opacity: 1.0; }
    to { opacity: 0.0; }
}

@-webkit-keyframes ui_fadeout_animation
{
    from { opacity: 1.0; }
    to { opacity: 0.0; }
}

/* R E F R E S H   A N I M A T I O N */

.ui_refresh
{
    animation: ui_refresh_animation 300ms;
    -webkit-animation: ui_refresh_animation 300ms;
    animation-timing-function:ease-in-out;
}

@keyframes ui_refresh_animation
{
    0%   { opacity: 1.0; }
    50%  { opacity: 0.5; }
    100% { opacity: 1.0; }
}

@-webkit-keyframes ui_refresh_animation
{
    0%   { opacity: 1.0; }
    50%  { opacity: 0.5; }
    100% { opacity: 1.0; }
}

/* A N I M   D E S T R O Y */

.ui_anim_destroy
{
    animation: ui_destroy_animation 300ms;
    animation-timing-function:ease-in-out;
    animation-fill-mode: forwards;

    -webkit-animation: ui_destroy_animation 300ms;
    -webkit-animation-timing-function:ease-in-out;
    -webkit-animation-fill-mode: forwards;
}

@keyframes ui_destroy_animation
{
    0%   { transform: scale(1, 1); opacity: 1.0; }
    100% { transform: scale(0.90, 0.90); opacity: 0.0; }
}

@-webkit-keyframes ui_destroy_animation
{
    0%   { -webkit-transform: scale(1, 1); opacity: 1.0; }
    100% { -webkit-transform: scale(0.90, 0.90); opacity: 0.0; }
}

/* U I   M O D A L */

.ui_modal
{
    position: absolute;
    background-color: rgba(250, 250, 250, 255);
    position: fixed;
    border-style: solid;
    border-width: 6px;
    border-color: white;
    -webkit-box-shadow: 1px 1px 2px 0px rgba(0,0,0,0.30);
    -moz-box-shadow: 1px 1px 2px 0px rgba(0,0,0,0.30);
    box-shadow: 1px 1px 2px 0px rgba(0,0,0,0.30);
}

table, th, td 
{
    empty-cells: show;
    border-collapse: collapse;
}

th, td 
{
    padding: 5px;
}

.ui_combo_item:hover 
{
    background-color: rgba(128, 128, 128, 0.15);
}

input[type="number"]::-webkit-outer-spin-button, input[type="number"]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}
 
input[type="number"] {
    -moz-appearance: textfield;
}

.class_explorer_item 
{
  display: flex;
  align-items: center;
  flex-direction: column;
  padding: 4px;

  position: relative;
  font-family: Roboto, Arial;
  font-size: 12px;
  background-color: rgb(250, 250, 250);
  background-color: white;
  box-shadow: 1px 1px 2px 0px rgba(0, 0, 0, 0.20);
  border-radius: 3px;
  cursor: pointer; 
  overflow: hidden; 
  float: left;
  margin-top: 10px;
  margin-left: 10px;
  border: 2px solid rgba(0, 0, 0, 0);
}

.class_explorer_item_select
{
  display: flex;
  align-items: center;
  flex-direction: column;
  padding: 4px;

  position: relative;
  font-family: Roboto, Arial;
  font-size: 12px;
  background-color: rgb(250, 250, 250);
  background-color: white;
  box-shadow: 1px 1px 2px 0px rgba(0, 0, 0, 0.20);
  border-radius: 3px;
  cursor: pointer;
  overflow: hidden;
  float: left;
  margin-top: 10px;
  margin-left: 10px;
  border: 2px solid gray;
}

.class_explorer_item:hover
{
  font-family: Roboto, Arial;
  background-color: white;
  box-shadow: 1px 1px 2px 0px rgba(0, 0, 0, 0.50);
}

.class_explorer_item:active
{
  font-family: Roboto, Arial;
  font-size: 12px;
  background-color: rgb(250, 250, 250);
  background-color: white;
  border-radius: 3px;
  box-shadow: 1px 1px 2px 0px rgba(0, 0, 0, 0.10);
}

.class_explorer_item_icon
{
  transition: all .2s ease-in-out;
}

.class_explorer_item_icon
{
  color: rgba(0, 0, 0, 0.8); 
  text-align: center; 
  width: 64px; 
  height: 64px; 
  font-size: 64px;
}

.class_explorer_item_title
{
  width: 100%;
  color: black; 
  font-size: 12px; 
  text-align: center;
  text-overflow: ellipsis; 
  word-break: break-all; 
  white-space: nowrap; 
  overflow: hidden; 
  margin-top: 2px; 
  font-weight: bold;
  padding-top: 4px;
  padding-bottom: 4px;
}

.class_explorer_item_icon:hover
{
  color: black;
}

.class_explorer_item_unselect
{
}

.class_path_explorer_item 
{
  border-radius: 2px;
  background-color: white;
  margin: 10px 0px 10px 10px;
  box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.20);
  cursor: pointer;
  font-family: Roboto, Arial;

  padding-top: 5px;
  padding-bottom: 5px;
  padding-left: 8px;
  padding-right: 12px;
}

.class_path_explorer_icon 
{
  font-size: 16px;
  padding-right: 6px;
}

.class_path_explorer_text
{
  text-overflow: clip; 
  color: rgba(0, 0, 0, 0.8); 
  float: left;
  font-size: 18px;
  display: flex;
  align-items: center;
}

.class_path_explorer_item:hover 
{
  box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.40);
}

.class_explorer_div
{
  background-color: rgb(250, 250, 250);
}

.class_user_sep
{
  display:flex;
  align-items: center;
  float: left; 
  position: relative;
  width: calc(100% - 10px);
  background-color: white;
  margin: 10px 0px 0px 10px;
  border: 1px #e2e2e2 dashed;
  padding: 9px;
  font-weight: bold;
}
* {
  margin: 0px;
  padding: 0;
  outline: none;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

/* body */

body {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  -o-user-select: none;
  user-select: none;
  background-color: rgb(250, 250, 250);
  overflow: hidden;
  counter-reset: section;
}

/* Header use in home directory */

.header {
    width: 100%;
    height: 70px;
    position: relative;
    float: left;
}

/*  N E W   S Y S T E M */

.ss_header {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.ss_body {
    display: flex;
    flex: 1 1 auto;
    flex-direction: column;
    overflow-y: auto;
    overflow-x: hidden;
}

.ss_main {
    width:100%;
    display: flex;
    flex: 1 1 auto;
}

.ss_icon_container {
    display: flex;
    width: 90px;
    font-size: 24px;
    cursor: pointer;
    padding-right: 6px;
    color: rgba(0, 0, 0, 0.8);
    flex-wrap: wrap;
    flex-direction: row-reverse;
}

.ss_logo {
    width: 256px;
    height: 70px;
    background-image: url("header_logo.svg");
    background-size: contain;
    background-repeat: no-repeat;
}

.ss_icon_item {
    color: rgba(0, 0, 0, 0.8);
    cursor: pointer;
    padding:2px;
}

/*  M E D I A   S M A L L  */

@media (max-width: 284px) 
{
    .ss_logo
    {
        min-width: 100px;
        width: 100px;
        background-image: url("header_logo_small.svg");
        background-size: contain;
        background-repeat: no-repeat;
        height: 50px;
    }

    .ss_header { flex-wrap: nowrap; }
    .ss_icon_container { width: auto; font-size: 22px; flex-wrap: nowrap; }

    .icon-help.ss_icon_item { display: none; }
    .icon-save.ss_icon_item { display: none; }
    .icon-filter_reset.ss_icon_item { display: none; }
}

/*  M E D I A   M E D I U M  */

@media (min-width: 284px) and (max-width: 360px) 
{
    .ss_icon_container { width: auto; font-size: 22px; }
    .ss_logo { width: 190px; height: 50px; }

    .icon-help.ss_icon_item { display: none; }
    .icon-save.ss_icon_item { display: none; }
    .icon-filter_reset.ss_icon_item { display: none; }
}

/* media print */

@media print
{
    header
    {
        display: none;
    }

    #icon_parent_div
    {
        display: none;
    }

    body
    {
    }
}

/* change selection color */

::selection 
{
  background: #ffb7b7;
}

::-moz-selection
{
  background: #ffb7b7; /* Gecko Browsers */
}

.gray_body
{
  -webkit-font-smoothing: antialiased;
  padding: 15px;
  font-family: Roboto, Arial;
  font-size: 16px;
  background-color: rgb(243, 243, 243);
}

.white_body
{
  -webkit-font-smoothing: antialiased;
  padding: 15px;
  font-family: Roboto, Arial;
  font-size: 16px;
  background-color: rgb(255, 255, 255);
}

#id_conf_edit
{
  margin-top: 10px;
  margin-bottom: 10px;
  padding: 10px;
  width: 100%;
  height: 25em;
  resize: none;
}

input
{
	font-family: Roboto, Arial;
    font-size:12px;
	background-color: rgb(255, 255, 255);
	border: 1px solid rgb(185, 185, 185);
	border-radius: 2px;
	display: block;
	width: 100%;
	padding: 3px;
}

.tool_header
{
  margin-left: 5px;
  font-size:12px;

  top: 50%;
  position: relative;

  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

textarea
{
  resize: none;
  border: 0px solid white;
}

/* easy way to plop the elements on top of each other and have them both sized based on the tallest one's height */

.grow-wrap 
{
  display: grid;
}

.grow-wrap::after 
{
  /* Note the weird space! Needed to preventy jumpy behavior */
  content: attr(data-replicated-value) " ";

  /* This is how textarea text behaves */
  white-space: pre-wrap;

  /* Hidden from view, clicks, and screen readers */
  visibility: hidden;
}

.grow-wrap > textarea 
{
  /* You could leave this, but after a user resizes, then it ruins the auto sizing */
  resize: none;

  /* Firefox shows scrollbar on growth, you can hide like this. */
  overflow: hidden;
}

.grow-wrap > textarea,
.grow-wrap::after 
{
  /* Identical styling required!! */
/*  border: 1px solid black;*/
  /*padding: 0.5rem;*/
  font: inherit;

  /* Place on top of each other */
  grid-area: 1 / 1 / 2 / 2;
}
  

/* S E L E C T   T A G */

.select_tag
{
  color: rgba(0, 0, 0, 1);
  border: rgb(200, 200, 200) 1px dashed;
}

.unselect_tag
{
  color: rgba(0, 0, 0, 0.4);
  border: rgba(0, 0, 0, 0) 1px solid;
}

.unselect_tag:hover 
{ 
  background-color: #ffb7b7;
}

/* ... */

input[type=number]::-webkit-inner-spin-button, 
input[type=number]::-webkit-outer-spin-button 
{ 
  -webkit-appearance: none; 
  margin: 0; 
}

/*  P R O P E R T I E S  */

.spa_prop_input_number
{
  padding: 1px 4px;
  height: 18px;
  width: 30px;
}

.spa_prop_label
{
  width: calc(50% - 24px); 
  height: 20px; 
  float: left; 
  line-height: 20px; 
  cursor: pointer; 
  color: rgba(0, 0, 0, 0.5);
}

.spa_prop_label:hover
{
  color: rgba(0, 0, 0, 0.8);
}

.spa_prop_label_check
{
  float: left; 
  font-size: 14px; 
  cursor: pointer; 
  border-radius: 2px; 
  border: 1px solid rgb(128, 128, 128, 0.3); 
  margin-top: 2px; 
  margin-bottom: 2px; 
  margin-right: 8px; 
  width: 16px; 
  height: 16px;
}

.spa_prop_label_uncheck
{
  float: left;
  font-size: 14px;
  cursor: pointer;
  border-radius: 1px;
  border: 1px dotted rgb(128, 128, 128, 0.3);
  margin-top: 2px;
  margin-bottom: 2px;
  margin-right: 8px;
  width: 16px;
  height: 16px;
}

.spa_prop_label_check:hover
{
  color: rgba(0, 0, 0, 0.8);  
  border: 1px solid rgb(128, 128, 128, 0.8); 
}

/*  A N I M   H I D E  */

.ui_anim_hide
{
    animation: ui_hide_animation 300ms;
    animation-fill-mode: forwards;
    animation-timing-function:ease-in-out;
    -webkit-animation: ui_hide_animation 300ms;
    -webkit-animation-fill-mode: forwards;
    -webkit-animation-timing-function:ease-in-out;
}

@keyframes ui_hide_animation
{
    0%   { }
    50%  { transform: scale(1, 1); opacity: 1.0; }
    100% { transform: scale(0.95, 0.95); opacity: 0.0; }
}

@-webkit-keyframes ui_hide_animation
{
    0%   { }
    50%  { -webkit-transform: scale(1, 1); opacity: 1.0; }
    100% { -webkit-transform: scale(0.95, 0.95); opacity: 0.0;  }
}

/* A N I M   H I D E */

.ui_anim_flash
{
    animation: ui_flash_animation 600ms;
    animation-fill-mode: forwards;
    animation-timing-function:ease-in-out;

    -webkit-animation: ui_flash_animation 600ms;
    -webkit-animation-fill-mode: forwards;
    -webkit-animation-timing-function:ease-in-out;
}

@keyframes ui_flash_animation
{
    0%   { background-color: rgba(0, 0, 0, 0);   }
    25%  { background-color: rgba(0, 0, 0, 0.7); }
    50%  { background-color: rgba(0, 0, 0, 0);   }
    75%  { background-color: rgba(0, 0, 0, 0.7); }
    100% { background-color: rgba(0, 0, 0, 0);   }
}

@-webkit-keyframes ui_flash_animation
{
    0%   { background-color: rgba(0, 0, 0, 0);   }
    25%  { background-color: rgba(0, 0, 0, 0.7); }
    50%  { background-color: rgba(0, 0, 0, 0);   }
    75%  { background-color: rgba(0, 0, 0, 0.7); }
    100% { background-color: rgba(0, 0, 0, 0);   }
}

/* ----------------------------------------------------------------------------
   A N I M A T I O N 
   ---------------------------------------------------------------------------- */

.ss_fadein
{
    animation: no_data_msg_animation 300ms;
    animation-timing-function: ease-in-out;
    animation-fill-mode: forwards;

    -webkit-animation: no_data_msg_animation 300ms;
    -webkit-animation-timing-function: ease-in-out;
    -webkit-animation-fill-mode: forwards;
}

@keyframes no_data_msg_animation
{
    from { opacity: 0; }
    to { opacity: 1; }
}

@-webkit-keyframes no_data_msg_animation
{
    from { opacity: 0; }
    to { opacity: 1; }
}

.ss_fadeout
{
    animation: no_data_msg_animation_ 300ms;
    animation-timing-function: ease-in-out;
    animation-fill-mode: forwards;

    -webkit-animation: no_data_msg_animation_ 300ms;
    -webkit-animation-timing-function: ease-in-out;
    -webkit-animation-fill-mode: forwards;
}

@keyframes no_data_msg_animation_
{
    from { opacity: 1; }
    to { opacity: 0; }
}

@-webkit-keyframes no_data_msg_animation_
{
    from { opacity: 1; }
    to { opacity: 0; }
}

/* ---------------------------------------------------------------------------- 
   A X I F O R M A 
   ---------------------------------------------------------------------------- */

@font-face
{
    font-family: 'Axiforma';
    src: url('font/axiforma-regular.woff') format('woff'), url('font/axiforma-regular.woff2') format('woff2');
    font-weight: normal;
    font-style: normal;
}

/* ---------------------------------------------------------------------------- 
   R O B O T O   S M A L L - 20kb 
   ---------------------------------------------------------------------------- */

@font-face
{
  font-family: 'Roboto';
  src: url('font/roboto-small/roboto-regular.woff') format('woff'), url('font/roboto-small/roboto-regular.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

@font-face
{
  font-family: 'Roboto';
  src: url('font/roboto-small/roboto-bold.woff') format('woff'), url('font/Roboto-small/roboto-bold.ttf') format('truetype');
  font-weight: bold;
  font-style: normal;
}

/* ---------------------------------------------------------------------------- 
   I N C O N S O L A T A 
   ---------------------------------------------------------------------------- */

@font-face 
{
  font-family: 'Inconsolata';
  src: url('font/inconsolata-regular.woff') format('woff'), url('font/inconsolata-regular.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

@font-face 
{
  font-family: 'Inconsolata';
  src: url('font/inconsolata-bold.ttf') format('truetype');
  font-weight: bold;
  font-style: normal;
}

/* ---------------------------------------------------------------------------- 
   M E T A O F F C 
   ---------------------------------------------------------------------------- */

@font-face
{
  font-family: 'MetaOffc';
  src: url('font/MetaOffc-Medi.woff') format('woff'), url('font/MetaOffc-Medi.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

#FooterWide 
{ 
  clear:both; 
  width:800px; 
  font-size:11px; 
  margin:auto; 
  padding:15px; 
  text-align:center;
  font-family: Verdana;
  color: rgb(123, 125, 128);
}

footer 
{
  position:absolute;
  bottom:0;
  width:100%;
  height:60px;
}

.dashboard_thumbnail
{
  border: 2px solid rgba(0, 0, 0, 0.02);
}

.dashboard_thumbnail_select
{
	border: 2px solid rgba(0, 0, 0, 0.2);
}

.dashboard_thumbnail:hover
{
	border: 2px solid rgba(0, 0, 0, 0.08);
}

/* S C R O L L B A R   F O R   C H R O M E   O N L Y  */

::-webkit-scrollbar  { background-color: transparent; }
::-webkit-scrollbar:vertical { width: 10px; background-color: #FFFFFF; }
::-webkit-scrollbar-thumb:vertical { background-color: rgba(0, 0, 0, 0.3); border: 1px solid transparent; background-clip: content-box; }
::-webkit-scrollbar-track-piece:vertical  { background-color: rgba(0, 0, 0, 0.1); border: 1px solid transparent; background-clip: content-box; }
::-webkit-scrollbar:horizontal { height: 10px; background-color: #FFFFFF; }
::-webkit-scrollbar-thumb:horizontal { background-color: rgba(0, 0, 0, 0.3); border: 1px solid transparent; background-clip: content-box; }
::-webkit-scrollbar-track-piece:horizontal  { background-color: rgba(0, 0, 0, 0.1); border: 1px solid transparent; background-clip: content-box; }
::-webkit-scrollbar-thumb:hover { background-color: rgba(0, 0, 0, 0.6); }
::-webkit-scrollbar-corner { background-color: transparent; }

/* N E W   A N I M A T I O N */

.small_loader
{
  width: 10px;
  height: 10px;
  position: relative;
  border: 1px solid rgba(0, 0, 0, 0.3);
  animation: loader 1.5s infinite ease;
  -webkit-animation: loader 1.5s infinite ease;
}

.loader
{
  width: 20px;
  height: 20px;
  position: relative;
  border: 1px solid rgba(0, 0, 0, 0.5);
  animation: loader 1.5s infinite ease;
  -webkit-animation: loader 1.5s infinite ease;
}

.loader-inner
{
  vertical-align: top;
  display: inline-block;
  padding: 2px;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.3);
  animation: loader-inner 1.5s infinite ease-in;
  -webkit-animation: loader-inner 1.5s infinite ease-in;
}

@keyframes loader {
  0% {
    transform: rotate(0deg);
    -webkit-transform:rotate(0deg);
  }
  25% {
    transform: rotate(180deg);
    -webkit-transform:rotate(180deg);
  }
  50% {
    transform: rotate(180deg);
    -webkit-transform:rotate(180deg);
  }
  75% {
    transform: rotate(360deg);
    -webkit-transform:rotate(360deg);
  }
  100% {
    transform: rotate(360deg);
    -webkit-transform:rotate(360deg);
  }
}

@-webkit-keyframes loader {
  0% {
    transform: rotate(0deg);
    -webkit-transform:rotate(0deg);
  }
  25% {
    transform: rotate(180deg);
    -webkit-transform:rotate(180deg);
  }
  50% {
    transform: rotate(180deg);
    -webkit-transform:rotate(180deg);
  }
  75% {
    transform: rotate(360deg);
    -webkit-transform:rotate(360deg);
  }
  100% {
    transform: rotate(360deg);
    -webkit-transform:rotate(360deg);
  }
}

@keyframes loader-inner {
  0% {
    height: 0%;
  }
  
  25% {
    height: 0%;
  }
  
  50% {
    height: 100%;
  }
  
  75% {
    height: 100%;
  }
  
  100% {
    height: 0%;
  }
}

@-webkit-keyframes loader-inner {
  0% {
    height: 0%;
  }
  
  25% {
    height: 0%;
  }
  
  50% {
    height: 100%;
  }
  
  75% {
    height: 100%;
  }
  
  100% {
    height: 0%;
  }
}

/* content editable on Safari workaround */

*[contenteditable] {
    -webkit-user-select: auto;
}

/* arrow down */

.arrow-down {
  width: 0; 
  height: 0; 
  border-left: 4.5px solid transparent;
  border-right: 4.5px solid transparent;
  
  border-top: 6px solid rgba(0, 0, 0, 0.7);
}

/* column item */

.column_item__ {
  border-radius: 4px;
  background: #444444;
  color: #cbcbcb;
  margin-bottom: 2px;
  box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.20);
  cursor: pointer;
  padding-left: 9px;
  padding-right: 9px;
}

.column_item {
  border: 1px solid white;
  border-radius: 2px;
  background-color: white;
  cursor: pointer;
  padding-left: 9px;
  padding-right: 9px;
}

.column_item:hover {
    border: 1px solid rgba(0, 0, 0, 0.5);
}

/* ACE SCROLLBAR */

.stat_scrollbar {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 6;
}

.stat_scrollbar-h {
  overflow-x: scroll;
  overflow-y: hidden;
  left: 0;
  cursor: pointer;
}

.stat_scrollbar-v {
  overflow-x: hidden;
  overflow-y: scroll;
  top: 0;
  cursor: pointer;
}


.table_im_err {
  width: 100%;
  max-height:100px;
  font-size: 12px;
  font-weight: normal;
  border: 1px solid rgba(0, 0, 0, 0.5);
}

.table_im_err td {
  padding: 3px;
  font-weight: bold;
  border: 1px solid rgba(0, 0, 0, 0.5);
  text-align: center;
}

.table_im_err th {
  padding: 3px;
  font-weight: normal;
  border: 1px solid rgba(0, 0, 0, 0.5);
}

::-ms-clear { display: none; }

/* E M P L A C E M E N T   D I V */

.emplacement_back_div {
  position: relative;
  background-color: rgba(0, 0, 0, 0.05);
  width: calc(100% - 6px);
  border-radius: 4px;
  border-color: rgba(0, 0, 0, 0.5);
  border: 1px solid;
  border-style: dashed;
  margin: 3px;
}

@keyframes emplacement_div_anim_back {
  from {
    border-color: rgba(0, 0, 0, 0.5);
    background-color: rgba(0, 0, 0, 0.05);
  }

  to {
    border-color: rgba(0, 0, 0, 0);
    background-color: rgba(0, 0, 0, 0.0);
    height: 0px;
  }
}

.emplacement_div 
{
  position: relative;
  background-color: rgba(0, 0, 0, 0.05);
  width: calc(100% - 6px);
  border-radius: 4px;
  border-color: rgba(0, 0, 0, 0.5);
  border: 1px solid;
  border-style: dashed;
  margin: 3px;
}

@keyframes emplacement_div_anim
{
  from 
  {
    border-color: rgba(0, 0, 0, 0);
    background-color: rgba(0, 0, 0, 0.0);
    height: 0px;
  }

  to 
  {
    border-color: rgba(0, 0, 0, 0.5);
    background-color: rgba(0, 0, 0, 0.05);
  }
}

.high
{
  color: rgb(218, 43, 43);
  border: 1px dashed rgb(221, 0, 0);
}

/* A C E   C O M P L E T I O N   I T E M */

.ace_completion_popup
{
  position: absolute;
  width: 400px;
  z-index: 100000;
  box-shadow: 1px 1px 2px 0px rgb(0 0 0 / 30%);
  padding: 4px;
  background-color: white;
  max-height: 180px;
}

.ace_completion_item
{
  font-family: Consolas;
  font-size: 12px;
}

.ace_completion_item_type
{
  float: right;
  padding-right: 4px;
}

.ace_completion_sb::-webkit-scrollbar:vertical {  width: 8px; }
.ace_completion_sb::-webkit-scrollbar-thumb:vertical { background-color: rgb(160, 160, 160); border-left: 5px solid white; background-clip: padding-box; }
.ace_completion_sb::-webkit-scrollbar-track-piece:vertical { background-color: rgba(0, 0, 0, 0.1); border-left: 5px solid white; background-clip: padding-box; }

/*  T O O L  */

.stat_tool_window
{
  position: fixed;
  border-radius: 2px;
  background-color: rgb(250, 250, 250);

  border-width: 6px;
  border-style: solid;
  border-color: white;

  -webkit-box-shadow: 1px 1px 2px 0px rgba(0, 0, 0, 0.30);
  -moz-box-shadow: 1px 1px 2px 0px rgba(0, 0, 0, 0.30);
  box-shadow: 1px 1px 2px 0px rgba(0, 0, 0, 0.30);
}

/*   T O O L T I P   */

.stat_tooltip
{
  pointer-events: none;
  position: absolute;
  padding: 5px;
  border-radius: 5px;
  background-color: rgba(240, 240, 240, 0.9);
  border: 2px solid black;
  filter: drop-shadow(5px 5px 5px 5px black);
  z-index: 1000;
  font-family: Roboto;
  font-size: 12px;
  color: black;
/*  outline: 1px solid white;*/
}

.stat_tooltip_top
{
}

.stat_tooltip_top::after
{
  content: " ";
  position: absolute;
  top: calc(100% + 2px); /* At the bottom of the tooltip */
  left: 50%;
  margin-left: -5px;
  border-width: 5px;
  border-style: solid;
  border-color: var(--tooltip-color) transparent transparent transparent;
}

.stat_tooltip_bottom
{
}

.stat_tooltip_bottom::after
{
  content: " ";
  position: absolute;
  bottom: calc(100% + 2px);  /* At the top of the tooltip */
  left: 50%;
  margin-left: -5px;
  border-width: 5px;
  border-style: solid;
  border-color: transparent transparent var(--tooltip-color) transparent;
}

.stat_tooltip_left
{
}

.stat_tooltip_left::after
{
  content: " ";
  position: absolute;
  top: 50%;
  left: calc(100% + 2px); /* To the right of the tooltip */
  margin-top: -5px;
  border-width: 5px;
  border-style: solid;
  border-color: transparent transparent transparent var(--tooltip-color);
}

.stat_tooltip_right
{
}

.stat_tooltip_right::after
{
  content: " ";
  position: absolute;
  top: 50%;
  right: calc(100% + 2px); /* To the left of the tooltip */
  margin-top: -5px;
  border-width: 5px;
  border-style: solid;
  border-color: transparent var(--tooltip-color) transparent transparent;
}

/*   S P A L L I A N   */

.spallian_header
{
  display: contents;
  width: 100%;
  height: 70px;
  position: relative;
}

.spallian_header_icon
{
  line-height: 70px;
  font-size: 30px;
  cursor: pointer;
  float: right;
  padding-right: 6px;
  color: rgba(0, 0, 0, 0.8);
}

.spallian_root_container
{
  width: 100%;
  position: relative;
  float: left;
  border-width: 0px;
}

.spallian_root_container_without_header
{
  width: 100%;
  height: 100%;
  position: relative;
  float: left;
  border-width: 0px;
}

.spallian_icon_container
{
  float: right;
  display: inline;
  width: 100px;
  height: 70px;
  font-size: 24px;
  padding-top: 4px;
  padding-right: 10px;
}

.spallian_layout_container
{
  float: left;
  width: 100%;
  height: 38px;
  background-color: rgba(0, 0, 0, 0.02);
  margin-top: 4px;
  margin-bottom: 4px;
  position: relative;
}

.spallian_layout_breakpoint
{
  top: 4px;
  height: 22px;
  border-radius: 4px;
  background-color: #ff876b;
  text-align: center;
  position: absolute;
  margin: 0px auto;  
  box-shadow: 1px 1px 1px 0px rgba(0, 0, 0, 0.2);
  font-size: 14px;
  padding-right: 3px;
  border: 1px solid black;
  font-weight: bold;
  padding-left: 4px;
  padding-top: 2px;
  cursor: pointer;
}

.spa_selection_frame_move
{
  position: absolute;
  left: 0px;
  top: -2px;
  width: 100%;
  height: 6px;
  background-color: transparent;
  cursor: move;
  z-index: 1;
  pointer-events: auto;
}

.spa_property_item
{
  border: 1px solid #c7c7c7;
  background-color: white;
}

.spa_property_item_color
{
  border: 1px solid #c7c7c7;
}

div.spa_tooltip_table td
{
  padding: 0px 20px 0px 0px;
}

div.spa_tooltip_table td:last-child
{
  padding: 0px 0px 0px 0px;
}

div.spa_tooltip_table table
{
  font-size: 12px;
}

/*  S P A L L I A N    T S    E V E N T  */

.spa_ts_event_combo_icon
{
  float: left;
  width: 27px;
  height: 100%;
  line-height: 29px;
  font-size: 12px;
  padding-left: 4px;
  padding-right: 4px;
  text-align: center;
}

.spa_ts_event_combo_dropdown_icon
{
  float: left;
  width: 27px;
  height: 100%;
  line-height: 29px;
  font-size: 12px;
  padding-left: 4px;
  padding-right: 4px;
  color: rgb(230, 230, 230);
  text-align: center;
}

.spa_ts_event_combo_label
{
  float: left;
  width: calc(100% - 54px);
  height: 100%;
  line-height: 29px;
  color: rgb(230, 230, 230);
  font-size: 12px;
  text-overflow: ellipsis;
}

.spa_ts_event_combo
{
  cursor: pointer;
  width: 100%;
  height: 100%;
  background-color: rgb(47, 47, 47);
  border: 1px solid rgb(63, 63, 63);
}

.spa_ts_event_popup
{
  position: absolute;
  cursor: default;
  background-color: rgb(47, 47, 47);
  z-index: 10000;
  border: 1px solid rgb(63, 63, 63);
  box-shadow: 1px 1px 2px 0px rgb(0 0 0 / 30%);
  padding-top: 4px;
  padding-left: 4px;
}

.spa_ts_event_tags
{
  
}

.spa_ts_event_header
{
  display: flex;
  min-width: 130px;
  color: white;
  font-size: 12px;
  line-height: 16px;
  padding: 6px;
  background-color: rgb(63, 63, 63);
  margin-bottom: 5px;
  margin-right: 5px;
  box-shadow: 1px 1px 2px 0px rgb(0 0 0 / 30%);
}

.spa_ts_event_footer
{
  width: 100%;
  height: 26px;
  float: left;
  color: white;
  font-size: 12px;
  line-height: 16px;
  background-color: rgb(63, 63, 63);
}

.spa_ts_event_tag
{
  display: flex;
  cursor: pointer;
  border: 1px solid rgb(63, 63, 63);
  color: rgb(230, 230, 230);
  font-size: 12px;
  padding: 6px;
  margin-right: 5px;
  margin-bottom: 5px;
  border-radius: 3px;
  background-color: rgb(43, 43, 43);
  box-shadow: 1px 1px 2px 0px rgb(0 0 0 / 30%);
}

.spa_ts_event_tag_selected
{
  display: flex;
  cursor: pointer;
  border: 1px solid rgb(160, 160, 160);
  color: white;
  font-size: 12px;
  padding: 6px;
  margin-right: 5px;
  margin-bottom: 5px;
  border-radius: 3px;
  background-color: rgb(63, 63, 63);
  box-shadow: 1px 1px 2px 0px rgb(0 0 0 / 30%);
}

.spa_ts_event_tag:hover
{
  display: flex;
  cursor: pointer;
  border: 1px solid rgb(180, 180, 180);
  color: white;
  font-size: 12px;
  padding: 6px;
  margin-right: 5px;
  margin-bottom: 5px;
  border-radius: 3px;
}

.text_ul
{
  margin-left: 20px
}

/* D E F A U L T   T A B L E */

.text_table
{
  width: calc(100% - 40px);
  margin: 0 auto;
  font-size: 16px;
  color: rgb(51, 51, 51);
  margin-top: 10px;
  margin-bottom: 10px;
}

.text_table td
{
  padding: 8px;
  border: 1px solid #efebeb;
  min-width: 150px;
  font-size: 14px;
}

.text_table th
{
  border: 1px solid #d6d6d6; 
  background-color: #f0f0f0;
}

.text_table tr:nth-child(even)
{
  background-color: #fafafa;
}

.spa_layout_dbg
{
  text-align: center;
  align-content: center;
  overflow: hidden;
}
.flatpickr-calendar{background:transparent;opacity:0;display:none;text-align:center;visibility:hidden;padding:0;-webkit-animation:none;animation:none;direction:ltr;border:0;font-size:14px;line-height:24px;border-radius:5px;position:absolute;width:307.875px;-webkit-box-sizing:border-box;box-sizing:border-box;-ms-touch-action:manipulation;touch-action:manipulation;background:#fff;-webkit-box-shadow:1px 0 0 #e6e6e6,-1px 0 0 #e6e6e6,0 1px 0 #e6e6e6,0 -1px 0 #e6e6e6,0 3px 13px rgba(0,0,0,0.08);box-shadow:1px 0 0 #e6e6e6,-1px 0 0 #e6e6e6,0 1px 0 #e6e6e6,0 -1px 0 #e6e6e6,0 3px 13px rgba(0,0,0,0.08);}.flatpickr-calendar.open,.flatpickr-calendar.inline{opacity:1;max-height:640px;visibility:visible}.flatpickr-calendar.open{display:inline-block;z-index:99999}.flatpickr-calendar.animate.open{-webkit-animation:fpFadeInDown 300ms cubic-bezier(.23,1,.32,1);animation:fpFadeInDown 300ms cubic-bezier(.23,1,.32,1)}.flatpickr-calendar.inline{display:block;position:relative;top:2px}.flatpickr-calendar.static{position:absolute;top:calc(100% + 2px);}.flatpickr-calendar.static.open{z-index:999;display:block}.flatpickr-calendar.multiMonth .flatpickr-days .dayContainer:nth-child(n+1) .flatpickr-day.inRange:nth-child(7n+7){-webkit-box-shadow:none !important;box-shadow:none !important}.flatpickr-calendar.multiMonth .flatpickr-days .dayContainer:nth-child(n+2) .flatpickr-day.inRange:nth-child(7n+1){-webkit-box-shadow:-2px 0 0 #e6e6e6,5px 0 0 #e6e6e6;box-shadow:-2px 0 0 #e6e6e6,5px 0 0 #e6e6e6}.flatpickr-calendar .hasWeeks .dayContainer,.flatpickr-calendar .hasTime .dayContainer{border-bottom:0;border-bottom-right-radius:0;border-bottom-left-radius:0}.flatpickr-calendar .hasWeeks .dayContainer{border-left:0}.flatpickr-calendar.showTimeInput.hasTime .flatpickr-time{height:40px;border-top:1px solid #e6e6e6}.flatpickr-calendar.noCalendar.hasTime .flatpickr-time{height:auto}.flatpickr-calendar:before,.flatpickr-calendar:after{position:absolute;display:block;pointer-events:none;border:solid transparent;content:'';height:0;width:0;left:22px}.flatpickr-calendar.rightMost:before,.flatpickr-calendar.rightMost:after{left:auto;right:22px}.flatpickr-calendar:before{border-width:5px;margin:0 -5px}.flatpickr-calendar:after{border-width:4px;margin:0 -4px}.flatpickr-calendar.arrowTop:before,.flatpickr-calendar.arrowTop:after{bottom:100%}.flatpickr-calendar.arrowTop:before{border-bottom-color:#e6e6e6}.flatpickr-calendar.arrowTop:after{border-bottom-color:#fff}.flatpickr-calendar.arrowBottom:before,.flatpickr-calendar.arrowBottom:after{top:100%}.flatpickr-calendar.arrowBottom:before{border-top-color:#e6e6e6}.flatpickr-calendar.arrowBottom:after{border-top-color:#fff}.flatpickr-calendar:focus{outline:0}.flatpickr-wrapper{position:relative;display:inline-block}.flatpickr-months{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;}.flatpickr-months .flatpickr-month{background:transparent;color:rgba(0,0,0,0.9);fill:rgba(0,0,0,0.9);height:28px;line-height:1;text-align:center;position:relative;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;overflow:hidden;-webkit-box-flex:1;-webkit-flex:1;-ms-flex:1;flex:1}.flatpickr-months .flatpickr-prev-month,.flatpickr-months .flatpickr-next-month{text-decoration:none;cursor:pointer;position:absolute;top:0;line-height:16px;height:28px;padding:10px;z-index:3;color:rgba(0,0,0,0.9);fill:rgba(0,0,0,0.9);}.flatpickr-months .flatpickr-prev-month.flatpickr-disabled,.flatpickr-months .flatpickr-next-month.flatpickr-disabled{display:none}.flatpickr-months .flatpickr-prev-month i,.flatpickr-months .flatpickr-next-month i{position:relative}.flatpickr-months .flatpickr-prev-month.flatpickr-prev-month,.flatpickr-months .flatpickr-next-month.flatpickr-prev-month{/*
      /*rtl:begin:ignore*/left:0;/*
      /*rtl:end:ignore*/}/*
      /*rtl:begin:ignore*/
/*
      /*rtl:end:ignore*/
.flatpickr-months .flatpickr-prev-month.flatpickr-next-month,.flatpickr-months .flatpickr-next-month.flatpickr-next-month{/*
      /*rtl:begin:ignore*/right:0;/*
      /*rtl:end:ignore*/}/*
      /*rtl:begin:ignore*/
/*
      /*rtl:end:ignore*/
.flatpickr-months .flatpickr-prev-month:hover,.flatpickr-months .flatpickr-next-month:hover{color:#959ea9;}.flatpickr-months .flatpickr-prev-month:hover svg,.flatpickr-months .flatpickr-next-month:hover svg{fill:#f64747}.flatpickr-months .flatpickr-prev-month svg,.flatpickr-months .flatpickr-next-month svg{width:14px;height:14px;}.flatpickr-months .flatpickr-prev-month svg path,.flatpickr-months .flatpickr-next-month svg path{-webkit-transition:fill .1s;transition:fill .1s;fill:inherit}.numInputWrapper{position:relative;height:auto;}.numInputWrapper input,.numInputWrapper span{display:inline-block}.numInputWrapper input{width:100%;}.numInputWrapper input::-ms-clear{display:none}.numInputWrapper input::-webkit-outer-spin-button,.numInputWrapper input::-webkit-inner-spin-button{margin:0;-webkit-appearance:none}.numInputWrapper span{position:absolute;right:0;width:14px;padding:0 4px 0 2px;height:50%;line-height:50%;opacity:0;cursor:pointer;border:1px solid rgba(57,57,57,0.15);-webkit-box-sizing:border-box;box-sizing:border-box;}.numInputWrapper span:hover{background:rgba(0,0,0,0.1)}.numInputWrapper span:active{background:rgba(0,0,0,0.2)}.numInputWrapper span:after{display:block;content:"";position:absolute}.numInputWrapper span.arrowUp{top:0;border-bottom:0;}.numInputWrapper span.arrowUp:after{border-left:4px solid transparent;border-right:4px solid transparent;border-bottom:4px solid rgba(57,57,57,0.6);top:26%}.numInputWrapper span.arrowDown{top:50%;}.numInputWrapper span.arrowDown:after{border-left:4px solid transparent;border-right:4px solid transparent;border-top:4px solid rgba(57,57,57,0.6);top:40%}.numInputWrapper span svg{width:inherit;height:auto;}.numInputWrapper span svg path{fill:rgba(0,0,0,0.5)}.numInputWrapper:hover{background:rgba(0,0,0,0.05);}.numInputWrapper:hover span{opacity:1}.flatpickr-current-month{font-size:135%;line-height:inherit;font-weight:300;color:inherit;position:absolute;width:75%;left:12.5%;padding:6.16px 0 0 0;line-height:1;height:28px;display:inline-block;text-align:center;-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0);}.flatpickr-current-month span.cur-month{font-family:inherit;font-weight:700;color:inherit;display:inline-block;margin-left:.5ch;padding:0;}.flatpickr-current-month span.cur-month:hover{background:rgba(0,0,0,0.05)}.flatpickr-current-month .numInputWrapper{width:6ch;width:7ch\0;display:inline-block;}.flatpickr-current-month .numInputWrapper span.arrowUp:after{border-bottom-color:rgba(0,0,0,0.9)}.flatpickr-current-month .numInputWrapper span.arrowDown:after{border-top-color:rgba(0,0,0,0.9)}.flatpickr-current-month input.cur-year{background:transparent;-webkit-box-sizing:border-box;box-sizing:border-box;color:inherit;cursor:text;padding:0 0 0 .5ch;margin:0;display:inline-block;font-size:inherit;font-family:inherit;font-weight:300;line-height:inherit;height:auto;border:0;border-radius:0;vertical-align:initial;-webkit-appearance:textfield;-moz-appearance:textfield;appearance:textfield;}.flatpickr-current-month input.cur-year:focus{outline:0}.flatpickr-current-month input.cur-year[disabled],.flatpickr-current-month input.cur-year[disabled]:hover{font-size:100%;color:rgba(0,0,0,0.5);background:transparent;pointer-events:none}.flatpickr-current-month .flatpickr-monthDropdown-months{appearance:menulist;background:transparent;border:none;border-radius:0;box-sizing:border-box;color:inherit;cursor:pointer;font-size:inherit;font-family:inherit;font-weight:300;height:22px;line-height:inherit;margin:-1px 0 0 0;outline:none;padding:0 0 0 .5ch;position:relative;vertical-align:initial;-webkit-box-sizing:border-box;-webkit-appearance:menulist;-moz-appearance:menulist;width:auto;}.flatpickr-current-month .flatpickr-monthDropdown-months:focus,.flatpickr-current-month .flatpickr-monthDropdown-months:active{outline:none}.flatpickr-current-month .flatpickr-monthDropdown-months:hover{background:rgba(0,0,0,0.05)}.flatpickr-current-month .flatpickr-monthDropdown-months .flatpickr-monthDropdown-month{background-color:transparent;outline:none;padding:0}.flatpickr-weekdays{background:transparent;text-align:center;overflow:hidden;width:100%;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-box-align:center;-webkit-align-items:center;-ms-flex-align:center;align-items:center;height:28px;}.flatpickr-weekdays .flatpickr-weekdaycontainer{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-box-flex:1;-webkit-flex:1;-ms-flex:1;flex:1}span.flatpickr-weekday{cursor:default;font-size:90%;background:transparent;color:rgba(0,0,0,0.54);line-height:1;margin:0;text-align:center;display:block;-webkit-box-flex:1;-webkit-flex:1;-ms-flex:1;flex:1;font-weight:bolder}.dayContainer,.flatpickr-weeks{padding:1px 0 0 0}.flatpickr-days{position:relative;overflow:hidden;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-box-align:start;-webkit-align-items:flex-start;-ms-flex-align:start;align-items:flex-start;width:307.875px;}.flatpickr-days:focus{outline:0}.dayContainer{padding:0;outline:0;text-align:left;width:307.875px;min-width:307.875px;max-width:307.875px;-webkit-box-sizing:border-box;box-sizing:border-box;display:inline-block;display:-ms-flexbox;display:-webkit-box;display:-webkit-flex;display:flex;-webkit-flex-wrap:wrap;flex-wrap:wrap;-ms-flex-wrap:wrap;-ms-flex-pack:justify;-webkit-justify-content:space-around;justify-content:space-around;-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0);opacity:1;}.dayContainer + .dayContainer{-webkit-box-shadow:-1px 0 0 #e6e6e6;box-shadow:-1px 0 0 #e6e6e6}.flatpickr-day{background:none;border:1px solid transparent;border-radius:150px;-webkit-box-sizing:border-box;box-sizing:border-box;color:#393939;cursor:pointer;font-weight:400;width:14.2857143%;-webkit-flex-basis:14.2857143%;-ms-flex-preferred-size:14.2857143%;flex-basis:14.2857143%;max-width:39px;height:39px;line-height:39px;margin:0;display:inline-block;position:relative;-webkit-box-pack:center;-webkit-justify-content:center;-ms-flex-pack:center;justify-content:center;text-align:center;}.flatpickr-day.inRange,.flatpickr-day.prevMonthDay.inRange,.flatpickr-day.nextMonthDay.inRange,.flatpickr-day.today.inRange,.flatpickr-day.prevMonthDay.today.inRange,.flatpickr-day.nextMonthDay.today.inRange,.flatpickr-day:hover,.flatpickr-day.prevMonthDay:hover,.flatpickr-day.nextMonthDay:hover,.flatpickr-day:focus,.flatpickr-day.prevMonthDay:focus,.flatpickr-day.nextMonthDay:focus{cursor:pointer;outline:0;background:#e6e6e6;border-color:#e6e6e6}.flatpickr-day.today{border-color:#959ea9;}.flatpickr-day.today:hover,.flatpickr-day.today:focus{border-color:#959ea9;background:#959ea9;color:#fff}.flatpickr-day.selected,.flatpickr-day.startRange,.flatpickr-day.endRange,.flatpickr-day.selected.inRange,.flatpickr-day.startRange.inRange,.flatpickr-day.endRange.inRange,.flatpickr-day.selected:focus,.flatpickr-day.startRange:focus,.flatpickr-day.endRange:focus,.flatpickr-day.selected:hover,.flatpickr-day.startRange:hover,.flatpickr-day.endRange:hover,.flatpickr-day.selected.prevMonthDay,.flatpickr-day.startRange.prevMonthDay,.flatpickr-day.endRange.prevMonthDay,.flatpickr-day.selected.nextMonthDay,.flatpickr-day.startRange.nextMonthDay,.flatpickr-day.endRange.nextMonthDay{background:#569ff7;-webkit-box-shadow:none;box-shadow:none;color:#fff;border-color:#569ff7}.flatpickr-day.selected.startRange,.flatpickr-day.startRange.startRange,.flatpickr-day.endRange.startRange{border-radius:50px 0 0 50px}.flatpickr-day.selected.endRange,.flatpickr-day.startRange.endRange,.flatpickr-day.endRange.endRange{border-radius:0 50px 50px 0}.flatpickr-day.selected.startRange + .endRange:not(:nth-child(7n+1)),.flatpickr-day.startRange.startRange + .endRange:not(:nth-child(7n+1)),.flatpickr-day.endRange.startRange + .endRange:not(:nth-child(7n+1)){-webkit-box-shadow:-10px 0 0 #569ff7;box-shadow:-10px 0 0 #569ff7}.flatpickr-day.selected.startRange.endRange,.flatpickr-day.startRange.startRange.endRange,.flatpickr-day.endRange.startRange.endRange{border-radius:50px}.flatpickr-day.inRange{border-radius:0;-webkit-box-shadow:-5px 0 0 #e6e6e6,5px 0 0 #e6e6e6;box-shadow:-5px 0 0 #e6e6e6,5px 0 0 #e6e6e6}.flatpickr-day.flatpickr-disabled,.flatpickr-day.flatpickr-disabled:hover,.flatpickr-day.prevMonthDay,.flatpickr-day.nextMonthDay,.flatpickr-day.notAllowed,.flatpickr-day.notAllowed.prevMonthDay,.flatpickr-day.notAllowed.nextMonthDay{color:rgba(57,57,57,0.3);background:transparent;border-color:transparent;cursor:default}.flatpickr-day.flatpickr-disabled,.flatpickr-day.flatpickr-disabled:hover{cursor:not-allowed;color:rgba(57,57,57,0.1)}.flatpickr-day.week.selected{border-radius:0;-webkit-box-shadow:-5px 0 0 #569ff7,5px 0 0 #569ff7;box-shadow:-5px 0 0 #569ff7,5px 0 0 #569ff7}.flatpickr-day.hidden{visibility:hidden}.rangeMode .flatpickr-day{margin-top:1px}.flatpickr-weekwrapper{float:left;}.flatpickr-weekwrapper .flatpickr-weeks{padding:0 12px;-webkit-box-shadow:1px 0 0 #e6e6e6;box-shadow:1px 0 0 #e6e6e6}.flatpickr-weekwrapper .flatpickr-weekday{float:none;width:100%;line-height:28px}.flatpickr-weekwrapper span.flatpickr-day,.flatpickr-weekwrapper span.flatpickr-day:hover{display:block;width:100%;max-width:none;color:rgba(57,57,57,0.3);background:transparent;cursor:default;border:none}.flatpickr-innerContainer{display:block;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-box-sizing:border-box;box-sizing:border-box;overflow:hidden;}.flatpickr-rContainer{display:inline-block;padding:0;-webkit-box-sizing:border-box;box-sizing:border-box}.flatpickr-time{text-align:center;outline:0;display:block;height:0;line-height:40px;max-height:40px;-webkit-box-sizing:border-box;box-sizing:border-box;overflow:hidden;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;}.flatpickr-time:after{content:"";display:table;clear:both}.flatpickr-time .numInputWrapper{-webkit-box-flex:1;-webkit-flex:1;-ms-flex:1;flex:1;width:40%;height:40px;float:left;}.flatpickr-time .numInputWrapper span.arrowUp:after{border-bottom-color:#393939}.flatpickr-time .numInputWrapper span.arrowDown:after{border-top-color:#393939}.flatpickr-time.hasSeconds .numInputWrapper{width:26%}.flatpickr-time.time24hr .numInputWrapper{width:49%}.flatpickr-time input{background:transparent;-webkit-box-shadow:none;box-shadow:none;border:0;border-radius:0;text-align:center;margin:0;padding:0;height:inherit;line-height:inherit;color:#393939;font-size:14px;position:relative;-webkit-box-sizing:border-box;box-sizing:border-box;-webkit-appearance:textfield;-moz-appearance:textfield;appearance:textfield;}.flatpickr-time input.flatpickr-hour{font-weight:bold}.flatpickr-time input.flatpickr-minute,.flatpickr-time input.flatpickr-second{font-weight:400}.flatpickr-time input:focus{outline:0;border:0}.flatpickr-time .flatpickr-time-separator,.flatpickr-time .flatpickr-am-pm{height:inherit;float:left;line-height:inherit;color:#393939;font-weight:bold;width:2%;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;-webkit-align-self:center;-ms-flex-item-align:center;align-self:center}.flatpickr-time .flatpickr-am-pm{outline:0;width:18%;cursor:pointer;text-align:center;font-weight:400}.flatpickr-time input:hover,.flatpickr-time .flatpickr-am-pm:hover,.flatpickr-time input:focus,.flatpickr-time .flatpickr-am-pm:focus{background:#eee}.flatpickr-input[readonly]{cursor:pointer}@-webkit-keyframes fpFadeInDown{from{opacity:0;-webkit-transform:translate3d(0,-20px,0);transform:translate3d(0,-20px,0)}to{opacity:1;-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}}@keyframes fpFadeInDown{from{opacity:0;-webkit-transform:translate3d(0,-20px,0);transform:translate3d(0,-20px,0)}to{opacity:1;-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}}
@font-face {
  font-family: 'font_spallian';
  src:  url('font/font_spallian.eot?8yy7rq');
  src:  url('font/font_spallian.eot?8yy7rq#iefix') format('embedded-opentype'),
    url('font/font_spallian.ttf?8yy7rq') format('truetype'),
    url('font/font_spallian.woff?8yy7rq') format('woff'),
    url('font/font_spallian.svg?8yy7rq#font_spallian') format('svg');
  font-weight: normal;
  font-style: normal;
  font-display: block;
}

[class^="icon-"], [class*=" icon-"] {
  /* use !important to prevent issues with browser extensions that change fonts */
  font-family: 'font_spallian' !important;
  speak: never;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;

  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.icon-key:before {
  content: "\e900";
}
.icon-leave:before {
  content: "\e901";
}
.icon-lock:before {
  content: "\e902";
}
.icon-map_legend:before {
  content: "\e903";
}
.icon-max:before {
  content: "\e904";
}
.icon-menu:before {
  content: "\e905";
}
.icon-menu_check:before {
  content: "\e906";
}
.icon-menu_dashboard:before {
  content: "\e907";
}
.icon-menu_delete:before {
  content: "\e908";
}
.icon-menu_equal_size:before {
  content: "\e909";
}
.icon-menu_folder:before {
  content: "\e90a";
}
.icon-menu_hz_repartition:before {
  content: "\e90b";
}
.icon-menu_import:before {
  content: "\e90c";
}
.icon-menu_open_second_explorer:before {
  content: "\e90d";
}
.icon-menu_vt_repartition:before {
  content: "\e90e";
}
.icon-min:before {
  content: "\e90f";
}
.icon-multi-line-chart:before {
  content: "\e910";
}
.icon-multi-sheet:before {
  content: "\e911";
}
.icon-multi_chart:before {
  content: "\e912";
}
.icon-multiple_selection:before {
  content: "\e913";
}
.icon-multiple_unselection:before {
  content: "\e914";
}
.icon-nothing:before {
  content: "\e915";
}
.icon-paste:before {
  content: "\e916";
}
.icon-picture_as_pdf:before {
  content: "\e917";
}
.icon-pie:before {
  content: "\e918";
}
.icon-power:before {
  content: "\e919";
}
.icon-round_check:before {
  content: "\e91a";
}
.icon-round_uncheck:before {
  content: "\e91b";
}
.icon-save:before {
  content: "\e91c";
}
.icon-search:before {
  content: "\e91d";
}
.icon-select:before {
  content: "\e91e";
}
.icon-send_to_back:before {
  content: "\e91f";
}
.icon-serie-column:before {
  content: "\e920";
}
.icon-serie-line:before {
  content: "\e921";
}
.icon-sigma:before {
  content: "\e922";
}
.icon-sort-amount-asc:before {
  content: "\e923";
}
.icon-sort-amount-desc:before {
  content: "\e924";
}
.icon-strikethrough:before {
  content: "\e925";
}
.icon-tab_control:before {
  content: "\e926";
}
.icon-table:before {
  content: "\e927";
}
.icon-text:before {
  content: "\e928";
}
.icon-text-height:before {
  content: "\e929";
}
.icon-text-width:before {
  content: "\e92a";
}
.icon-theme-64x64:before {
  content: "\e92b";
}
.icon-trashcan:before {
  content: "\e92c";
}
.icon-triangle-down:before {
  content: "\e92d";
}
.icon-triangle-left:before {
  content: "\e92e";
}
.icon-underline:before {
  content: "\e92f";
}
.icon-user:before {
  content: "\e930";
}
.icon-users:before {
  content: "\e931";
}
.icon-add_breakpoint:before {
  content: "\e932";
}
.icon-add_sheet:before {
  content: "\e933";
}
.icon-align-bottom:before {
  content: "\e934";
}
.icon-align-center:before {
  content: "\e935";
}
.icon-align-left:before {
  content: "\e936";
}
.icon-align-middle:before {
  content: "\e937";
}
.icon-align-right:before {
  content: "\e938";
}
.icon-align-top:before {
  content: "\e939";
}
.icon-average:before {
  content: "\e93a";
}
.icon-back:before {
  content: "\e93b";
}
.icon-block-16x16-01:before {
  content: "\e93c";
}
.icon-bold:before {
  content: "\e93d";
}
.icon-border_all:before {
  content: "\e93e";
}
.icon-border_bottom:before {
  content: "\e93f";
}
.icon-border_left:before {
  content: "\e940";
}
.icon-border_right:before {
  content: "\e941";
}
.icon-border_top:before {
  content: "\e942";
}
.icon-bring_to_front:before {
  content: "\e943";
}
.icon-button:before {
  content: "\e944";
}
.icon-chart-histo-hz:before {
  content: "\e945";
}
.icon-chart-histo-vt:before {
  content: "\e946";
}
.icon-chart-spider:before {
  content: "\e947";
}
.icon-class:before {
  content: "\e948";
}
.icon-clock:before {
  content: "\e949";
}
.icon-close2:before {
  content: "\e94a";
}
.icon-cloud:before {
  content: "\e94b";
}
.icon-column-type-boolean:before {
  content: "\e94c";
}
.icon-column-type-date:before {
  content: "\e94d";
}
.icon-column-type-integer:before {
  content: "\e94e";
}
.icon-column-type-real:before {
  content: "\e94f";
}
.icon-column-type-string:before {
  content: "\e950";
}
.icon-combo_box:before {
  content: "\e951";
}
.icon-completion_box:before {
  content: "\e952";
}
.icon-copy:before {
  content: "\e953";
}
.icon-count:before {
  content: "\e954";
}
.icon-custom:before {
  content: "\e955";
}
.icon-cut:before {
  content: "\e956";
}
.icon-database-64x64-postgres-01:before {
  content: "\e957";
  color: #fff;
}
.icon-database-64x64:before {
  content: "\e958";
}
.icon-database-s3-64x64:before {
  content: "\e959";
}
.icon-database:before {
  content: "\e95a";
}
.icon-db-table-64x64:before {
  content: "\e95b";
}
.icon-del_breakpoint:before {
  content: "\e95c";
}
.icon-del_sheet:before {
  content: "\e95d";
}
.icon-dir:before {
  content: "\e95e";
}
.icon-earth:before {
  content: "\e95f";
}
.icon-edit_box:before {
  content: "\e960";
}
.icon-eye:before {
  content: "\e961";
}
.icon-file-64x64:before {
  content: "\e962";
}
.icon-file-geojson:before {
  content: "\e963";
}
.icon-file:before {
  content: "\e964";
}
.icon-file_empty:before {
  content: "\e965";
}
.icon-filter_reset:before {
  content: "\e966";
}
.icon-folder-16x16:before {
  content: "\e967";
}
.icon-folder-64x64:before {
  content: "\e968";
}
.icon-font-size:before {
  content: "\e969";
}
.icon-format-align-center:before {
  content: "\e96a";
}
.icon-format-align-justify:before {
  content: "\e96b";
}
.icon-format-align-left:before {
  content: "\e96c";
}
.icon-format-align-right:before {
  content: "\e96d";
}
.icon-gauge:before {
  content: "\e96e";
}
.icon-gear_32:before {
  content: "\e96f";
}
.icon-gradient:before {
  content: "\e970";
}
.icon-help:before {
  content: "\e971";
}
.icon-home:before {
  content: "\e972";
}
.icon-image:before {
  content: "\e973";
}
.icon-italic:before {
  content: "\e974";
}

/* required styles */

.leaflet-pane,
.leaflet-tile,
.leaflet-marker-icon,
.leaflet-marker-shadow,
.leaflet-tile-container,
.leaflet-pane > svg,
.leaflet-pane > canvas,
.leaflet-zoom-box,
.leaflet-image-layer,
.leaflet-layer {
	position: absolute;
	left: 0;
	top: 0;
	}
.leaflet-container {
	overflow: hidden;
	}
.leaflet-tile,
.leaflet-marker-icon,
.leaflet-marker-shadow {
	-webkit-user-select: none;
	   -moz-user-select: none;
	        user-select: none;
	  -webkit-user-drag: none;
	}
/* Safari renders non-retina tile on retina better with this, but Chrome is worse */
.leaflet-safari .leaflet-tile {
	image-rendering: -webkit-optimize-contrast;
	}
/* hack that prevents hw layers "stretching" when loading new tiles */
.leaflet-safari .leaflet-tile-container {
	width: 1600px;
	height: 1600px;
	-webkit-transform-origin: 0 0;
	}
.leaflet-marker-icon,
.leaflet-marker-shadow {
	display: block;
	}
/* .leaflet-container svg: reset svg max-width decleration shipped in Joomla! (joomla.org) 3.x */
/* .leaflet-container img: map is broken in FF if you have max-width: 100% on tiles */
.leaflet-container .leaflet-overlay-pane svg,
.leaflet-container .leaflet-marker-pane img,
.leaflet-container .leaflet-shadow-pane img,
.leaflet-container .leaflet-tile-pane img,
.leaflet-container img.leaflet-image-layer {
	max-width: none !important;
	}

.leaflet-container.leaflet-touch-zoom {
	-ms-touch-action: pan-x pan-y;
	touch-action: pan-x pan-y;
	}
.leaflet-container.leaflet-touch-drag {
	-ms-touch-action: pinch-zoom;
	}
.leaflet-container.leaflet-touch-drag.leaflet-touch-zoom {
	-ms-touch-action: none;
	touch-action: none;
}
.leaflet-tile {
	filter: inherit;
	visibility: hidden;
	}
.leaflet-tile-loaded {
	visibility: inherit;
	}
.leaflet-zoom-box {
	width: 0;
	height: 0;
	-moz-box-sizing: border-box;
	     box-sizing: border-box;
	z-index: 800;
	}
/* workaround for https://bugzilla.mozilla.org/show_bug.cgi?id=888319 */
.leaflet-overlay-pane svg {
	-moz-user-select: none;
	}

.leaflet-pane         { z-index: 0; }

.leaflet-tile-pane    { z-index: 200; }
.leaflet-overlay-pane { z-index: 400; }
.leaflet-shadow-pane  { z-index: 500; }
.leaflet-marker-pane  { z-index: 600; }
.leaflet-tooltip-pane   { z-index: 650; }
.leaflet-popup-pane   { z-index: 700; }

.leaflet-map-pane canvas { z-index: 100; }
.leaflet-map-pane svg    { z-index: 200; }

.leaflet-vml-shape {
	width: 1px;
	height: 1px;
	}
.lvml {
	behavior: url(#default#VML);
	display: inline-block;
	position: absolute;
	}


/* control positioning */

.leaflet-control {
	position: relative;
	/*z-index: 800;*/
	pointer-events: visiblePainted; /* IE 9-10 doesn't have auto */
	pointer-events: auto;
	}
.leaflet-top,
.leaflet-bottom {
	position: absolute;
	/*z-index: 1000;*/
	pointer-events: none;
	}
.leaflet-top {
	top: 0;
	}
.leaflet-right {
	right: 0;
	}
.leaflet-bottom {
	bottom: 0;
	}
.leaflet-left {
	left: 0;
	}
.leaflet-control {
	float: left;
	clear: both;
	}
.leaflet-right .leaflet-control {
	float: right;
	}
.leaflet-top .leaflet-control {
	margin-top: 10px;
	}
.leaflet-bottom .leaflet-control {
	margin-bottom: 10px;
	}
.leaflet-left .leaflet-control {
	margin-left: 10px;
	}
.leaflet-right .leaflet-control {
	margin-right: 10px;
	}


/* zoom and fade animations */

.leaflet-fade-anim .leaflet-tile {
	will-change: opacity;
	}
.leaflet-fade-anim .leaflet-popup {
	opacity: 0;
	-webkit-transition: opacity 0.2s linear;
	   -moz-transition: opacity 0.2s linear;
	     -o-transition: opacity 0.2s linear;
	        transition: opacity 0.2s linear;
	}
.leaflet-fade-anim .leaflet-map-pane .leaflet-popup {
	opacity: 1;
	}
.leaflet-zoom-animated {
	-webkit-transform-origin: 0 0;
	    -ms-transform-origin: 0 0;
	        transform-origin: 0 0;
	}
.leaflet-zoom-anim .leaflet-zoom-animated {
	will-change: transform;
	}
.leaflet-zoom-anim .leaflet-zoom-animated {
	-webkit-transition: -webkit-transform 0.25s cubic-bezier(0,0,0.25,1);
	   -moz-transition:    -moz-transform 0.25s cubic-bezier(0,0,0.25,1);
	     -o-transition:      -o-transform 0.25s cubic-bezier(0,0,0.25,1);
	        transition:         transform 0.25s cubic-bezier(0,0,0.25,1);
	}
.leaflet-zoom-anim .leaflet-tile,
.leaflet-pan-anim .leaflet-tile {
	-webkit-transition: none;
	   -moz-transition: none;
	     -o-transition: none;
	        transition: none;
	}

.leaflet-zoom-anim .leaflet-zoom-hide {
	visibility: hidden;
	}


/* cursors */

.leaflet-interactive {
	cursor: pointer;
	}
.leaflet-grab {
	cursor: -webkit-grab;
	cursor:    -moz-grab;
	}
.leaflet-crosshair,
.leaflet-crosshair .leaflet-interactive {
	cursor: crosshair;
	}
.leaflet-popup-pane,
.leaflet-control {
	cursor: auto;
	}
.leaflet-dragging .leaflet-grab,
.leaflet-dragging .leaflet-grab .leaflet-interactive,
.leaflet-dragging .leaflet-marker-draggable {
	cursor: move;
	cursor: -webkit-grabbing;
	cursor:    -moz-grabbing;
	}

/* marker & overlays interactivity */
.leaflet-marker-icon,
.leaflet-marker-shadow,
.leaflet-image-layer,
.leaflet-pane > svg path,
.leaflet-tile-container {
	pointer-events: none;
	}

.leaflet-marker-icon.leaflet-interactive,
.leaflet-image-layer.leaflet-interactive,
.leaflet-pane > svg path.leaflet-interactive {
	pointer-events: visiblePainted; /* IE 9-10 doesn't have auto */
	pointer-events: auto;
	}

/* visual tweaks */

.leaflet-container {
	background: #ddd;
	outline: 0;
	}
.leaflet-container a {
	color: #0078A8;
	}
.leaflet-container a.leaflet-active {
	outline: 2px solid orange;
	}
.leaflet-zoom-box {
	border: 2px dotted #38f;
	background: rgba(255,255,255,0.5);
	}


/* general typography */
.leaflet-container {
	font: 12px/1.5 Arial, Helvetica, sans-serif;
	}


/* general toolbar styles */

.leaflet-bar {
	box-shadow: 0 1px 5px rgba(0,0,0,0.65);
	border-radius: 4px;
	}
.leaflet-bar a,
.leaflet-bar a:hover {
	background-color: #fff;
	border-bottom: 1px solid #ccc;
	width: 26px;
	height: 26px;
	line-height: 26px;
	display: block;
	text-align: center;
	text-decoration: none;
	color: black;
	}
.leaflet-bar a,
.leaflet-control-layers-toggle {
	background-position: 50% 50%;
	background-repeat: no-repeat;
	display: block;
	}
.leaflet-bar a:hover {
	background-color: #f4f4f4;
	}
.leaflet-bar a:first-child {
	border-top-left-radius: 4px;
	border-top-right-radius: 4px;
	}
.leaflet-bar a:last-child {
	border-bottom-left-radius: 4px;
	border-bottom-right-radius: 4px;
	border-bottom: none;
	}
.leaflet-bar a.leaflet-disabled {
	cursor: default;
	background-color: #f4f4f4;
	color: #bbb;
	}

.leaflet-touch .leaflet-bar a {
	width: 30px;
	height: 30px;
	line-height: 30px;
	}


/* zoom control */

.leaflet-control-zoom-in,
.leaflet-control-zoom-out {
	font: bold 18px 'Lucida Console', Monaco, monospace;
	text-indent: 1px;
	}
.leaflet-control-zoom-out {
	font-size: 20px;
	}

.leaflet-touch .leaflet-control-zoom-in {
	font-size: 22px;
	}
.leaflet-touch .leaflet-control-zoom-out {
	font-size: 24px;
	}


/* layers control */

.leaflet-control-layers {
	box-shadow: 0 1px 5px rgba(0,0,0,0.4);
	background: #fff;
	border-radius: 5px;
	}
.leaflet-control-layers-toggle {
	background-image: url(images/layers.png);
	width: 36px;
	height: 36px;
	}
.leaflet-retina .leaflet-control-layers-toggle {
	background-image: url(images/layers-2x.png);
	background-size: 26px 26px;
	}
.leaflet-touch .leaflet-control-layers-toggle {
	width: 44px;
	height: 44px;
	}
.leaflet-control-layers .leaflet-control-layers-list,
.leaflet-control-layers-expanded .leaflet-control-layers-toggle {
	display: none;
	}
.leaflet-control-layers-expanded .leaflet-control-layers-list {
	display: block;
	position: relative;
	}
.leaflet-control-layers-expanded {
	padding: 6px 10px 6px 6px;
	color: #333;
	background: #fff;
	}
.leaflet-control-layers-scrollbar {
	overflow-y: scroll;
	padding-right: 5px;
	}
.leaflet-control-layers-selector {
	margin-top: 2px;
	position: relative;
	top: 1px;
	}
.leaflet-control-layers label {
	display: block;
	}
.leaflet-control-layers-separator {
	height: 0;
	border-top: 1px solid #ddd;
	margin: 5px -10px 5px -6px;
	}

/* Default icon URLs */
.leaflet-default-icon-path {
	background-image: url(images/marker-icon.png);
	}


/* attribution and scale controls */

.leaflet-container .leaflet-control-attribution {
	background: #fff;
/*	background: rgba(255, 255, 255, 0.7);*/
	background: rgba(255, 255, 255, 0.6);
	margin: 0;
	}
.leaflet-control-attribution,
.leaflet-control-scale-line {
	padding: 0 5px;
	color: #333;
	}
.leaflet-control-attribution a {
	text-decoration: none;
	}
.leaflet-control-attribution a:hover {
	text-decoration: underline;
	}
.leaflet-container .leaflet-control-attribution,
.leaflet-container .leaflet-control-scale {
	font-size: 11px;
	}
.leaflet-left .leaflet-control-scale {
	margin-left: 5px;
	}
.leaflet-bottom .leaflet-control-scale {
	margin-bottom: 5px;
	}
.leaflet-control-scale-line {
	border: 2px solid #777;
	border-top: none;
	line-height: 1.1;
	padding: 2px 5px 1px;
	font-size: 11px;
	white-space: nowrap;
	overflow: hidden;
	-moz-box-sizing: border-box;
	     box-sizing: border-box;

	background: #fff;
	background: rgba(255, 255, 255, 0.5);
	}
.leaflet-control-scale-line:not(:first-child) {
	border-top: 2px solid #777;
	border-bottom: none;
	margin-top: -2px;
	}
.leaflet-control-scale-line:not(:first-child):not(:last-child) {
	border-bottom: 2px solid #777;
	}

.leaflet-touch .leaflet-control-attribution,
.leaflet-touch .leaflet-control-layers,
.leaflet-touch .leaflet-bar {
	box-shadow: none;
	}
.leaflet-touch .leaflet-control-layers,
.leaflet-touch .leaflet-bar {
	border: 2px solid rgba(0,0,0,0.2);
	background-clip: padding-box;
	}


/* popup */

.leaflet-popup_2 {
	position: absolute;
	text-align: center;
	margin-bottom: 60px;
	}

.leaflet-popup {
	position: absolute;
	text-align: center;
	margin-bottom: 20px;
	}
.leaflet-popup-content-wrapper {
	padding: 1px;
	text-align: left;
	/*border-radius: 12px;*/
	border-radius: 3px;
	}
.leaflet-popup-content {
	/*margin: 13px 19px;
	line-height: 1.4;*/
	}
.leaflet-popup-content p {
	/*margin: 18px 0;*/
	}
.leaflet-popup-tip-container {
	width: 40px;
	height: 20px;
	position: absolute;
	left: 50%;
	margin-left: -20px;
	overflow: hidden;
	pointer-events: none;
	}
.leaflet-popup-tip {
	width: 17px;
	height: 17px;
	padding: 1px;

	margin: -10px auto 0;

	-webkit-transform: rotate(45deg);
	   -moz-transform: rotate(45deg);
	    -ms-transform: rotate(45deg);
	     -o-transform: rotate(45deg);
	        transform: rotate(45deg);
	}
.leaflet-popup-content-wrapper,
.leaflet-popup-tip {
	background: white;
	color: #333;
	box-shadow: 0 3px 14px rgba(0,0,0,0.4);
	}
.leaflet-container a.leaflet-popup-close-button {
	position: absolute;
	top: 0;
	right: 0;
	padding: 4px 20px 0 0;
	border: none;
	text-align: center;
	width: 18px;
	height: 14px;
	font: 16px/14px Tahoma, Verdana, sans-serif;
	color: #c3c3c3;
	text-decoration: none;
	font-weight: bold;
	background: transparent;
	}
.leaflet-container a.leaflet-popup-close-button:hover {
	color: #999;
	}
.leaflet-popup-scrolled {
	overflow: auto;
	border-bottom: 1px solid #ddd;
	border-top: 1px solid #ddd;
	}

.leaflet-oldie .leaflet-popup-content-wrapper {
	zoom: 1;
	}
.leaflet-oldie .leaflet-popup-tip {
	width: 24px;
	margin: 0 auto;

	-ms-filter: "progid:DXImageTransform.Microsoft.Matrix(M11=0.70710678, M12=0.70710678, M21=-0.70710678, M22=0.70710678)";
	filter: progid:DXImageTransform.Microsoft.Matrix(M11=0.70710678, M12=0.70710678, M21=-0.70710678, M22=0.70710678);
	}
.leaflet-oldie .leaflet-popup-tip-container {
	margin-top: -1px;
	}

.leaflet-oldie .leaflet-control-zoom,
.leaflet-oldie .leaflet-control-layers,
.leaflet-oldie .leaflet-popup-content-wrapper,
.leaflet-oldie .leaflet-popup-tip {
	border: 1px solid #999;
	}


/* div icon */

.leaflet-div-icon {
	background: #fff;
	border: 1px solid #666;
	}


/* Tooltip */
/* Base styles for the element that has a tooltip */
.leaflet-tooltip {
	position: absolute;
	padding: 6px;
	background-color: #fff;
	border: 1px solid #fff;
	border-radius: 3px;
	color: #222;
	white-space: nowrap;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	pointer-events: none;
	box-shadow: 0 1px 3px rgba(0,0,0,0.4);
	}
.leaflet-tooltip.leaflet-clickable {
	cursor: pointer;
	pointer-events: auto;
	}
.leaflet-tooltip-top:before,
.leaflet-tooltip-bottom:before,
.leaflet-tooltip-left:before,
.leaflet-tooltip-right:before {
	position: absolute;
	pointer-events: none;
	border: 6px solid transparent;
	background: transparent;
	content: "";
	}

/* Directions */

.leaflet-tooltip-bottom {
	margin-top: 6px;
}
.leaflet-tooltip-top {
	margin-top: -6px;
}
.leaflet-tooltip-bottom:before,
.leaflet-tooltip-top:before {
	left: 50%;
	margin-left: -6px;
	}
.leaflet-tooltip-top:before {
	bottom: 0;
	margin-bottom: -12px;
	border-top-color: #fff;
	}
.leaflet-tooltip-bottom:before {
	top: 0;
	margin-top: -12px;
	margin-left: -6px;
	border-bottom-color: #fff;
	}
.leaflet-tooltip-left {
	margin-left: -6px;
}
.leaflet-tooltip-right {
	margin-left: 6px;
}
.leaflet-tooltip-left:before,
.leaflet-tooltip-right:before {
	top: 50%;
	margin-top: -6px;
	}
.leaflet-tooltip-left:before {
	right: 0;
	margin-right: -12px;
	border-left-color: #fff;
	}
.leaflet-tooltip-right:before {
	left: 0;
	margin-left: -12px;
	border-right-color: #fff;
	}

.leaflet-cluster-anim .leaflet-marker-icon, .leaflet-cluster-anim .leaflet-marker-shadow {
	-webkit-transition: -webkit-transform 0.3s ease-out, opacity 0.3s ease-in;
	-moz-transition: -moz-transform 0.3s ease-out, opacity 0.3s ease-in;
	-o-transition: -o-transform 0.3s ease-out, opacity 0.3s ease-in;
	transition: transform 0.3s ease-out, opacity 0.3s ease-in;
}

.leaflet-cluster-spider-leg {
	/* stroke-dashoffset (duration and function) should match with leaflet-marker-icon transform in order to track it exactly */
	-webkit-transition: -webkit-stroke-dashoffset 0.3s ease-out, -webkit-stroke-opacity 0.3s ease-in;
	-moz-transition: -moz-stroke-dashoffset 0.3s ease-out, -moz-stroke-opacity 0.3s ease-in;
	-o-transition: -o-stroke-dashoffset 0.3s ease-out, -o-stroke-opacity 0.3s ease-in;
	transition: stroke-dashoffset 0.3s ease-out, stroke-opacity 0.3s ease-in;
}

.marker-cluster-small {
	background-color: rgba(181, 226, 140, 0.6);
	}
.marker-cluster-small div {
	background-color: rgba(110, 204, 57, 0.6);
	}

.marker-cluster-medium {
	background-color: rgba(241, 211, 87, 0.6);
	}
.marker-cluster-medium div {
	background-color: rgba(240, 194, 12, 0.6);
	}

.marker-cluster-large {
	background-color: rgba(253, 156, 115, 0.6);
	}
.marker-cluster-large div {
	background-color: rgba(241, 128, 23, 0.6);
	}

	/* IE 6-8 fallback colors */
.leaflet-oldie .marker-cluster-small {
	background-color: rgb(181, 226, 140);
	}
.leaflet-oldie .marker-cluster-small div {
	background-color: rgb(110, 204, 57);
	}

.leaflet-oldie .marker-cluster-medium {
	background-color: rgb(241, 211, 87);
	}
.leaflet-oldie .marker-cluster-medium div {
	background-color: rgb(240, 194, 12);
	}

.leaflet-oldie .marker-cluster-large {
	background-color: rgb(253, 156, 115);
	}
.leaflet-oldie .marker-cluster-large div {
	background-color: rgb(241, 128, 23);
}

.marker-cluster {
	background-clip: padding-box;
	border-radius: 20px;
	}
.marker-cluster div {
	width: 30px;
	height: 30px;
	margin-left: 5px;
	margin-top: 5px;

	text-align: center;
	border-radius: 15px;
	font: 12px "Helvetica Neue", Arial, Helvetica, sans-serif;
	}
.marker-cluster span {
	line-height: 30px;
	}
