.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;
  padding: 2px;
  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: 2px 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;
  font-size: 12px;
  pointer-events: auto;
  overflow-x: hidden; 
  overflow-y: auto;
}

.ui_window_container_::before
{
  content: '';
  position: absolute;
  top: -20px;
  left: -20px;
  width: calc(100% + 40px);
  height: calc(100% + 40px);
  background: red;
  z-index: -1;
  /*box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);*/
}

/*.ui_window_content
{
  position: absolute;
  font-size: 12px;
  pointer-events: auto;
  width: 100%;
  height: 100%;
}

.ui_childs_content
{
  overflow: hidden; 
  width: 100%;
  top: 0px;*/ /* to avoid stack when content position is changed to relative */
/*}*/

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 { background-color: rgba(0, 0, 0, 0); }
    to { background-color: rgba(0, 0, 0, 0.2); }
}

@-webkit-keyframes ui_fadein_animation
{
    from { background-color: rgba(0, 0, 0, 0); }
    to { background-color: rgba(0, 0, 0, 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; }
}

/* T E X T A R E A   A N I M A T I O N */

.ui_textarea_inline_to_top
{
  transform-origin: left center;
  animation: ui_textarea_inline_to_top 150ms;
  animation-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  animation-fill-mode: forwards;
  -webkit-animation: ui_textarea_inline_to_top 150ms;
  -webkit-animation-fill-mode: forwards;
  --itt-trans: 0;
}

@keyframes ui_textarea_inline_to_top
{
  from { transform: translateY(0px) scale(1); }
  to { transform: translateY(-50.5%) scale(0.75); }
}

.ui_textarea_top_to_inline
{
  transform-origin: left center;
  animation: ui_textarea_top_to_inline 150ms;
  animation-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  animation-fill-mode: forwards;
  -webkit-animation: ui_textarea_top_to_inline 150ms;
  -webkit-animation-fill-mode: forwards;
}

@keyframes ui_textarea_top_to_inline
{
  from { transform: translateY(-50.5%) scale(0.75); }
  to { transform: translateY(0px) scale(1); }
}

/* 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;
}
*
{
  margin: 0px;
  padding: 0;
  outline: none;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  scrollbar-width: thin;
}

/* 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;
}

/*  H E A D E R   */

.auth_header
{
  width: 100%;
  height: 70px;
  position: relative;
}

/*  C O N T E N T  */

.auth_content
{
  width: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.auth_validation
{
  width: 100%;
  max-width: 430px;
  padding-left: 10px;
  padding-right: 10px;
}

.auth_frame_anim
{
  transform: translate(-150px, 0px);
  transition: transform 330ms ease-in-out;
}

.auth_fmail
{
  width: 100%;
  max-width: 520px;
  padding-left: 10px;
  padding-right: 10px;
  display: none;
}

.auth_edit
{
  margin-top: 15px;
  width: 100%;
  height: 46px;
  background-color: white;
  padding: 2px;
  overflow: hidden;
  clear: both;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 4px;
  font-size: 20px;
}

.auth_input
{
  font-family: Roboto;
  font-size: 20px;
}

.auth_title
{
  color: #4d4e53;
  font-size: 28px;
  text-align: left;
  background-color: rgba(255, 0, 0, 0.0);
  -webkit-font-smoothing: antialiased;
}

.auth_error
{
  color: rgba(193, 32, 0, 1);
  font-size: 14px;
  font-style: italic;
}

.auth_button_container
{
  display: flex;
  align-items: center;  
  margin: 1px 0px 26px 0px;
  justify-content: end;
}

.auth_reset_pwd_link
{
  width: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 48px;
  margin-bottom: 15px;
}

/*  B U T T O N  */

.auth_button:hover
{
  border-radius: 4px;
  background-color: rgba(77, 78, 83, 0.8);
  border-width: 0px;
}

.auth_button:active
{
  box-shadow: inset 1px 1px 2px 0px rgba(0, 0, 0, 0.10);
  background-color: rgba(77, 78, 83, 0.6);
  border-width: 0px;
}

.auth_button
{
  color: white;
  font-size: 18px;
  font-family: 'Roboto', Arial;
  border-radius: 4px;
  border-width: 0px;
  background-color: rgba(77, 78, 83, 0.6);
  cursor: pointer;
  padding: 10px 50px 10px 50px;
  height: 46px;
}

.auth_forgot_password_button
{
  padding: 10px 10px 10px 10px;
  color: #4d4e53;
  cursor: pointer;
  font-size: 14px;
  font-family: Roboto, Arial;
  background-color: transparent;
  border: 0px solid transparent;
  border-radius: 4px;
}

.auth_forgot_password_button:hover
{
  padding: 10px 10px 10px 10px;
  color: black;
  background-color: rgba(0, 0, 0, 0.02);
  border-radius: 4px;
}

/*  B U T T O N    O F F I C E   3 6 5 */

.auth_button_sso:hover 
{
  color: rgb(50, 50, 50);
  border: 2px solid rgb(130, 130, 130);
}

.auth_button_sso:active
{
}

.auth_button_sso 
{
  border: 2px solid rgb(199, 199, 199);
  color: #696565;
  font-size: 16px;
  font-family: 'Roboto', Arial;
  border-radius: 4px;
  background-color: rgb(230, 230, 230);
  cursor: pointer;
  padding: 10px 50px 10px 50px;
/*  height: 46px;*/
}

/*  B U T T O N    O F F I C E   3 6 5   C H  */

.auth_button_ch:active 
{
  box-shadow: inset 1px 1px 2px 0px rgba(0, 0, 0, 0.10);
  background-color: rgba(38, 38, 38, 1);
  border-width: 0px;
}

.auth_button_ch:hover
{
  border-radius: 4px;
  background-color: rgba(38, 38, 38, 1);
  border-width: 0px;
}

.auth_button_ch 
{
  color: white;
  font-size: 18px;
  font-family: 'Roboto', Arial;
  border-radius: 4px;
  border-width: 0px;
  background-color: rgb(60, 60, 60);
  cursor: pointer;
  padding: 10px 50px 10px 50px;
}

/*  B U T T O N    O F F I C E   3 6 5   S S O   C H  */

.auth_button_sso_ch:hover 
{
  background-color: rgba(245, 245, 245, 1);
  color: rgba(38, 38, 38, 1);
  border: 1px solid rgba(38, 38, 38, 1)
}

.auth_button_sso_ch:active 
{
    background-color: rgba(38, 38, 38, 1);
    color: white;
}

.auth_button_sso_ch 
{
  border: 1px solid rgb(60, 60, 60);
  color: rgba(60, 60, 60, 1);
  font-size: 16px;
  font-family: 'Roboto', Arial;
  border-radius: 4px;
  background-color: rgba(255, 255, 255, 1);
  cursor: pointer;
  padding: 10px 50px 10px 50px;
}

/* footer */

.auth_footer
{
  width: 100%;
  height: 50px;
  position: relative;
  font-family: Verdana;
  font-size: 11px;
  color: rgb(123, 125, 128);
  display: flex;
  align-items: center;
  justify-content: center;
}

/*  ss_auth_body  */

.ss_auth_body
{
  display: flex;
  overflow: hidden; 
  width: 100%; 
  height: 100%;
  flex-direction: column;
  justify-content: space-between;
}

.ss_auth_sep
{

}

/*  A U T H  */

.auth_separator 
{
  display: flex;
  align-items: center;
  text-align: center;
  width: 100%;
  gap: 10px; /* espace entre lignes et texte */
  padding-top: 50px;
  padding-bottom: 20px;
  padding-left: 10px;
  padding-right: 10px;
}

.auth_separator-line 
{
  flex-grow: 1;
  height: 1px;
  background-color: rgba(0, 0, 0, 0.1);
}

.auth_separator-text 
{
  white-space: nowrap;
  font-size: 14px;
}

md-outlined-text-field 
{
  --md-sys-color-primary: #707074;
  --md-outlined-text-field-container-color: white;
}

/*  F O N T  */

@font-face
{
  font-family: 'Roboto';
  src: url('./font/roboto-small/Roboto-Regular.woff2') format('woff2'), url('./font/roboto-small/Roboto-Regular.woff') format('woff');
  font-weight: normal;
  font-style: normal;
}

@font-face
{
  font-family: 'Roboto';
  src: url('./font/roboto-small/Roboto-bold.woff2') format('woff2'), url('./font/roboto-small/Roboto-bold.woff') format('woff');
  font-weight: bold;
  font-style: bold;
}

/*  M E D I A  */

@media (max-height: 594px)
{
  .auth_header { visibility: hidden; height: 0px; }
  .auth_separator { padding-top: 10px; padding-bottom: 10px; }
}

@media (max-height: 460px)
{
  .auth_footer { visibility: hidden; }
}

/*  M E D I A   S M A L L  */

@media (max-width: 395px)
{
  .auth_footer
  {
    flex-direction: column;
    gap: 2px;
  }

  .ss_auth_sep
  {
    display: none;
  }
}

@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";
}



