@charset "UTF-8";
/*------------------------------------*\
    $ABSTRACTS
\*------------------------------------*/
/*------------------------------------*\
    #VARIABLES
\*------------------------------------*/
/*------------------------------------*\
    #COLORS
\*------------------------------------*/
/*
 * 1) Color variables involve a two-tier system to keep colors in sync. The
 *    first tier defines the brand and neutral colors, and the second tier
 *    defines the application of those colors.
 */
/*
 * Brand Colors
 * 1) Brand color variables use English names to define colors to make palettes easier to
 *    identify. Names are generated using this tool: http://chir.ag/projects/name-that-color/
 * 2) Brand color variables should typically not be used directly in Sass partials. Instead, use
 *    second-tier application colors.
 *
 */
/*
 * Neutral Colors
 * 1) Neutral color variables use a numbered system to define variables for better maintainability.
 *    "$color-gray-10" means "10% gray", which is a gray closer to white than to black. For more info
 *    read https://medium.com/eightshapes-llc/color-in-design-systems-a1c80f65fa3#.brevrq67p
 */
/**
 * Application Colors
 * All Colors for application
 *
 */
/*
  * Text Colors
  * 1) These are non-linked text colors, such as body copy.
  */
/*
 * Heading Colors
 * 1) These are non-linked heading colors, such as h2, h3, etc.
 */
/*
 * Text Link Colors
 * 1) These are for linked text, such as a link found within an article,
 *    navigation link, footer link, etc.
 */
/*
 * Border Colors
 * 1) Border colors are used as decoration or dividers, such as as a seperator
 *    for navigation items, block borders, etc.
 */
/*------------------------------------*\
    #TYPOGRAPHY
\*------------------------------------*/
@import url("https://fonts.googleapis.com/css?family=Nunito+Sans:200,200i,300,300i,400,400i,600,600i,700,700i,800,800i,900,900i&subset=latin-ext");
@import url("https://fonts.googleapis.com/css?family=Montserrat:100,100i,200,200i,300,300i,400,400i,500,500i,600,600i,700,700i,800,800i,900,900i&subset=latin-ext");
/*------------------------------------*\
    #LAYOUT
\*------------------------------------*/
/**
 * Spacing Defaults
 */
/*------------------------------------*\
    #BORDERS
\*------------------------------------*/
/**
 * Border Width
 */
/**
 * Border Radius
 */
/*------------------------------------*\
    #ANIMATION
\*------------------------------------*/
/**
 * Animation Duration
 */
/**
 * Animation Easing
 */
/*------------------------------------*\
    #BREAKPOINTS
\*------------------------------------*/
/**
 * Breakpoints
 */
displaylayerdataekgzdetails {
  width: 100%; }

/*------------------------------------*\
    $BASE
\*------------------------------------*/
/*------------------------------------*\
    #BODY
\*------------------------------------*/
/**
 * Body base styles
 */
body {
  background: #fff;
  color: #525455;
  font: 100%/1.5 "Nunito Sans", "HelveticaNeue", "Helvetica", "Arial", sans-serif;
  min-height: 100vh;
  overflow-x: hidden; }

/*------------------------------------*\
    #ANIMATION
\*------------------------------------*/
/*
   Animation example, for spinners
*/
.animate-spin {
  -moz-animation: spin 2s infinite linear;
  -o-animation: spin 2s infinite linear;
  -webkit-animation: spin 2s infinite linear;
  animation: spin 2s infinite linear;
  display: inline-block; }

@-moz-keyframes spin {
  0% {
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg); }
  100% {
    -moz-transform: rotate(359deg);
    -o-transform: rotate(359deg);
    -webkit-transform: rotate(359deg);
    transform: rotate(359deg); } }

@-webkit-keyframes spin {
  0% {
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg); }
  100% {
    -moz-transform: rotate(359deg);
    -o-transform: rotate(359deg);
    -webkit-transform: rotate(359deg);
    transform: rotate(359deg); } }

@-o-keyframes spin {
  0% {
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg); }
  100% {
    -moz-transform: rotate(359deg);
    -o-transform: rotate(359deg);
    -webkit-transform: rotate(359deg);
    transform: rotate(359deg); } }

@-ms-keyframes spin {
  0% {
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg); }
  100% {
    -moz-transform: rotate(359deg);
    -o-transform: rotate(359deg);
    -webkit-transform: rotate(359deg);
    transform: rotate(359deg); } }

@keyframes spin {
  0% {
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg); }
  100% {
    -moz-transform: rotate(359deg);
    -o-transform: rotate(359deg);
    -webkit-transform: rotate(359deg);
    transform: rotate(359deg); } }

/*------------------------------------*\
    #FORMS
\*------------------------------------*/
/**
 * Fieldset base styles
 */
fieldset {
  border: 0;
  padding: 0;
  margin: 0; }

/**
 * Label base styles
 */
label {
  display: block;
  padding-bottom: 0.2rem;
  font-weight: bold; }

/**
 * Form button, input, select, and text area base styles
 * 1) Zero out margin and inherit font styles
 */
button, input, select, textarea {
  font-family: inherit;
  font-size: 100%;
  margin: 0; }

/**
 * Input and text area base styles
 * 1) Width entire container, gray border, padding
 */
input, textarea {
  width: 100%;
  border: 1px solid #a5a5a5;
  border-radius: 2px;
  padding: 1rem; }

/**
 * Input areas base styles
 * 1) Get rid of webkit appearance of these areas
 */
input[type=text], input[type=search], input[type=url], input[type=number], textarea {
  -webkit-appearance: none; }

/**
 * Button/Submit button base styles
 */
button, input[type="submit"] {
  padding: 4px;
  background: #444444;
  border: 1px solid #808080;
  cursor: pointer; }

/**
 * Checkboxes/Radio button base styles
 */
input[type="checkbox"],
input[type="radio"] {
  width: auto;
  margin-right: 0.3em; }

/**
 * Search cancel button and search decoration webkit appearance none
 */
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none; }

/*------------------------------------*\
    #GLOBAL CLASSES
\*------------------------------------*/
/**
 * Clearfix
 */
.cf {
  *zoom: 1; }

/**
 * Clearfix pseudo-elements
 */
.cf:before, .cf:after {
  content: " ";
  /* 1 */
  display: table;
  /* 2 */ }

.cf:after {
  clear: both; }

/**
 * Completely remove from the flow and screen readers.
 */
.is-hidden {
  display: none !important;
  visibility: hidden !important; }

/**
 * Completely remove from the flow but leave available to screen readers.
 */
.is-vishidden {
  position: absolute !important;
  overflow: hidden;
  width: 1px;
  height: 1px;
  padding: 0;
  border: 0;
  clip: rect(1px, 1px, 1px, 1px); }

/**
 * Text align right
 */
.align-right {
  text-align: right; }

/**
 * Text align center
 */
.align-center {
  text-align: center; }

/**
 * Text Align left
 */
.align-left {
  text-align: left; }

/**
 * Hide on small screens
 */
@media all and (max-width: 46.8em) {
  .hide-small {
    display: none; } }

/**
 * Hide on medium screens
 */
@media all and (min-width: 46.8em) and (max-width: 50em) {
  .hide-med {
    display: none; } }

/**
 * Hide on large screens
 */
@media all and (min-width: 50em) {
  .hide-large {
    display: none; } }

/**
 * Show valid text color
 */
/*.valid {
	color: $color-utility-positive;
}*/
/**
 * Show error text color
 */
/*.error {
	color: $color-utility-negative;
}*/
/**
 * Show warning text color
 */
/*.warning {
    color: $color-utility-caution;
}*/
/**
 * Show informational text color
 */
/*.information {
    color: $color-utility-neutral;
}*/
/**
 * Display secondary font family
 */
.font-secondary {
  font-family: "Montserrat", Georgia, Times, "Times New Roman", serif; }

/*------------------------------------*\
    #HEADINGS
\*------------------------------------*/
/**
 * Heading 1
 */
h1 {
  font-size: 3rem;
  line-height: 1.2; }

/**
 * Heading 2
 */
h2 {
  line-height: 1.2; }

/**
 * Heading 3
 */
h3 {
  line-height: 1.2; }

/**
 * Heading 4
 */
/**
 * Heading 5
 */
/**
 * Heading 6
 */
/**
 * Subheading
 */
.subheading {
  font-family: "Montserrat", Georgia, Times, "Times New Roman", serif;
  font-weight: normal; }

/*------------------------------------*\
    #LINKS
\*------------------------------------*/
/**
 * Links
 */
a {
  color: #808080;
  text-decoration: none;
  outline: 0; }
  a:hover, a:focus {
    color: #444444; }

/*------------------------------------*\
    #LINKS
\*------------------------------------*/
/**
 * Ordered/Unordered list base styles
 */
ol, ul {
  margin: 0;
  padding: 0;
  list-style: none; }

/**
 * Definition list base styles
 */
dl {
  overflow: hidden;
  margin: 0 0 8px; }

/**
 * Terms/Names base styles
 */
dt {
  font-weight: bold; }

/**
 * Definition list description base styles
 */
dd {
  margin-left: 0; }

/*------------------------------------*\
    #MAIN
\*------------------------------------*/
/**
 * Main content area
 */
[role=main] {
  flex: 1; }

/*------------------------------------*\
    #MEDIA ELEMENTS
\*------------------------------------*/
/**
 * Make media elements responsive
 */
img, video, object {
  max-width: 100%;
  height: auto; }

/**
 * Iframe base styles
 */
iframe {
  margin-bottom: 8px; }

/**
 * Figure base styles
 */
figure {
  margin-bottom: 8px;
  /**
	 * Figure image base styles
	 */ }
  figure img {
    margin-bottom: 4px; }

/**
 * Figure caption base styles
 */
figcaption {
  font-style: italic; }

/*------------------------------------*\
    #RESET
\*------------------------------------*/
/**
 * Use border box on all elements
 */
* {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box; }

/**
 * Zero out margin and padding on most elements as base style
 */
html, body, div, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, ol, ul, li, form, legend, label, table, header, footer, nav, section, figure {
  margin: 0;
  padding: 0; }

/**
 * Display block as base for these elements
 */
header, footer, nav, section, article, hgroup, figure {
  display: block; }

/*------------------------------------*\
    #TABLE
\*------------------------------------*/
/**
 * Table base styles
 */
table {
  border-collapse: collapse;
  border-spacing: 0;
  border: 1px solid #808080;
  width: 100%; }

/**
 * Table header base styles
 */
th {
  text-align: left;
  border: 1px solid #808080;
  padding: 0.2em; }

/**
 * Table cell base styles
 */
td {
  border: 1px solid #808080;
  padding: 0.2em; }

/*------------------------------------*\
    #TEXT
\*------------------------------------*/
/**
 * Paragraph base styles
 */
p {
  margin-bottom: 8px; }

/**
 * Blockquote base styles
 */
blockquote {
  font-style: italic;
  border-left: 1px solid #808080;
  color: #808080;
  padding-left: 8px;
  margin-bottom: 8px; }

/**
 * Horizontal rule base styles
 */
hr {
  border: 0;
  height: 2px;
  background: #d9d9d9;
  margin: 16px 0; }

/**
 * Abbreviation base styles
 */
abbr {
  border-bottom: 1px dotted #808080;
  cursor: help; }

/*------------------------------------*\
    #ICONS
\*------------------------------------*/
@font-face {
  font-family: 'ekokarta';
  src: url("../fonts/ekokarta.woff2") format("woff2"), url("../fonts/ekokarta.woff") format("woff"), url("../fonts/ekokarta.ttf") format("truetype");
  font-weight: normal;
  font-style: normal; }

/* Chrome hack: SVG is rendered more smooth in Windozze. 100% magic, uncomment if you need it. */
/* Note, that will break hinting! In other OS-es font will be not as sharp as it could be */
/*
@media screen and (-webkit-min-device-pixel-ratio:0) {
  @font-face {
    font-family: 'ekokarta';
    src: url('../font/ekokarta.svg?85499796#ekokarta') format('svg');
  }
}
*/
.ek {
  width: 20px;
  height: 20px;
  font-size: 20px;
  display: flex;
  justify-content: center;
  align-items: center; }

.ek--16x16 {
  width: 16px;
  height: 16px;
  font-size: 16px; }

.ek--24x24-small {
  width: 24px;
  height: 24px;
  font-size: 16px; }

.ek--12x12 {
  width: 12px;
  height: 12px;
  font-size: 12px; }

.ek--12x16 {
  width: 12px;
  height: 16px;
  font-size: 16px; }

.ek--32x32 {
  width: 32px;
  height: 32px;
  font-size: 32px; }

.ek--48x48 {
  width: 48px;
  height: 48px; }

.ek--green {
  color: #0e8041; }

.ek--yellow {
  color: #FFDF00; }

[class^="ek-"]:before, [class*=" ek-"]:before {
  font-family: "ekokarta";
  font-style: normal;
  font-weight: normal;
  display: inline-block;
  text-decoration: inherit;
  width: 1em;
  text-align: center;
  /* opacity: .8; */
  /* For safety - reset parent styles, that can break glyph codes*/
  font-variant: normal;
  text-transform: none;
  /* fix buttons height, for twitter bootstrap */
  line-height: 1em;
  /* Animation center compensation - margins should be symmetric */
  /* remove if not needed */
  /* you can be more comfortable with increased icons size */
  /* font-size: 120%; */
  /* Font smoothing. That was taken from TWBS */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  /* Uncomment for 3D effect */
  /* text-shadow: 1px 1px 1px rgba(127, 127, 127, 0.3); */ }

.ek-bazen-2:before {
  content: '\e901'; }

.ek-kupaliste-2:before {
  content: '\e902'; }

.ek-pelud-2:before {
  content: '\e903'; }

.ek-pipa-2:before {
  content: '\e904'; }

.ek-temp-2:before {
  content: '\e905'; }

.ek-tlo-2:before {
  content: '\e906'; }

.ek-zrak-2:before {
  content: '\e907'; }

.ek-share-2:before {
  content: '\e908'; }

.ek-extend-2:before {
  content: '\e909'; }

.ek-bell-2:before {
  content: '\e910'; }

.ek-geolocation-2:before {
  content: '\e911'; }

.ek-basemap-2:before {
  content: '\e912'; }

.ek-plus-2:before {
  content: '\e913'; }

.ek-minus-2:before {
  content: '\e914'; }

.ek-bookmark-2:before {
  content: '\e915'; }

.ek-sve-2:before {
  content: '\e916'; }

.ek-ekokartalogo-2:before {
  content: '\e917'; }

.ek-opce-2:before {
  content: '\e918'; }

.ek-pelud:before {
  content: '\0e01'; }

/* 'ก' */
.ek-pipa:before {
  content: '\0e02'; }

/* 'ข' */
.ek-temp:before {
  content: '\0e03'; }

/* 'ฃ' */
.ek-tlo:before {
  content: '\0e04'; }

/* 'ค' */
.ek-zrak:before {
  content: '\0e05'; }

/* 'ฅ' */
.ek-position:before {
  content: '\0e06'; }

/* 'ฆ' */
.ek-ekokartalogo:before {
  content: '\0e07'; }

/* 'ง' */
.ek-layers-all:before {
  content: '\0e08'; }

/* 'จ' */
.ek-globe:before {
  content: '\e800'; }

/* '' */
.ek-layers:before {
  content: '\e801'; }

/* '' */
.ek-layers-alt:before {
  content: '\e802'; }

/* '' */
.ek-picture:before {
  content: '\e803'; }

/* '' */
.ek-plus:before {
  content: '\e804'; }

/* '' */
.ek-minus:before {
  content: '\e805'; }

/* '' */
.ek-bookmark:before {
  content: '\e806'; }

/* '' */
.ek-cancel:before {
  content: '\e807'; }

/* '' */
.ek-cancel-1:before {
  content: '\e808'; }

/* '' */
.ek-cancel-2:before {
  content: '\e809'; }

/* '' */
.ek-print:before {
  content: '\e80a'; }

/* '' */
.ek-windy-rain-inv:before {
  content: '\e80b'; }

/* '' */
.ek-clouds-flash:before {
  content: '\e80c'; }

/* '' */
.ek-snow-inv:before {
  content: '\e80d'; }

/* '' */
.ek-rain:before {
  content: '\e80e'; }

/* '' */
.ek-drizzle-inv:before {
  content: '\e80f'; }

/* '' */
.ek-cloud-flash-inv:before {
  content: '\e810'; }

/* '' */
.ek-windy:before {
  content: '\e811'; }

/* '' */
.ek-drizzle:before {
  content: '\e812'; }

/* '' */
.ek-cloud-flash-alt:before {
  content: '\e813'; }

/* '' */
.ek-cloud-inv:before {
  content: '\e814'; }

/* '' */
.ek-cloud-moon-inv:before {
  content: '\e815'; }

/* '' */
.ek-cloud-flash:before {
  content: '\e816'; }

/* '' */
.ek-cloud:before {
  content: '\e817'; }

/* '' */
.ek-cloud-sun-inv:before {
  content: '\e818'; }

/* '' */
.ek-moon-inv:before {
  content: '\e819'; }

/* '' */
.ek-sun-inv:before {
  content: '\e81a'; }

/* '' */
.ek-fog-cloud:before {
  content: '\e81b'; }

/* '' */
.ek-fog:before {
  content: '\e81c'; }

/* '' */
.ek-fog-moon:before {
  content: '\e81d'; }

/* '' */
.ek-clouds-flash-alt:before {
  content: '\e81e'; }

/* '' */
.ek-fahrenheit:before {
  content: '\e81f'; }

/* '' */
.ek-celcius:before {
  content: '\e820'; }

/* '' */
.ek-na:before {
  content: '\e821'; }

/* '' */
.ek-compass-1:before {
  content: '\e822'; }

/* '' */
.ek-temperature:before {
  content: '\e823'; }

/* '' */
.ek-clouds-flash-inv:before {
  content: '\e824'; }

/* '' */
.ek-clouds-inv:before {
  content: '\e825'; }

/* '' */
.ek-hail-inv:before {
  content: '\e826'; }

/* '' */
.ek-snow-heavy-inv:before {
  content: '\e827'; }

/* '' */
.ek-windy-inv:before {
  content: '\e828'; }

/* '' */
.ek-sunrise:before {
  content: '\e829'; }

/* '' */
.ek-sun-1:before {
  content: '\e82a'; }

/* '' */
.ek-moon:before {
  content: '\e82b'; }

/* '' */
.ek-eclipse:before {
  content: '\e82c'; }

/* '' */
.ek-mist:before {
  content: '\e82d'; }

/* '' */
.ek-wind:before {
  content: '\e82e'; }

/* '' */
.ek-snowflake:before {
  content: '\e82f'; }

/* '' */
.ek-cloud-sun:before {
  content: '\e830'; }

/* '' */
.ek-cloud-moon:before {
  content: '\e831'; }

/* '' */
.ek-fog-sun:before {
  content: '\e832'; }

/* '' */
.ek-snow-heavy:before {
  content: '\e833'; }

/* '' */
.ek-hail:before {
  content: '\e834'; }

/* '' */
.ek-snow-alt:before {
  content: '\e835'; }

/* '' */
.ek-snow:before {
  content: '\e836'; }

/* '' */
.ek-windy-rain:before {
  content: '\e837'; }

/* '' */
.ek-share:before {
  content: '\e838'; }

/* '' */
.ek-water:before {
  content: '\e839'; }

/* '' */
.ek-droplet:before {
  content: '\e83a'; }

/* '' */
.ek-mail:before {
  content: '\e83b'; }

/* '' */
.ek-ok:before {
  content: '\e83c'; }

/* '' */
.ek-search:before {
  content: '\e83d'; }

/* '' */
.ek-down-open-mini:before {
  content: '\e83e'; }

/* '' */
.ek-up-open-mini:before {
  content: '\e83f'; }

/* '' */
.ek-down-open-big:before {
  content: '\e840'; }

/* '' */
.ek-down-open:before {
  content: '\e841'; }

/* '' */
.ek-down-dir:before {
  content: '\e842'; }

/* '' */
.ek-up-dir:before {
  content: '\e843'; }

/* '' */
.ek-hammer:before {
  content: '\e844'; }

/* '' */
.ek-spin3:before {
  content: '\e845'; }

/* '' */
.ek-grid:before {
  content: '\e846'; }

/* '' */
.ek-chart-pie-1:before {
  content: '\e847'; }

/* '' */
.ek-chart-bar:before {
  content: '\e848'; }

/* '' */
.ek-chart-bar-1:before {
  content: '\e849'; }

/* '' */
.ek-chart-line-1:before {
  content: '\e84a'; }

/* '' */
.ek-chart-area-1:before {
  content: '\e84b'; }

/* '' */
.ek-clouds:before {
  content: '\e84c'; }

/* '' */
.ek-rain-inv:before {
  content: '\e84d'; }

/* '' */
.ek-link:before {
  content: '\e84e'; }

/* '' */
.ek-link-1:before {
  content: '\e84f'; }

/* '' */
.ek-th-list:before {
  content: '\e850'; }

/* '' */
.ek-list:before {
  content: '\e851'; }

/* '' */
.ek-cup:before {
  content: '\e852'; }

/* '' */
.ek-tags:before {
  content: '\e853'; }

/* '' */
.ek-upload:before {
  content: '\e854'; }

/* '' */
.ek-download:before {
  content: '\e855'; }

/* '' */
.ek-bell:before {
  content: '\e856'; }

/* '' */
.ek-left-open-big:before {
  content: '\e857'; }

/* '' */
.ek-right-open-big:before {
  content: '\e858'; }

/* '' */
.ek-globe-inv:before {
  content: '\f019'; }

/* '' */
.ek-link-ext:before {
  content: '\f08e'; }

/* '' */
.ek-bookmark-empty:before {
  content: '\f097'; }

/* '' */
.ek-twitter:before {
  content: '\f099'; }

/* '' */
.ek-facebook:before {
  content: '\f09a'; }

/* '' */
.ek-menu:before {
  content: '\f0c9'; }

/* '' */
.ek-table:before {
  content: '\f0ce'; }

/* '' */
.ek-gplus-squared:before {
  content: '\f0d4'; }

/* '' */
.ek-gplus:before {
  content: '\f0d5'; }

/* '' */
.ek-mail-alt:before {
  content: '\f0e0'; }

/* '' */
.ek-doc-text:before {
  content: '\f0f6'; }

/* '' */
.ek-angle-left:before {
  content: '\f104'; }

/* '' */
.ek-angle-right:before {
  content: '\f105'; }

/* '' */
.ek-angle-up:before {
  content: '\f106'; }

/* '' */
.ek-angle-down:before {
  content: '\f107'; }

/* '' */
.ek-direction:before {
  content: '\f124'; }

/* '' */
.ek-unlink:before {
  content: '\f127'; }

/* '' */
.ek-info:before {
  content: '\f129'; }

/* '' */
.ek-compass:before {
  content: '\f14e'; }

/* '' */
.ek-down:before {
  content: '\f175'; }

/* '' */
.ek-up:before {
  content: '\f176'; }

/* '' */
.ek-left:before {
  content: '\f177'; }

/* '' */
.ek-right:before {
  content: '\f178'; }

/* '' */
.ek-sun:before {
  content: '\f185'; }

/* '' */
.ek-google:before {
  content: '\f1a0'; }

/* '' */
.ek-file-pdf:before {
  content: '\f1c1'; }

/* '' */
.ek-file-word:before {
  content: '\f1c2'; }

/* '' */
.ek-file-excel:before {
  content: '\f1c3'; }

/* '' */
.ek-sliders:before {
  content: '\f1de'; }

/* '' */
.ek-share-1:before {
  content: '\f1e0'; }

/* '' */
.ek-chart-area:before {
  content: '\f1fe'; }

/* '' */
.ek-chart-pie:before {
  content: '\f200'; }

/* '' */
.ek-chart-line:before {
  content: '\f201'; }

/* '' */
.ek-facebook-official:before {
  content: '\f230'; }

/* '' */
.ek-map:before {
  content: '\f279'; }

/* '' */
.ek-google-plus-circle:before {
  content: '\f2b3'; }

/* '' */
.ek-thermometer:before {
  content: '\f2c7'; }

/* '' */
.ek-thermometer-3:before {
  content: '\f2c8'; }

/* '' */
.ek-thermometer-2:before {
  content: '\f2c9'; }

/* '' */
.ek-thermometer-quarter:before {
  content: '\f2ca'; }

/* '' */
.ek-thermometer-0:before {
  content: '\f2cb'; }

/* '' */
.ek-twitter-squared:before {
  content: '\f304'; }

/* '' */
.ek-facebook-squared:before {
  content: '\f308'; }

/* '' */
/*------------------------------------*\
    $COMPONENTS
\*------------------------------------*/
.box-green {
  width: 200px;
  height: 50px;
  border-radius: 2px;
  background-color: #0e8041;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center; }

.btn {
  width: 48px;
  height: 48px;
  border-radius: 2px;
  cursor: pointer;
  box-shadow: 0 0 8px 0 rgba(74, 74, 74, 0.1), 0 2px 4px 0 rgba(0, 0, 0, 0.1); }
  @media only screen and (max-width: 46.8em) {
    .btn {
      width: 40px;
      height: 40px; } }
  .btn__with-text {
    border-style: solid;
    border-color: #0e8041;
    border-radius: 3px;
    border-width: 1px;
    padding: 4px;
    padding-left: 24px;
    padding-right: 24px;
    color: #0e8041;
    font-size: 14px;
    z-index: 1;
    position: relative;
    text-align: center; }
    .btn__with-text:hover {
      cursor: pointer;
      color: white;
      background-color: #0e8041; }
    .btn__with-text--admin {
      border-color: #007D96 !important;
      color: #007D96 !important; }
      .btn__with-text--admin:hover {
        background-color: #007D96 !important;
        cursor: pointer;
        color: white !important; }
  .btn__link {
    margin-left: 4px;
    color: #525455;
    font-size: 14px;
    text-decoration: underline;
    font-weight: 700; }
    .btn__link:hover {
      cursor: pointer;
      color: #0e8041; }
  .btn--gray {
    width: 40px;
    height: 40px;
    background-color: rgba(235, 237, 238, 0.3);
    border-color: #e9ebef;
    display: flex;
    justify-content: center;
    align-items: center; }
    .btn--gray:hover {
      opacity: 0.8; }
  .btn--main {
    background-color: rgba(39, 49, 66, 0.9);
    border-color: #273142;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center; }
    .btn--main .active {
      display: none; }
    .btn--main .inactive {
      display: block; }
    .btn--main:hover {
      opacity: 0.8; }
  .btn--primary {
    background-color: rgba(39, 49, 66, 0.9);
    border-color: #273142;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center; }
    .btn--primary.is-active {
      background-color: rgba(14, 128, 65, 0.92); }
    .btn--primary:hover {
      opacity: 0.85; }
  .btn--secondary {
    background-color: rgba(255, 255, 255, 0.9);
    color: #8a9a9a;
    border-color: #8a9a9a;
    display: block;
    overflow: hidden;
    opacity: 1;
    transition: opacity 0.4s linear; }
    .btn--secondary:hover {
      border-color: rgba(14, 128, 65, 0.9);
      color: #0e8041; }
    .btn--secondary.is-active {
      background-color: rgba(239, 241, 239, 0.92);
      color: #0e8041; }
      .btn--secondary.is-active .btn__caption {
        transform: translate(0, -4px); }
        @media only screen and (max-width: 46.8em) {
          .btn--secondary.is-active .btn__caption {
            transform: translate(0, -6px); } }
      .btn--secondary.is-active .btn__caption-text {
        transform: translate(0, -16px); }
        @media only screen and (max-width: 46.8em) {
          .btn--secondary.is-active .btn__caption-text {
            transform: translate(0, -12px); } }
      .btn--secondary.is-active:hover {
        opacity: 0.85;
        /*background-color: rgba($palette-primary-bg, 0.9);
                color: $color-gray;
                border-color: $color-gray;

                .btn__caption{
                    transform: translate(0,0);
                    
                }
                .btn__caption-text{
                    transform: translate(0,0); 
                }*/ }
    .btn--secondary.is-disabled {
      background-color: rgba(39, 49, 66, 0.9);
      color: #fff;
      border-color: #273142;
      opacity: 0.8; }
      .btn--secondary.is-disabled:hover .btn__caption {
        transform: translate(0, 0); }
      .btn--secondary.is-disabled:hover .btn__caption-text {
        transform: translate(0, 0); }
  .btn--admin-primary {
    background-color: #69758B;
    border-color: #69758B;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 4px; }
    .btn--admin-primary.is-active {
      background-color: rgba(14, 128, 65, 0.9);
      border-color: #0e8041; }
  .btn__share {
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 3px;
    position: relative; }
    .btn__share:hover .btn__share-overlay {
      height: 100%; }
    .btn__share--facebook {
      background-color: #36549C;
      color: white;
      border-color: #36549C; }
    .btn__share--twitter {
      background-color: #1DA1F2;
      color: white;
      border-color: #1DA1F2; }
    .btn__share--email {
      background-color: #E21C1F;
      color: white;
      border-color: #E21C1F; }
  .btn__share-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    overflow: hidden;
    width: 100%;
    height: 0;
    transition: .5s ease; }
  .btn__share-text {
    white-space: nowrap;
    color: white;
    font-size: 12px;
    position: absolute;
    overflow: hidden;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%); }
  .btn__close {
    color: #aaaeb0;
    border-radius: 9px;
    margin: 0 16px; }
    .btn__close:hover {
      cursor: pointer;
      color: #414040; }
  .btn__close-2 {
    color: #aaaeb0;
    border-radius: 9px;
    margin-left: 16px; }
    .btn__close-2:hover {
      cursor: pointer;
      color: #414040; }
  .btn__caption {
    width: 48px;
    height: 48px;
    padding: 12px;
    transition: transform 500ms,-webkit-transform 500ms;
    position: relative; }
    @media only screen and (max-width: 46.8em) {
      .btn__caption {
        width: 40px;
        height: 40px;
        padding: 10px; } }
    .btn__caption-text {
      position: absolute;
      bottom: -16px;
      font-size: 10px;
      text-align: center;
      width: 48px;
      left: 0;
      overflow: hidden;
      text-overflow: clip; }
      @media only screen and (max-width: 46.8em) {
        .btn__caption-text {
          font-size: 10px;
          width: 40px; } }
    .btn__caption:hover {
      transform: translate(0, -4px); }
      @media only screen and (max-width: 46.8em) {
        .btn__caption:hover {
          transform: translate(0, -6px); } }
      .btn__caption:hover .btn__caption-text {
        transform: translate(0, -16px); }
        @media only screen and (max-width: 46.8em) {
          .btn__caption:hover .btn__caption-text {
            transform: translate(0, -12px); } }
  .btn__with-text-inverted {
    border-style: solid;
    border-color: #0e8041;
    border-radius: 3px;
    border-width: 1px;
    padding-left: 24px;
    padding-right: 24px;
    color: white;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-color: #0e8041; }
    .btn__with-text-inverted:hover {
      cursor: pointer;
      color: #0e8041;
      background-color: white; }

.tab {
  cursor: pointer;
  color: #525455;
  text-align: center;
  padding: 0 12px 8px 12px; }
  .tab:hover {
    color: #0e8041; }
  .tab.is-active {
    color: #0e8041;
    border-bottom: 1.5px solid #0e8041; }

.admin-tab {
  cursor: pointer;
  color: #525455;
  text-align: center;
  font-weight: 600;
  padding: 0 12px 8px 12px; }
  .admin-tab:hover {
    color: #007D96; }
  .admin-tab.is-active {
    color: #007D96;
    border-bottom: 1.5px solid #007D96; }
  .admin-tab--light {
    color: #8c96a9; }

.btn-group {
  border: 1px solid #e9ebef;
  border-radius: 2px;
  width: fit-content;
  font-size: 12px;
  font-weight: 600;
  display: flex;
  align-items: center; }
  .btn-group__button {
    padding: 4px 8px;
    background-color: rgba(235, 237, 238, 0.3);
    border-right: 1px solid #e9ebef;
    cursor: pointer;
    height: 30px;
    display: flex;
    align-items: center; }
    .btn-group__button:last-child {
      border-right: none; }
    .btn-group__button:hover {
      background-color: rgba(188, 197, 212, 0.705); }
    .btn-group__button.is-active {
      color: #0e8041; }
      .btn-group__button.is-active:hover {
        background-color: rgba(235, 237, 238, 0.3);
        cursor: default; }

.btn-with-icon {
  padding: 8px 16px;
  border: 1px solid;
  border-radius: 2px;
  width: fit-content;
  font-size: 14px;
  font-weight: 600;
  display: flex;
  align-items: center;
  cursor: pointer; }
  .btn-with-icon--green {
    background-color: #007D96;
    border-color: #007D96;
    color: white; }
    .btn-with-icon--green:hover {
      background-color: white;
      border-color: #007D96;
      color: #007D96; }
  .btn-with-icon i {
    margin-right: 8px; }

.btn__share i {
  font-size: 30px; }

.btn__share--facebook .btn__share-overlay {
  background-color: #36549C; }

.btn__share--twitter .btn__share-overlay {
  background-color: #1DA1F2; }

.btn__share--email .btn__share-overlay {
  background-color: #E21C1F; }

.btn__with-text-inverted-container {
  background: #0e8041; }

.logo {
  height: auto;
  width: 32px; }

.slogan {
  color: #0e8041; }

.item__icon {
  margin: 0 16px; }

.item__icon-ok {
  display: none;
  align-items: center;
  margin: 0 16px;
  font-size: 12px;
  color: #8a9a9a; }

.item__text {
  color: black;
  flex-basis: calc(100% - 88px); }
  .item__text--2 {
    flex-basis: calc(100% - 64px);
    padding-left: 16px; }
  .item__text--admin {
    flex-basis: calc(100% - 92px);
    padding-left: 16px;
    color: inherit; }
  .item__text--red {
    color: red !important;
    font-weight: 600; }

.item__admin-text {
  flex-basis: calc(100% - 92px);
  padding-left: 16px; }

.item__title {
  font-size: 14px;
  color: #525455;
  font-weight: 600;
  line-height: 20px; }

.item__subtitle {
  color: #72727D;
  font-size: 12px;
  line-height: 16px; }

.item__compound {
  width: 72px;
  padding-left: 16px;
  font-weight: 700; }

.header-item.is-close .list {
  display: none; }

.header-item__icon {
  margin: 0 16px;
  color: white; }

.header-item__title {
  font-size: 14px;
  font-weight: 700;
  color: white; }

.location-title {
  flex-basis: calc(100% - 114px);
  height: 72px;
  display: flex;
  flex-direction: column;
  justify-content: center; }
  .location-title__icon {
    font-size: 32px;
    color: #0e8041;
    margin: 0 16px;
    align-self: center; }
  .location-title__title {
    font-size: 18px;
    font-weight: bold; }
  .location-title__subtitle {
    color: #72727D;
    font-size: 14px;
    line-height: 1;
    margin: 8px 0; }
  .location-title__open-icon {
    color: #72727D;
    cursor: pointer; }
  @media only screen and (max-width: 46.8em) {
    .location-title {
      height: 64px; }
      .location-title .location-title__title {
        font-size: 16px; }
      .location-title .location-title__subtitle {
        font-size: 13px; } }

.rounded-cell {
  border-radius: 12px;
  border-style: solid;
  border-color: rgba(188, 197, 212, 0.705);
  border-width: 1px;
  font-size: 12px;
  padding: 4px;
  font-weight: 700;
  width: 40px;
  text-align: center; }

.normal-cell {
  font-size: 14px;
  color: #525455;
  line-height: 18px;
  cursor: pointer; }

.number-cell {
  font-size: 16px;
  color: #414040;
  line-height: 18px;
  font-weight: 700; }

.element-cell {
  height: 40px;
  width: 44px;
  border: 1px solid #e9ebef;
  border-radius: 2px 4px 2px 0;
  cursor: pointer; }
  .element-cell__symbol {
    height: 36px;
    width: 44px;
    padding: 4px;
    color: #8c96a9;
    font-weight: 600;
    display: flex;
    align-items: center;
    font-size: 12px;
    justify-content: center; }
  .element-cell__color {
    height: 4px;
    width: 100%;
    display: block; }
    .element-cell__color--darkgreen {
      background-color: #0D8040; }
    .element-cell__color--green {
      background-color: #4CAF50; }
    .element-cell__color--yellow {
      background-color: #F8E71C; }
    .element-cell__color--orange {
      background-color: #F5A623; }
    .element-cell__color--red {
      background-color: #EF6F6C; }
    .element-cell__color--grey {
      background-color: #9B9B9B; }
    .element-cell__color--light {
      background-color: #CFE3F0; }

.medium-text {
  font-size: 14px;
  color: #525455;
  margin-bottom: 0px; }

h4.section-title {
  padding-bottom: 8px;
  font-size: 14px;
  font-weight: 700; }
  h4.section-title.section-title--no-padding {
    padding-bottom: 0; }

h5.section-subtitle {
  padding-bottom: 8px;
  font-size: 12px;
  font-weight: 600;
  color: #8c96a9; }

.legend {
  width: inherit;
  height: inherit;
  display: flex; }
  .legend__item {
    padding: 0 8px; }
    @media only screen and (max-width: 46.8em) {
      .legend__item {
        padding: 0; } }
    .legend__item .element {
      display: flex;
      height: 30px;
      justify-content: center;
      align-items: center; }
      @media only screen and (max-width: 46.8em) {
        .legend__item .element {
          height: 20px;
          width: 41px; } }
      .legend__item .element span {
        border-radius: 50%;
        background-color: #FFDF00; }
        .legend__item .element span.xl {
          width: 25px;
          height: 25px; }
          @media only screen and (max-width: 46.8em) {
            .legend__item .element span.xl {
              width: 18px;
              height: 18px; } }
        .legend__item .element span.l {
          width: 20px;
          height: 20px; }
          @media only screen and (max-width: 46.8em) {
            .legend__item .element span.l {
              width: 14px;
              height: 14px; } }
        .legend__item .element span.m {
          width: 15px;
          height: 15px; }
          @media only screen and (max-width: 46.8em) {
            .legend__item .element span.m {
              width: 10px;
              height: 10px; } }
        .legend__item .element span.s {
          width: 8px;
          height: 8px; }
          @media only screen and (max-width: 46.8em) {
            .legend__item .element span.s {
              width: 6px;
              height: 6px; } }
    .legend__item .text {
      font-size: 12px;
      text-align: center; }
      @media only screen and (max-width: 46.8em) {
        .legend__item .text {
          font-size: 10px; } }

.select-item {
  font-weight: 600;
  font-size: 14px; }

.close {
  color: #aaaeb0;
  display: flex;
  text-align: center; }
  .close:hover {
    color: #414040; }

.legend-icon {
  color: #0e8041;
  font-size: 24px; }

.search {
  padding: 16px;
  display: flex;
  align-items: center;
  color: rgba(188, 197, 212, 0.705);
  position: relative;
  border-bottom: 1px solid #e9ebef; }
  .search__input {
    margin: 0;
    font-size: 14px;
    line-height: 24px;
    padding: 4px 4px 4px 32px;
    color: #8c96a9;
    font-weight: 500;
    border: 1px solid #e9ebef; }
    .search__input:focus {
      outline: none;
      border: 1px solid #0e8041; }
    .search__input--small {
      font-size: 12px; }
  .search__icon {
    position: absolute;
    top: 24px;
    left: 24px; }

.admin-search {
  padding: 16px;
  display: flex;
  align-items: center;
  color: #69758B;
  position: relative;
  border-bottom: 1px solid #e9ebef; }
  .admin-search__input {
    margin: 0;
    font-size: 14px;
    line-height: 22px;
    padding: 4px 4px 4px 32px;
    color: #69758B;
    font-weight: 500;
    border-radius: 4px;
    border: 1px solid #e9ebef; }
    .admin-search__input:focus {
      /*outline: -webkit-focus-ring-color auto 5px; 
            outline-color: $border-light; */
      outline: none;
      border-color: #007D96; }
    .admin-search__input--small {
      font-size: 12px; }
  .admin-search__icon {
    position: absolute;
    top: 24px;
    left: 24px; }
  .admin-search__icon32 {
    position: absolute;
    top: 32px;
    left: 32px; }
  .admin-search__icon8 {
    position: absolute;
    top: 8px;
    left: 8px; }

::-webkit-input-placeholder {
  /* WebKit, Blink, Edge */
  color: rgba(188, 197, 212, 0.705); }

:-moz-placeholder {
  /* Mozilla Firefox 4 to 18 */
  color: rgba(188, 197, 212, 0.705);
  opacity: 1; }

::-moz-placeholder {
  /* Mozilla Firefox 19+ */
  color: rgba(188, 197, 212, 0.705);
  opacity: 1; }

:-ms-input-placeholder {
  /* Internet Explorer 10-11 */
  color: rgba(188, 197, 212, 0.705); }

::-ms-input-placeholder {
  /* Microsoft Edge */
  color: rgba(188, 197, 212, 0.705); }

input.admin-search__input::-webkit-input-placeholder {
  /* WebKit, Blink, Edge */
  color: #69758B; }

input.admin-search__input:-moz-placeholder {
  /* Mozilla Firefox 4 to 18 */
  color: #69758B;
  opacity: 1; }

input.admin-search__input::-moz-placeholder {
  /* Mozilla Firefox 19+ */
  color: #69758B;
  opacity: 1; }

input.admin-search__input:-ms-input-placeholder {
  /* Internet Explorer 10-11 */
  color: #69758B; }

input.admin-search__input::-ms-input-placeholder {
  /* Microsoft Edge */
  color: #69758B; }

.pin {
  display: none;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.8);
  z-index: 1000;
  left: 0;
  top: 0;
  position: fixed; }
  .pin.is-active {
    display: block; }
    .pin.is-active .pin__image {
      display: block; }
    .pin.is-active .pin__pulse {
      display: block; }
  .pin__image {
    display: none;
    width: 30px;
    height: 30px;
    border-radius: 50% 50% 50% 0;
    background-color: #4CAF50;
    position: absolute;
    transform: rotate(-45deg);
    left: 50%;
    top: 50%;
    margin: -20px 0 0 -20px;
    animation-name: bounce;
    animation-fill-mode: both;
    animation-duration: 1s;
    z-index: 1001; }
    .pin__image:after {
      content: '';
      width: 14px;
      height: 14px;
      margin: 8px 0 0 8px;
      background-color: #0e8041;
      position: absolute;
      border-radius: 50%; }
  .pin__pulse {
    background: rgba(14, 128, 65, 0.2);
    border-radius: 50%;
    height: 14px;
    width: 14px;
    position: absolute;
    left: 50%;
    top: 50%;
    margin: 11px 0px 0px -12px;
    transform: rotateX(55deg);
    z-index: 1000;
    display: none; }
    .pin__pulse:after {
      content: "";
      border-radius: 50%;
      height: 40px;
      width: 40px;
      position: absolute;
      margin: -13px 0 0 -13px;
      animation: pulsate 1s ease-out;
      animation-iteration-count: infinite;
      opacity: 0.0;
      box-shadow: 0 0 4px 5px #0e8041;
      animation-delay: 1.1s; }

@keyframes pulsate {
  0% {
    transform: scale(0.1, 0.1);
    opacity: 0.0; }
  50% {
    opacity: 1.0; }
  100% {
    transform: scale(1.2, 1.2);
    opacity: 0; } }

@keyframes bounce {
  0% {
    opacity: 0;
    transform: translateY(-2000px) rotate(-45deg); }
  60% {
    opacity: 1;
    transform: translateY(30px) rotate(-45deg); }
  80% {
    transform: translateY(-10px) rotate(-45deg); }
  100% {
    transform: translateY(0) rotate(-45deg); } }

.link {
  height: 48px;
  display: flex;
  cursor: pointer; }
  .link__image {
    width: 48px;
    display: flex;
    justify-content: center;
    align-items: center; }
    .link__image img {
      width: 100%;
      height: auto; }
  .link__text {
    background-color: #273142;
    color: #fff;
    border-radius: 2px;
    opacity: 0.9;
    width: 136px;
    display: flex;
    justify-content: center;
    align-items: center; }

/*** 
https://markus.oberlehner.net/blog/pure-css-animated-svg-circle-chart/
 */
.circle-chart__circle {
  animation: circle-chart-fill 2s reverse;
  transform: rotate(-90deg);
  transform-origin: center; }
  .circle-chart__circle--negative {
    transform: rotate(-90deg) scale(1, -1); }

.circle-chart__info {
  animation: circle-chart-appear 2s forwards;
  opacity: 0;
  transform: translateY(0.3em); }

.chart-text {
  /*font: 16px/1.4em "Montserrat", Arial, sans-serif;*/
  -moz-transform: translateY(0.25em);
  -ms-transform: translateY(0.25em);
  -webkit-transform: translateY(0.25em);
  transform: translateY(0.25em);
  animation: circle-chart-appear 2s forwards; }

.chart-number {
  font-size: 0.6em;
  line-height: 1;
  text-anchor: middle;
  -moz-transform: translateY(-0.25em);
  -ms-transform: translateY(-0.25em);
  -webkit-transform: translateY(-0.25em);
  transform: translateY(-0.25em); }

.chart-label {
  font-size: 0.2em;
  text-transform: uppercase;
  text-anchor: middle; }

figure {
  display: flex;
  justify-content: space-around;
  flex-direction: column;
  margin-left: -15px;
  margin-right: -15px; }

@media (min-width: 768px) {
  figure {
    flex-direction: row; } }

.figure-content,
.figure-key {
  flex: 1;
  padding-left: 15px;
  padding-right: 15px;
  align-self: center; }

.figure-content svg {
  height: auto; }

.donut-segment {
  animation: circle-chart-fill 2s reverse; }

@keyframes circle-chart-fill {
  to {
    stroke-dasharray: 0 100; } }

@keyframes circle-chart-appear {
  to {
    opacity: 1;
    transform: translateY(0); } }

.chartWrapper {
  position: relative; }

.chartWrapper > canvas {
  position: absolute;
  left: 0;
  top: 0;
  pointer-events: none; }

.chartAreaWrapper {
  overflow-x: scroll;
  position: relative;
  width: 100%; }

.chartAreaWrapper2 {
  position: relative;
  height: 200px; }

.myChartDiv {
  height: 200px;
  width: 450px;
  overflow: hidden;
  position: relative; }

.myChartOuter {
  display: flex;
  position: relative;
  margin-right: -25px; }

.chart-info {
  border: 1px solid #72727D;
  background-color: #72727D;
  border-radius: 50%;
  color: #fff;
  font-size: 15px !important; }

.chart-info-box {
  position: absolute;
  right: 32px;
  top: 16px; }

.tooltip {
  position: relative;
  display: flex; }

.tooltip .tooltiptext {
  visibility: hidden;
  font-style: normal;
  width: 140px;
  background-color: #72727D;
  opacity: 0.7;
  color: #fff;
  text-align: center;
  border-radius: 6px;
  padding: 5px 0;
  position: absolute;
  z-index: 1;
  top: -6px;
  right: 133%; }

.tooltip .tooltiptext::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 99%;
  margin-top: -5px;
  border-width: 7px;
  border-style: solid;
  border-color: transparent transparent transparent #72727D; }

.tooltip:hover .tooltiptext {
  visibility: visible; }

.footer {
  display: flex;
  padding: 32px 16px 16px 16px;
  border-top: 1px solid #e9ebef; }
  .footer__icon {
    width: 32px;
    margin-left: 4px;
    display: flex;
    justify-content: center;
    align-items: center; }
    .footer__icon img {
      width: 100%;
      height: auto; }
  .footer__text {
    color: rgba(188, 197, 212, 0.705);
    font-size: 12px; }

.footer-map {
  display: flex;
  border: 1px solid #e9ebef;
  background: rgba(235, 237, 238, 0.8);
  font-size: 12px;
  font-weight: 600;
  position: inherit;
  margin-right: 8px;
  width: max-content; }
  .footer-map__item {
    padding: 4px 8px 4px 0; }
    .footer-map__item:first-child {
      padding: 4px 8px; }
  .footer-map__distance-line {
    display: inline-block;
    height: 4px;
    border: 2px solid #8a9a9a;
    border-top: none; }
  @media only screen and (max-width: 46.8em) {
    .footer-map {
      display: none; } }

.list-item {
  display: flex;
  align-items: center;
  justify-content: space-between; }
  .list-item .value {
    color: #8c96a9; }

.pelud-row {
  display: flex;
  align-items: center;
  justify-content: space-between; }
  .pelud-row .first-column .sort {
    font-size: 12px;
    color: #8c96a9;
    line-height: 2; }
  .pelud-row .first-column .type {
    font-size: 16px;
    font-weight: 700; }
  .pelud-row .second-column {
    text-align: center; }
    .pelud-row .second-column .state {
      font-size: 16px;
      font-weight: 700; }
      .pelud-row .second-column .state.green {
        color: #4CAF50; }
      .pelud-row .second-column .state.yellow {
        color: #F8E71C; }
      .pelud-row .second-column .state.red {
        color: #EF6F6C; }
      .pelud-row .second-column .state.grey {
        color: #9B9B9B; }
      .pelud-row .second-column .state.light {
        color: #CFE3F0; }
    .pelud-row .second-column .date {
      font-size: 10px;
      color: #8c96a9; }

.disabled-input {
  display: flex; }
  .disabled-input__input {
    font-size: 14px;
    padding: 8px;
    flex-basis: 75%;
    border-radius: 0px; }

.disabled-input .btn__with-text-inverted {
  flex-grow: 2;
  border-radius: 0px; }

.input-classic {
  padding-bottom: 24px;
  width: 100%; }
  .input-classic__input {
    padding: 8px 16px;
    color: #69758B;
    border-color: #e9ebef; }
    .input-classic__input:focus {
      border-color: #007D96;
      outline: none; }
  .input-classic__textarea {
    height: 120px;
    padding-top: 8px !important;
    color: #69758B;
    border-color: #e9ebef; }
    .input-classic__textarea:focus {
      border-color: #007D96;
      outline: none; }
  .input-classic__label {
    font-size: 14px;
    padding-bottom: 4px;
    font-weight: 800; }
  .input-classic__error {
    padding-top: 4px;
    font-size: 12px;
    color: #EF6F6C;
    display: none; }

.input-classic.error .input-classic__error {
  display: inherit; }

.input-classic.error .input-classic__label {
  color: #EF6F6C; }

.input-classic.error .input-classic__input {
  border-color: #EF6F6C;
  color: #EF6F6C !important; }

.input-box {
  padding-bottom: 24px;
  width: 100%; }
  .input-box__input {
    padding: 8px 16px;
    color: #8c96a9;
    border: 1px solid #e9ebef; }
    .input-box__input:focus {
      border: 1px solid #0e8041;
      outline: none; }
  .input-box__textarea {
    height: 120px;
    padding-top: 8px !important;
    color: #8c96a9;
    border: 1px solid #e9ebef; }
    .input-box__textarea:focus {
      border: 1px solid #0e8041;
      outline: none; }
  .input-box__label {
    font-size: 14px;
    padding-bottom: 4px;
    font-weight: 700; }
  .input-box__error {
    padding-top: 4px;
    font-size: 12px;
    color: #EF6F6C;
    display: none; }

.input-box.error .input-box__error {
  display: inherit; }

.input-box.error .input-box__label {
  color: #EF6F6C; }

.input-box.error .input-box__input {
  border: 1px solid #EF6F6C;
  color: #EF6F6C !important; }

/* The container */
.checkbox {
  display: block;
  position: relative;
  padding-left: 35px;
  margin-bottom: 12px;
  cursor: pointer;
  font-size: 14px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none; }

/* Hide the browser's default checkbox */
.checkbox input {
  position: absolute;
  opacity: 0; }

/* Create a custom checkbox */
.checkbox__checkmark {
  position: absolute;
  top: 1px;
  left: 0px;
  height: 18px;
  width: 18px;
  background-color: #eee;
  border-radius: 4px; }

/* On mouse-over, add a grey background color */
.checkbox:hover input ~ .checkbox__checkmark {
  background-color: #ccc; }

/* When the checkbox is checked, add a blue background */
.checkbox input:checked ~ .checkbox__checkmark {
  background-color: #007D96; }

/* Create the checkmark/indicator (hidden when not checked) */
.checkbox__checkmark:after {
  content: "";
  position: absolute;
  display: none; }

/* Show the checkmark when checked */
.checkbox input:checked ~ .checkbox__checkmark:after {
  display: block; }

/* Style the checkmark/indicator */
.checkbox .checkbox__checkmark:after {
  left: 6px;
  top: 1px;
  width: 3px;
  height: 10px;
  border-radius: 2px;
  border: solid white;
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg); }

.checkbox__label {
  margin-left: -6px; }

.switch {
  position: relative;
  display: inline-block;
  width: 40px;
  height: 15px; }

.switch input {
  display: none; }

.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  -webkit-transition: .4s;
  transition: .4s; }

.slider:before {
  position: absolute;
  content: "";
  height: 20px;
  width: 20px;
  left: 0px;
  bottom: -3px;
  background-color: white;
  border: 1px solid #8a9a9a;
  -webkit-transition: .4s;
  transition: .4s; }

input:checked + .slider {
  background-color: #007D96; }

input:focus + .slider {
  box-shadow: 0 0 1px #007D96; }

input:checked + .slider:before {
  -webkit-transform: translateX(20px);
  -ms-transform: translateX(20px);
  transform: translateX(20px); }

.slider.round {
  border-radius: 15px; }

.slider.round:before {
  border-radius: 50%; }

.input-button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%; }
  .input-button__input {
    font-size: 14px;
    padding: 8px;
    border-radius: 2px;
    height: 39px;
    color: #69758B;
    border-color: #e9ebef; }
    .input-button__input:focus {
      border-color: #007D96;
      outline: none; }

/**
 * Start by hiding the checkboxes
 */
input[type=checkbox] {
  visibility: hidden; }

/**
   * Checkbox Five
   */
.checkbox-full {
  display: flex;
  align-items: center;
  height: 16px;
  position: relative; }

/**
   * Create the box for the checkbox
   */
.checkbox-full label {
  cursor: pointer;
  position: absolute;
  width: 16px;
  height: 16px;
  top: 0;
  left: 0;
  background: #eee;
  border: 1px solid #ddd; }

/**
   * Display the tick inside the checkbox
   */
.checkbox-full label:after {
  opacity: 0;
  content: '';
  position: absolute;
  width: 10px;
  height: 10px;
  background: #007D96;
  margin: 2px;
  /**top: 3px;
    left: 1.5px;
    border: 2px solid #333;
    border-top: none;
    border-right: none;
    transform: rotate(-45deg);*/ }

/**
   * Create the hover event of the tick
   */
.checkbox-full label:hover::after {
  opacity: 0.2; }

/**
   * Create the checkbox state for the tick
   */
.checkbox-full input[type=checkbox]:checked + label:after {
  opacity: 1 !important; }

.legend-circle {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  display: block; }
  .legend-circle--darkgreen {
    background-color: #0D8040; }
  .legend-circle--green {
    background-color: #4CAF50; }
  .legend-circle--yellow {
    background-color: #F8E71C; }
  .legend-circle--orange {
    background-color: #F5A623; }
  .legend-circle--red {
    background-color: #EF6F6C; }
  .legend-circle--grey {
    background-color: #9B9B9B; }
  .legend-circle--light {
    background-color: #CFE3F0; }

.circle {
  width: 75px;
  height: 75px;
  font-size: 18px;
  border-radius: 50%;
  font-weight: 600;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 2px solid; }
  .circle--small {
    width: 40px;
    height: 40px;
    font-size: 12px; }
  .circle--big {
    width: 110px;
    height: 110px;
    font-size: 32px; }
  .circle--darkgreen {
    background-color: #0D8040; }
  .circle--green {
    background-color: #4CAF50; }
  .circle--yellow {
    background-color: #F8E71C; }
  .circle--orange {
    background-color: #F5A623; }
  .circle--red {
    background-color: #EF6F6C; }
  .circle--grey {
    background-color: #9B9B9B; }
  .circle--light {
    background-color: #CFE3F0; }

.profile {
  display: flex;
  align-items: center; }
  .profile__name {
    font-size: 18px;
    color: #8c96a9;
    margin-right: 8px;
    margin-left: 24px; }
  .profile i {
    cursor: pointer;
    color: #8c96a9; }
  .profile__picture {
    width: 40px;
    height: 40px;
    margin-left: 8px; }
    .profile__picture img {
      border-radius: 50%; }

.selectbox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  background: #fff;
  cursor: pointer; }
  .selectbox--big {
    height: 40px; }
    .selectbox--big i {
      top: 10px !important; }
  .selectbox select {
    width: 100%;
    background: transparent;
    border-radius: 4px;
    border: 1px solid #e9ebef;
    padding: 4px;
    padding-right: 30px;
    padding-left: 8px;
    font-size: 14px;
    color: #69758B;
    line-height: 22px;
    -webkit-appearance: none;
    -moz-appearance: none;
    outline: none;
    box-shadow: none;
    background-image: none;
    z-index: 1; }
    .selectbox select:focus {
      border-color: #007D96; }
  .selectbox i {
    position: absolute;
    top: 7px;
    right: 5px;
    z-index: 0; }

.btn-admin {
  padding: 8px 16px;
  border: 1px solid;
  border-radius: 2px;
  font-size: 14px;
  outline: none;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center; }
  .btn-admin--wide {
    width: 100%;
    padding: 16px;
    font-size: 16px; }
  .btn-admin--small {
    padding: 4px 16px;
    line-height: 22px; }
  .btn-admin--green {
    background-color: #007D96;
    border-color: #007D96;
    color: white; }
    .btn-admin--green:hover {
      background-color: white;
      border-color: #007D96;
      color: #007D96; }
  .btn-admin--green-inverted {
    background-color: white;
    border-color: #007D96;
    color: #007D96; }
    .btn-admin--green-inverted:hover {
      background-color: #007D96;
      border-color: #007D96;
      color: white; }
  .btn-admin--red-inverted {
    background-color: white;
    border-color: #FF5A5F;
    color: #FF5A5F; }
    .btn-admin--red-inverted:hover {
      background-color: #FF5A5F;
      border-color: #FF5A5F;
      color: white; }
  .btn-admin--white {
    background-color: white;
    border-color: #e9ebef;
    color: #8c96a9; }
    .btn-admin--white:hover {
      border-color: #8a9a9a;
      color: #414040; }

.tablebox {
  display: flex;
  align-items: center; }
  .tablebox__table {
    width: calc(100% - 70px);
    background-color: white;
    border: none;
    font-size: 12px; }
    .tablebox__table th {
      padding: 4px;
      display: flex;
      align-items: center; }
    .tablebox__table td {
      padding: 8px;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
      cursor: default; }
    .tablebox__table th, .tablebox__table td {
      border: none; }
  .tablebox__head {
    color: #8c96a9;
    font-weight: 600;
    border-bottom: 1px solid #e9ebef;
    display: flex;
    align-items: center; }
  .tablebox__head-item1 {
    flex-basis: 40%; }
  .tablebox__head-item2 {
    flex-basis: 40%;
    display: flex;
    justify-content: flex-end; }
  .tablebox__head-item3 {
    flex-basis: 20%;
    display: flex;
    justify-content: flex-end; }
  .tablebox__table-row {
    font-weight: 600;
    border-bottom: 1px solid #e9ebef;
    display: flex;
    align-items: center; }
  .tablebox__row-item1 {
    flex-basis: 40%; }
  .tablebox__row-item2 {
    flex-basis: 40%;
    display: flex;
    justify-content: flex-end; }
  .tablebox__row-item3 {
    flex-basis: 20%;
    display: flex;
    justify-content: flex-end; }
  .tablebox__pagination {
    color: #8c96a9;
    flex-basis: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: default;
    opacity: 0.5; }
    .tablebox__pagination span {
      width: 25px;
      height: 25px;
      border-radius: 50%;
      border: 1px solid #e9ebef;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer; }
  .tablebox__pagination-info {
    text-align: center;
    font-size: 12px;
    color: #8c96a9;
    padding-top: 4px; }

.progress-line {
  position: fixed;
  bottom: 2px; }

.progress-line, .progress-line:before {
  height: 5px;
  width: 100%;
  margin: 0; }

.progress-line {
  background-color: #e9ebef;
  display: -webkit-flex;
  display: flex; }

.progress-line:before {
  background-color: #0e8041;
  content: '';
  -webkit-animation: running-progress 2s cubic-bezier(0.4, 0, 0.2, 1) infinite;
  animation: running-progress 2s cubic-bezier(0.4, 0, 0.2, 1) infinite; }

@-webkit-keyframes running-progress {
  0% {
    margin-left: 0px;
    margin-right: 100%; }
  60% {
    margin-left: 30%;
    margin-right: 0%; }
  100% {
    margin-left: 100%;
    margin-right: 0; } }

@keyframes running-progress {
  0% {
    margin-left: 0px;
    margin-right: 100%; }
  60% {
    margin-left: 30%;
    margin-right: 0%; }
  100% {
    margin-left: 100%;
    margin-right: 0; } }

.toaster {
  width: 100%;
  display: flex;
  align-items: center;
  border: 1px solid;
  border-radius: 4px;
  height: 40px;
  font-weight: 600;
  margin-bottom: 8px; }
  .toaster__icon {
    flex: 1 1 48px;
    display: flex;
    justify-content: center;
    align-items: center; }
  .toaster__text {
    flex: 2 1 calc(100% - 96px);
    cursor: default; }
  .toaster__close {
    flex: 1 1 48px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer; }
  .toaster.success {
    background-color: #4CAF50;
    border-color: #4CAF50;
    color: white; }
  .toaster.error {
    background-color: #FF5A5F;
    border-color: #FF5A5F;
    color: white; }

.brand {
  display: flex;
  padding: 16px;
  align-items: center;
  background-color: rgba(235, 237, 238, 0.3);
  box-shadow: 0 1px 0 0 rgba(0, 0, 0, 0.1); }
  .brand__logo {
    display: flex;
    align-items: center; }
  .brand__slogan {
    font-size: 14px;
    line-height: 16px;
    letter-spacing: 1px;
    font-weight: 800;
    padding-left: 16px; }

.brand-name {
  display: flex;
  align-items: center; }
  .brand-name__logo {
    padding-right: 8px;
    padding-right: 16px;
    line-height: 20px; }
  .brand-name__title {
    font-size: 16px;
    color: #007D96; }
    .brand-name__title--gray {
      color: #69758B; }

.location-header {
  padding: 16px 0 8px 0;
  display: flex;
  background-color: rgba(235, 237, 238, 0.3);
  box-shadow: 0 1px 0 0 rgba(0, 0, 0, 0.1); }
  .location-header__close-btn {
    margin-right: 8px;
    margin-top: 8px; }

.tabs {
  border-bottom: 1px solid rgba(188, 197, 212, 0.705);
  padding-top: 8px;
  padding-bottom: 8px;
  font-size: 12px; }
  .tabs__item {
    display: inline;
    padding: 0 8px; }
  .tabs--centered {
    display: flex;
    justify-content: center; }

.tabs2 {
  border-bottom: 1px solid rgba(188, 197, 212, 0.705);
  font-size: 13px;
  margin-top: 8px;
  display: flex;
  flex-wrap: wrap;
  align-items: center; }
  .tabs2__item {
    padding: 8px;
    padding-bottom: 4px;
    cursor: pointer; }
    .tabs2__item.is-active {
      border-bottom: 2px solid #0e8041;
      color: #0e8041;
      cursor: default; }

.parameter-data {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px; }
  .parameter-data__main {
    flex-grow: 5; }
  .parameter-data__first {
    margin-right: 8px; }

.icon-text-row {
  display: flex;
  align-items: center; }
  .icon-text-row__text {
    margin-left: 16px;
    font-size: 16px;
    color: #525455; }

.element-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 0; }
  .element-row__col1 {
    display: flex;
    align-items: center; }
  .element-row__col2 {
    padding: 0 8px; }
  .element-row__col3 {
    font-weight: 600;
    font-size: 14px;
    color: #8c96a9; }
  .element-row__name {
    font-weight: 600;
    font-size: 14px; }
  .element-row__time {
    font-size: 12px;
    color: #8c96a9;
    line-height: 1; }

.icons {
  width: inherit; }
  .icons__item {
    margin: 8px; }
    @media only screen and (max-width: 46.8em) {
      .icons__item {
        margin: 4px; } }
    .icons__item--first {
      margin-bottom: 16px; }
      @media only screen and (max-width: 46.8em) {
        .icons__item--first {
          margin-right: 16px; } }
    .icons__item--last {
      margin-top: 16px; }
  @media only screen and (max-width: 46.8em) {
    .icons--horizontal-mob {
      display: flex; } }

.legend-menu {
  width: fit-content;
  height: 48px;
  background-color: white;
  border: 1px solid #e9ebef;
  display: flex; }
  .legend-menu__icon {
    height: inherit;
    padding: 8px;
    border-right: 1px solid #e9ebef;
    display: flex;
    align-items: center; }
  .legend-menu__item {
    height: inherit;
    padding: 8px;
    border-right: 1px solid #e9ebef;
    display: flex;
    align-items: center;
    width: max-content; }
  .legend-menu__legend {
    padding: 0 8px;
    border-right: 1px solid #e9ebef;
    display: flex;
    align-items: center;
    width: max-content; }
  .legend-menu__favorite {
    width: 48px;
    border-right: 1px solid #e9ebef;
    padding: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer; }
    .legend-menu__favorite img {
      display: none; }
    .legend-menu__favorite img.is-active {
      display: block; }
  .legend-menu__close {
    width: 48px;
    padding: 8px;
    display: flex;
    align-items: center;
    justify-content: center; }
  @media only screen and (max-width: 46.8em) {
    .legend-menu {
      height: 40px;
      width: 300px; }
      .legend-menu .legend-menu__close {
        width: 40px; }
      .legend-menu .legend-menu__legend {
        padding: 0; } }

.legend-list__header {
  padding-bottom: 8px;
  font-size: 14px;
  font-weight: 700; }

.legend-list__item {
  display: flex;
  align-items: baseline;
  padding: 4px 0; }
  .legend-list__item .color {
    padding-right: 8px; }
  .legend-list__item .textbox .state {
    font-weight: 600;
    font-size: 12px; }
  .legend-list__item .textbox .description {
    font-size: 10px;
    color: #8c96a9; }

.list__item {
  display: flex;
  align-items: center;
  padding: 8px 0;
  border-bottom: 1px solid #e9ebef; }
  .list__item:hover {
    background-color: rgba(235, 237, 238, 0.3); }
  .list__item.is-active {
    background-color: rgba(235, 237, 238, 0.3); }
    .list__item.is-active .item__icon-ok {
      display: flex; }

.list__header-item {
  display: none;
  align-items: center;
  padding: 8px 0;
  border-bottom: 1px solid #e9ebef;
  background-color: #0e8041; }

.list__scrollable {
  height: calc(100vh - 229px); }

.list__with-headers .list__header-item {
  display: flex; }

.water-list {
  font-size: 14px; }
  .water-list__item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid #e9ebef; }
    .water-list__item:first-child {
      border-top: 1px solid #e9ebef; }
  .water-list__desc {
    font-size: 12px;
    color: #8c96a9; }
  .water-list__name {
    font-weight: 600; }
  .water-list__value {
    color: #8c96a9; }

.pelud-list__item {
  padding: 8px 16px;
  border-bottom: 2px solid #e9ebef; }

.pelud-list__header {
  padding: 8px 16px;
  font-weight: 700;
  font-size: 12px;
  border-bottom: 2px solid #e9ebef;
  display: flex;
  align-items: center;
  justify-content: space-between; }

.temp-list {
  font-size: 14px; }
  .temp-list__item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid #e9ebef; }
    .temp-list__item:first-child {
      border-top: 1px solid #e9ebef; }
  .temp-list__name {
    font-weight: 600; }
  .temp-list__value {
    color: #8c96a9; }

.link-list {
  font-size: 14px;
  list-style-type: circle;
  padding-left: 16px; }
  .link-list__item a {
    color: #525455; }
  .link-list__item:hover a {
    text-decoration: underline;
    color: #0e8041; }

.text-box .text-header {
  padding-bottom: 8px;
  font-size: 14px;
  font-weight: 700; }

.smiley-section {
  display: flex;
  align-items: center; }
  .smiley-section__row1 {
    padding: 8px; }
  .smiley-section__row2 {
    padding: 8px; }
  .smiley-section__info {
    font-size: 12px;
    font-weight: 600; }
  .smiley-section__status {
    font-size: 18px;
    padding: 8px 0;
    font-weight: 700; }
  .smiley-section__date {
    font-size: 12px;
    color: #8c96a9; }

.graph-box__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 8px;
  margin-bottom: 16px;
  border-bottom: 1px solid #e9ebef;
  margin-left: -16px;
  margin-right: -16px;
  padding-left: 16px;
  padding-right: 16px; }
  @media only screen and (max-width: 29.75em) {
    .graph-box__header {
      flex-direction: column;
      align-items: flex-start; } }

.graph-box__title {
  font-size: 14px;
  font-weight: 700; }

.graph-box__select {
  margin-bottom: 8px; }

.graph-box__graph {
  display: none; }
  .graph-box__graph.is-visable {
    display: block; }

.graph-box__buttons {
  display: flex; }

.graph-box__col1 {
  padding-right: 16px; }

.ground-element {
  display: flex;
  flex-direction: column;
  align-items: center; }
  .ground-element__name {
    font-size: 32px;
    font-weight: 600;
    padding-top: 16px;
    padding-bottom: 8px; }
  .ground-element__circle {
    padding: 16px;
    display: flex;
    flex-direction: column;
    align-items: center; }
  .ground-element__label {
    font-size: 12px;
    color: #8c96a9; }
  .ground-element__date {
    font-size: 18px;
    font-weight: 700;
    padding-bottom: 16px; }
  .ground-element__unit {
    font-weight: 600; }

.air-element {
  display: flex;
  flex-direction: column;
  align-items: center; }
  .air-element__name {
    font-size: 32px;
    font-weight: 600;
    padding-top: 16px;
    padding-bottom: 8px; }
  .air-element__box {
    display: flex;
    align-items: center;
    justify-content: space-around; }
  .air-element__circle {
    padding: 16px;
    display: flex;
    flex-direction: column;
    align-items: center; }
  .air-element__label {
    font-size: 12px;
    color: #8c96a9; }
  .air-element__date {
    font-size: 18px;
    font-weight: 700;
    padding-bottom: 16px; }
  .air-element__unit {
    font-weight: 600;
    font-size: 14px; }

.admin-menu-item {
  width: 100%;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  background-color: transparent;
  transition-duration: 0.5s;
  transition-timing-function: ease-in-out;
  opacity: 0.7; }
  .admin-menu-item__text {
    color: white;
    padding: 8px;
    padding-left: 16px;
    font-size: 18px;
    font-weight: 600; }
  .admin-menu-item__iconbox {
    width: 88px;
    display: flex;
    justify-content: center;
    align-items: center; }
  .admin-menu-item__icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white; }
  .admin-menu-item.is-active {
    opacity: 1; }
    .admin-menu-item.is-active .admin-menu-item__icon {
      background-color: #007D96; }

.admin__menu.is-active .admin-menu-item.is-active {
  background-color: #007D96; }

.admin-tabs {
  padding-top: 8px;
  padding-bottom: 8px;
  font-size: 14px;
  font-weight: 600; }
  .admin-tabs__item {
    display: inline; }
  .admin-tabs--centered {
    display: flex;
    justify-content: center; }
  .admin-tabs--big {
    font-size: 16px; }

.admin-details__header {
  display: flex;
  align-items: center;
  padding: 16px;
  border-bottom: 1px solid #e9ebef; }
  .admin-details__header--grey {
    background-color: rgba(235, 237, 238, 0.3) !important; }

.admin-details__header-simple {
  display: flex;
  align-items: center;
  padding: 24px 16px;
  border-bottom: 1px solid #e9ebef;
  background-color: rgba(235, 237, 238, 0.3);
  font-size: 18px;
  font-weight: 700;
  line-height: 32px; }

.admin-details__text {
  display: flex;
  align-items: center; }

.admin-details__settings {
  padding: 16px; }

.admin-details__settings-title {
  font-size: 18px;
  font-weight: 700; }

.admin-details__settings-section {
  margin: 0 16px; }

.admin-details__settings-checkboxes {
  margin-top: 16px; }

.admin-details__settings-subtitle {
  font-size: 14px;
  font-weight: 400;
  color: #9B9B9B; }

.admin-details__title {
  font-size: 18px;
  padding-left: 16px;
  font-weight: 600;
  flex-basis: calc(100% - 64px); }
  .admin-details__title--grey {
    margin-top: 8px;
    margin-bottom: 8px;
    font-weight: 700 !important; }

.admin-details__item {
  display: flex;
  align-items: center;
  padding: 16px;
  font-size: 13px;
  color: #69758B; }

.admin-details__list {
  height: calc(100% - 151px); }

.admin-details__notification {
  margin: 0 16px;
  border-top: 1px solid #e9ebef;
  border-bottom: 1px solid #e9ebef; }

.admin-details__notification-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 0; }

.togglebox__row1 {
  display: flex;
  align-items: center;
  justify-content: space-between; }

.togglebox__label {
  font-weight: 600; }

.togglebox__row2 {
  font-size: 14px;
  color: #8c96a9;
  line-height: 1; }

.header-admin__text {
  flex-basis: calc(100% - 80px);
  padding-left: 16px; }

.header-admin__title {
  font-size: 16px;
  font-weight: 700; }

.header-admin__subtitle {
  color: #69758B;
  font-size: 13px;
  font-weight: 700; }

.admin-input {
  display: flex;
  align-items: center;
  padding: 16px;
  border-bottom: 1px solid #e9ebef; }
  .admin-input__text {
    font-weight: 700;
    margin-right: 16px;
    flex: 0 0 auto; }
  .admin-input__input {
    flex: 1 0 auto;
    margin-right: 16px;
    position: relative; }
  .admin-input__input-field {
    margin: 0;
    font-size: 14px;
    line-height: 22px;
    padding: 4px 56px 4px 16px;
    color: #007D96;
    font-weight: 500;
    border-radius: 4px;
    border: 1px solid #007D96; }
    .admin-input__input-field:focus {
      /*outline: -webkit-focus-ring-color auto 5px; 
            outline-color: $border-light; */
      outline: none;
      border-color: #007D96; }
  .admin-input__input-label {
    position: absolute;
    top: 4px;
    right: 8px;
    color: rgba(188, 197, 212, 0.705);
    font-weight: 500;
    font-size: 14px; }

.admin-history__header {
  font-size: 14px;
  padding: 16px;
  font-weight: 600;
  line-height: 1; }

.admin-history__filters {
  padding: 0 16px 16px 16px;
  max-width: 40%; }

.admin-history__table {
  width: 100%;
  background-color: white;
  border: none;
  height: calc(100% - 338px); }
  .admin-history__table tbody {
    height: calc(100% - 30px); }
  .admin-history__table th {
    padding: 8px;
    display: flex;
    align-items: center; }
  .admin-history__table td {
    padding: 16px 8px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    cursor: default; }
  .admin-history__table th, .admin-history__table td {
    border: none;
    flex: 1 1 33%; }

.admin-history__table-head {
  color: #8c96a9;
  font-weight: 600;
  border-bottom: 1px solid #e9ebef;
  display: flex;
  align-items: center;
  font-size: 13px;
  line-height: 1; }

.admin-history__table-row {
  font-weight: 600;
  display: flex;
  align-items: center;
  font-size: 13px;
  line-height: 1; }

.admin-actions {
  padding: 24px 16px;
  border-bottom: 1px solid #e9ebef;
  display: flex;
  justify-content: space-between; }
  .admin-actions button {
    line-height: 0.9; }

.admin-filters {
  display: flex; }
  .admin-filters__item {
    padding: 0 8px;
    position: relative; }
    .admin-filters__item:first-child {
      padding: 0 8px 0 0; }

.prilog {
  border: 1px solid #e9ebef;
  border-radius: 4px;
  padding: 16px;
  display: flex; }
  .prilog__col1 {
    width: 56px; }
    .prilog__col1 i {
      width: 40px;
      height: 40px;
      color: #007D96; }
  .prilog__col2 {
    width: calc(100% - 40px); }
  .prilog__name {
    font-size: 16px;
    font-weight: 700; }
  .prilog__info {
    font-size: 14px;
    font-weight: 600;
    color: #8c96a9; }
  .prilog__details {
    margin: 8px 0; }
  .prilog__line {
    width: 100%;
    height: 1px;
    border-top: 1px solid #e9ebef;
    margin: 8px 0; }
  .prilog__actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #8c96a9;
    font-weight: 600; }
    .prilog__actions--reverse {
      flex-direction: row-reverse; }
  .prilog__left {
    display: flex;
    list-style: none; }
    .prilog__left--reverse {
      flex-direction: row-reverse; }
    .prilog__left li {
      margin-right: 16px;
      cursor: pointer; }
      .prilog__left li.green {
        color: #007D96; }
      .prilog__left li.red {
        color: #FF5A5F; }
  .prilog__right {
    display: flex;
    list-style: none; }
    .prilog__right li {
      margin-right: 16px;
      cursor: pointer; }
      .prilog__right li.green {
        color: #007D96; }
      .prilog__right li.red {
        color: #FF5A5F; }

.obavijest {
  border: 1px solid #e9ebef;
  border-radius: 4px;
  padding: 16px; }
  .obavijest__status {
    display: flex;
    justify-content: flex-end;
    line-height: 1;
    color: #8c96a9;
    font-size: 14px;
    font-weight: 600; }
  .obavijest__name {
    font-size: 16px;
    font-weight: 700; }
  .obavijest__info {
    font-size: 14px;
    font-weight: 600;
    color: #8c96a9; }
  .obavijest__details {
    margin: 8px 0; }
  .obavijest__line {
    width: 100%;
    height: 1px;
    border-top: 1px solid #e9ebef;
    margin: 8px 0; }
  .obavijest__actions {
    display: flex;
    align-items: center; }
    .obavijest__actions button {
      margin-right: 16px;
      line-height: 0.9; }
  .obavijest.is-active {
    border-color: #007D96; }
    .obavijest.is-active .obavijest__status {
      color: #007D96; }

.pagination__prev {
  display: flex;
  cursor: pointer; }
  .pagination__prev:hover {
    color: #525455; }

.pagination__next {
  display: flex;
  cursor: pointer; }
  .pagination__next:hover {
    color: #525455; }

.table-pagination {
  height: 30px;
  border: 1px solid rgba(188, 197, 212, 0.705);
  border-radius: 2px;
  color: #007D96;
  font-size: 12px;
  font-weight: 700;
  margin: 1%;
  display: flex;
  align-items: center; }
  .table-pagination__previous {
    width: 30px;
    height: 100%;
    border-right: 1px solid rgba(188, 197, 212, 0.705);
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer; }
  .table-pagination__next {
    width: 30px;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer; }
  .table-pagination__button {
    width: 35px;
    height: 100%;
    border-right: 1px solid rgba(188, 197, 212, 0.705);
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer; }
  .table-pagination .disabled {
    color: rgba(188, 197, 212, 0.705);
    cursor: auto; }
  .table-pagination .current {
    color: white;
    background-color: #007D96; }

.infobox {
  display: flex;
  align-items: center; }
  .infobox__content {
    font-size: 14px;
    padding: 0 8px 8px 8px;
    border-bottom: 1px solid #e9ebef; }
  .infobox__title {
    font-weight: 700; }
  .infobox__pagination {
    color: #8c96a9;
    flex-basis: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: default;
    opacity: 0.5; }
    .infobox__pagination span {
      width: 25px;
      height: 25px;
      border-radius: 50%;
      border: 1px solid #e9ebef;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer; }
  .infobox__pagination-info {
    text-align: center;
    font-size: 12px;
    color: #8c96a9;
    padding-top: 4px; }

.thumbnail {
  display: flex;
  flex-wrap: wrap; }
  .thumbnail__item {
    padding: 4px 8px;
    cursor: pointer; }
    .thumbnail__item img {
      border: 1px solid #ddd;
      border-radius: 4px;
      padding: 4px;
      width: 120px;
      height: 80px; }
    .thumbnail__item img:hover {
      box-shadow: 0 0 2px 1px rgba(0, 140, 186, 0.5); }

/*@include b('details'){
    height: 100vh;    
    width: 30%;
    display: flex;  
    transition: transform 500ms,-webkit-transform 500ms;      
    position: absolute; 
    right: 0;
    //overflow: hidden;

    &.is-active{
        transform: translate(calc(100% - 64px),0);
    }
    
    @include e('box'){
        //width: 420px;        
        background-color:  $pallete-primary-bg;
        box-shadow: 0 0 8px 0 rgba(0,0,0,0.2); 
        margin-left: $pad;     
        
        width: 100%;
    }
       
    @include e('icons'){
        padding-top: $pad-triple;
        padding-bottom: $pad-triple;
        background-color:  transparent;
        width: 64px;    
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        
        .top{

        }
        .bottom{

        }
    }
}*/
.parameter-table {
  padding: 8px; }

section .icon-text-row {
  margin-bottom: 16px; }

.element-table {
  padding-right: 8px; }
  .element-table:last-child {
    padding-right: 0; }

.element-table2 {
  width: 100%;
  border: none; }
  .element-table2 th {
    padding: 4px;
    cursor: default; }
  .element-table2 td {
    cursor: default; }
  .element-table2 th, .element-table2 td {
    border: none; }
  .element-table2__head {
    width: 100%;
    color: #8c96a9;
    font-weight: 600;
    border-bottom: 2px solid #e9ebef;
    display: flex;
    align-items: center;
    font-size: 14px; }
  .element-table2__head-item1 {
    flex-basis: 50%; }
  .element-table2__head-item2 {
    flex-basis: 35%;
    display: flex;
    justify-content: flex-end; }
  .element-table2__head-item3 {
    flex-basis: 15%;
    display: flex;
    justify-content: flex-end; }
  .element-table2__row {
    padding: 4px 0;
    font-weight: 600;
    border-bottom: 1px solid #e9ebef;
    display: flex;
    align-items: center;
    font-size: 14px; }
  .element-table2__row-item1 {
    flex-basis: 50%;
    max-width: 50%;
    display: flex; }
  .element-table2__row-item-name {
    display: flex;
    align-items: center;
    padding: 0 8px;
    line-height: 1.3; }
  .element-table2__row-item2 {
    flex-basis: 35%;
    max-width: 35%;
    display: flex;
    justify-content: flex-end; }
  .element-table2__row-item3 {
    flex-basis: 15%;
    max-width: 15%;
    display: flex;
    justify-content: flex-end; }

.left-menu {
  background-color: white;
  box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.2);
  height: 100vh; }
  .left-menu__tabs {
    text-align: center; }
  .left-menu__input {
    padding: 8px;
    padding-top: 0px; }

.chart-with-legend {
  display: flex; }
  .chart-with-legend__row1 {
    padding: 16px;
    display: flex;
    flex-direction: column;
    align-items: center; }
  .chart-with-legend__row2 {
    padding: 16px;
    padding-left: 24px; }
  .chart-with-legend__chart {
    width: 150px;
    height: 150px; }
  .chart-with-legend__date-label {
    font-size: 12px;
    color: #8c96a9; }
  .chart-with-legend__date {
    font-size: 14px;
    font-weight: 600; }

.admin-menu__header {
  display: flex;
  align-items: center;
  justify-content: space-between; }

.admin-menu__title {
  color: white;
  padding: 8px;
  padding-left: 16px;
  font-size: 24px;
  font-weight: 700; }

.admin-menu__logo {
  width: 88px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 16px; }
  .admin-menu__logo span {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center; }
  .admin-menu__logo img {
    width: 48px;
    height: auto;
    margin-right: 4px; }

.admin-menu__list li {
  padding: 16px 0; }

.admin-menu__action {
  position: absolute;
  bottom: 0;
  right: 0;
  color: white;
  padding: 8px;
  font-size: 18px;
  font-weight: 600;
  cursor: pointer; }
  .admin-menu__action:hover {
    font-weight: 700; }
  .admin-menu__action .menu-open {
    display: flex;
    align-items: center; }
  .admin-menu__action .menu-close {
    display: none;
    align-items: center; }

.admin-header {
  height: 100%;
  width: 100%;
  margin: 0;
  padding: 8px 16px 0 16px;
  background-color: white;
  border-bottom: 1px solid rgba(188, 197, 212, 0.705);
  display: flex;
  align-items: center;
  justify-content: space-between; }
  .admin-header__col1 {
    display: block; }
  .admin-header__col2 {
    display: flex;
    width: 384px;
    justify-content: flex-end; }
    .admin-header__col2--no-width {
      width: auto !important; }
  .admin-header__subtitle {
    font-size: 14px;
    color: #9B9B9B;
    font-weight: 500; }
  .admin-header__titlebox {
    display: flex;
    align-items: baseline;
    padding-bottom: 16px; }
    .admin-header__titlebox--no-padding {
      padding-bottom: 0; }
  .admin-header__title {
    font-size: 24px;
    font-weight: 700; }
  .admin-header__link {
    padding-left: 8px;
    font-size: 16px;
    color: #007D96;
    cursor: pointer; }
  .admin-header__subtitle {
    font-size: 16px;
    color: #8c96a9;
    margin-bottom: 16px; }

.prilozi-details {
  padding: 16px; }
  .prilozi-details__item {
    padding: 8px 0; }

.korisnik-details__list {
  padding: 16px; }

.korisnik-details__header {
  font-size: 18px;
  font-weight: 700; }

.korisnik-details__item {
  padding: 8px 0; }

.prilozi {
  list-style: none;
  margin: 16px; }
  .prilozi > li {
    padding: 16px 0; }

.obavijesti {
  list-style: none;
  margin: 16px; }
  .obavijesti > li {
    padding: 16px 0; }

.korisnici {
  margin: 24px 16px; }
  .korisnici__row {
    display: flex;
    width: 100%;
    margin-bottom: 16px; }
  .korisnici__col {
    margin-right: 16px;
    flex-basis: 50%; }
    .korisnici__col:last-child {
      margin-right: 0; }
  .korisnici__table {
    width: 100%;
    background-color: white;
    border: none; }
    .korisnici__table th {
      padding: 8px;
      display: flex;
      align-items: center;
      cursor: pointer; }
    .korisnici__table td {
      padding: 16px 8px;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
      cursor: default; }
    .korisnici__table th, .korisnici__table td {
      border: none; }
  .korisnici__head {
    color: #8c96a9;
    font-weight: 600;
    border-bottom: 1px solid #e9ebef;
    display: flex;
    align-items: center;
    font-size: 14px; }
  .korisnici__head-item1 {
    flex-basis: 15%; }
  .korisnici__head-item2 {
    flex-basis: 20%; }
  .korisnici__head-item3 {
    flex-basis: 15%; }
  .korisnici__head-item4 {
    flex-basis: 20%; }
  .korisnici__head-item5 {
    flex-basis: 20%; }
  .korisnici__head-item6 {
    flex-basis: 10%;
    display: flex;
    justify-content: center; }
  .korisnici__table-row {
    font-weight: 600;
    border-bottom: 1px solid #e9ebef;
    display: flex;
    align-items: center; }
  .korisnici__row-item1 {
    flex-basis: 15%;
    max-width: 15%; }
  .korisnici__row-item2 {
    flex-basis: 20%;
    max-width: 20%; }
  .korisnici__row-item3 {
    flex-basis: 15%;
    max-width: 15%; }
  .korisnici__row-item4 {
    flex-basis: 20%;
    max-width: 20%; }
  .korisnici__row-item5 {
    flex-basis: 20%;
    max-width: 20%; }
  .korisnici__row-item6 {
    flex-basis: 10%;
    max-width: 10%;
    display: flex;
    align-items: center;
    justify-content: center; }
    .korisnici__row-item6 i {
      margin: 0 8px;
      cursor: pointer; }

.postaje {
  margin: 24px 16px; }
  .postaje__table {
    width: 100%;
    background-color: white;
    border: none; }
    .postaje__table th {
      padding: 8px;
      display: flex;
      align-items: center;
      cursor: pointer; }
    .postaje__table td {
      padding: 16px 8px;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
      cursor: default; }
    .postaje__table th, .postaje__table td {
      border: none; }
  .postaje__head {
    color: #8c96a9;
    font-weight: 600;
    border-bottom: 1px solid #e9ebef;
    display: flex;
    align-items: center;
    font-size: 14px; }
  .postaje__head-item1 {
    flex-basis: 18%; }
  .postaje__head-item2 {
    flex-basis: 19%; }
  .postaje__head-item3 {
    flex-basis: 8%; }
  .postaje__head-item4 {
    flex-basis: 7%; }
  .postaje__head-item5 {
    flex-basis: 18%; }
  .postaje__head-item6 {
    flex-basis: 14%; }
  .postaje__head-item7 {
    flex-basis: 8%; }
  .postaje__head-item8 {
    flex-basis: 8%;
    display: flex;
    justify-content: center; }
  .postaje__table-row {
    font-weight: 600;
    border-bottom: 1px solid #e9ebef;
    display: flex;
    align-items: center; }
  .postaje__row-item1 {
    flex-basis: 18%;
    max-width: 18%; }
  .postaje__row-item2 {
    flex-basis: 19%;
    max-width: 19%; }
  .postaje__row-item3 {
    flex-basis: 8%;
    max-width: 8%; }
  .postaje__row-item4 {
    flex-basis: 7%;
    max-width: 7%; }
  .postaje__row-item5 {
    flex-basis: 18%;
    max-width: 18%; }
  .postaje__row-item6 {
    flex-basis: 14%;
    max-width: 14%; }
  .postaje__row-item7 {
    flex-basis: 8%;
    max-width: 8%; }
  .postaje__row-item8 {
    flex-basis: 8%;
    max-width: 8%;
    display: flex;
    align-items: center;
    justify-content: center; }
    .postaje__row-item8 i {
      margin: 0 8px;
      cursor: pointer; }

.new-station {
  margin: 24px 16px; }
  .new-station__row {
    display: flex;
    width: 100%;
    margin-bottom: 16px; }
  .new-station__col-50 {
    margin-right: 16px;
    flex-basis: 50%; }
    .new-station__col-50:last-child {
      margin-right: 0; }
  .new-station__col-20 {
    margin-right: 16px;
    flex-basis: 20%; }
    .new-station__col-20:last-child {
      margin-right: 0; }

.station {
  margin: 16px; }
  .station__row {
    display: flex;
    width: 100%;
    margin-bottom: 16px; }
  .station__col {
    margin-right: 16px;
    flex-basis: 50%; }
    .station__col:last-child {
      margin-right: 0; }
  .station__table {
    width: 100%;
    background-color: white;
    border: none; }
    .station__table th {
      padding: 8px;
      display: flex;
      align-items: center;
      cursor: pointer; }
    .station__table td {
      padding: 16px 8px;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
      cursor: default; }
    .station__table th, .station__table td {
      border: none; }
  .station__head {
    color: #8c96a9;
    font-weight: 600;
    border-bottom: 1px solid #e9ebef;
    display: flex;
    align-items: center;
    font-size: 14px; }
  .station__head-item1 {
    flex-basis: 5%; }
  .station__head-item2 {
    flex-basis: 25%; }
  .station__head-item3 {
    flex-basis: 18%; }
  .station__head-item4 {
    flex-basis: 22%; }
  .station__head-item5 {
    flex-basis: 20%; }
  .station__head-item6 {
    flex-basis: 10%;
    display: flex;
    justify-content: center; }
  .station__table-row {
    font-weight: 600;
    border-bottom: 1px solid #e9ebef;
    display: flex;
    align-items: center; }
  .station__row-item1 {
    flex-basis: 5%;
    max-width: 5%; }
  .station__row-item2 {
    flex-basis: 25%;
    max-width: 25%; }
  .station__row-item3 {
    flex-basis: 18%;
    max-width: 18%; }
  .station__row-item4 {
    flex-basis: 22%;
    max-width: 22%; }
  .station__row-item5 {
    flex-basis: 20%;
    max-width: 20%; }
  .station__row-item6 {
    flex-basis: 10%;
    max-width: 10%;
    display: flex;
    align-items: center;
    justify-content: center; }
    .station__row-item6 i {
      margin: 0 8px;
      cursor: pointer; }

.izvjestaji {
  list-style: none;
  margin: 16px; }
  .izvjestaji__box {
    width: 100%;
    margin-bottom: 16px;
    padding: 8px;
    border: 1px solid #e9ebef;
    -webkit-box-shadow: 0px 0px 6px 0px rgba(188, 197, 212, 0.705);
    -moz-box-shadow: 0px 0px 6px 0px rgba(188, 197, 212, 0.705);
    box-shadow: 0px 0px 6px 0px rgba(188, 197, 212, 0.705); }
  .izvjestaji__header {
    width: 100%;
    height: 45px;
    padding: 0 8px;
    margin-bottom: 8px;
    border-bottom: 1px solid #e9ebef;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 18px;
    font-weight: 600;
    color: #8c96a9; }
  .izvjestaji__content {
    width: 100%;
    padding: 8px; }
  .izvjestaji__table {
    width: 100%;
    background-color: white;
    border: none; }
    .izvjestaji__table th {
      padding: 8px;
      display: flex;
      align-items: center;
      cursor: pointer; }
    .izvjestaji__table td {
      padding: 16px 8px;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
      cursor: default; }
    .izvjestaji__table th, .izvjestaji__table td {
      border: none;
      flex: 1 1 10%; }
  .izvjestaji__head {
    color: #8c96a9;
    font-weight: 600;
    border-bottom: 1px solid #e9ebef;
    display: flex;
    align-items: center;
    font-size: 14px; }
  .izvjestaji__table-row {
    font-weight: 600;
    border-bottom: 1px solid #e9ebef;
    display: flex;
    align-items: center; }

.export-data {
  padding: 16px; }
  .export-data__table {
    width: 100%;
    background-color: white;
    border: none; }
    .export-data__table th {
      padding: 8px;
      display: flex;
      align-items: center;
      cursor: pointer; }
    .export-data__table td {
      padding: 16px 8px;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
      cursor: default; }
    .export-data__table th, .export-data__table td {
      border: none;
      flex: 1 1 10%; }
  .export-data__head {
    color: #8c96a9;
    font-weight: 600;
    border-bottom: 1px solid #e9ebef;
    display: flex;
    align-items: center;
    font-size: 14px; }
  .export-data__table-row {
    font-weight: 600;
    border-bottom: 1px solid #e9ebef;
    display: flex;
    align-items: center; }

.console {
  width: 100%;
  padding: 16px; }
  .console__header {
    font-weight: 700;
    font-size: 18px;
    height: 55px;
    display: flex;
    align-items: center; }
  .console__box {
    background-color: white;
    border: 1px solid #e9ebef;
    border-radius: 2px;
    height: calc(100vh - 185px); }
    .console__box--border-top-green {
      border-top: 4px solid #007D96;
      height: initial; }
  .console__tabs {
    border-bottom: 1px solid #e9ebef;
    padding: 8px 8px 0 8px; }
  .console__content {
    padding: 16px; }
  .console__table {
    width: 100%;
    background-color: white;
    border: none; }
    .console__table th {
      padding: 8px;
      display: flex;
      align-items: center;
      cursor: pointer; }
    .console__table td {
      padding: 16px 8px;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
      cursor: default; }
    .console__table th, .console__table td {
      border: none; }
  .console__head {
    color: #8c96a9;
    font-weight: 600;
    border-bottom: 1px solid #e9ebef;
    display: flex;
    align-items: center;
    font-size: 14px; }
  .console__head-item1 {
    flex: 2 1 20%; }
  .console__head-item2 {
    flex: 2 1 20%; }
  .console__head-item3 {
    flex: 1 2 60%; }
  .console__table-row {
    font-weight: 600;
    border-bottom: 1px solid #e9ebef;
    display: flex;
    align-items: center; }
  .console__row-item1 {
    flex: 2 1 20%; }
  .console__row-item2 {
    flex: 2 1 20%; }
  .console__row-item3 {
    flex: 1 2 60%;
    display: flex;
    justify-content: flex-end; }
    .console__row-item3 i {
      margin: 0 8px;
      cursor: pointer; }
  .console__notification-header {
    display: flex;
    align-items: center;
    color: #007D96;
    font-size: 18px;
    font-weight: 600;
    margin: 8px 0; }
    .console__notification-header i {
      margin-right: 16px; }
  .console__notification-name {
    font-weight: 600; }
  .console__notification-time {
    color: #8c96a9;
    line-height: 1;
    font-size: 12px; }
    .console__notification-time span {
      color: #007D96; }
  .console__notification-info {
    color: #8c96a9;
    margin: 16px 0; }
  .console__notification-buttons {
    display: flex;
    justify-content: flex-end; }
    .console__notification-buttons button {
      margin-left: 8px; }
  .console__notification-footer {
    border-top: 1px solid #e9ebef;
    color: #8c96a9;
    font-weight: 600;
    margin-top: 16px;
    display: flex;
    justify-content: space-between;
    padding-top: 16px; }
  .console__notification-action span {
    cursor: pointer;
    margin-left: 8px; }
    .console__notification-action span:hover {
      color: #007D96; }

.pagination-row {
  width: 100%;
  height: 55px;
  display: flex;
  align-items: center;
  justify-content: center; }

.modal {
  display: none; }

.modal.is-active {
  position: fixed;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  z-index: 1000;
  left: 0;
  top: 0; }

.modal.is-active .modal__content {
  width: 45%;
  max-height: 90%;
  overflow-y: auto;
  background-color: white;
  z-index: 1001;
  border-radius: 4px; }
  @media only screen and (max-width: 46.8em) {
    .modal.is-active .modal__content {
      width: 95%; } }
  .modal.is-active .modal__content .title-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 55px;
    padding: 0 16px;
    background-color: rgba(188, 197, 212, 0.705); }
  .modal.is-active .modal__content .title-row .title {
    font-size: 18px;
    font-weight: 700; }
  .modal.is-active .modal__content .title-row i {
    font-size: 26px;
    font-weight: 600;
    cursor: pointer;
    color: #8c96a9; }
  .modal.is-active .modal__content .button-row {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    height: 65px;
    border-top: 1px solid #e9ebef;
    padding: 0 16px; }
  .modal.is-active .modal__content .button-row button {
    margin-left: 16px; }
  .modal.is-active .modal__content .main {
    padding: 16px; }
  .modal.is-active .modal__content .row {
    display: flex;
    margin: 16px 0; }
    .modal.is-active .modal__content .row label {
      flex: 1 1 15%;
      min-width: 100px;
      display: flex;
      justify-content: flex-end;
      margin-right: 16px;
      line-height: 32px; }
    .modal.is-active .modal__content .row .input {
      flex: 1 2 85%; }
      .modal.is-active .modal__content .row .input .selectbox {
        width: 200px; }
      .modal.is-active .modal__content .row .input .info {
        color: #8c96a9;
        font-size: 14px; }

.modal.is-active .modal__content.big {
  width: 70%;
  height: 95%; }

.modal.is-active .modal__content.small {
  width: 35%; }

.modal.is-active .modal__content.wide {
  width: 70%; }

.login-panel {
  padding: 24px;
  width: 100%;
  background-color: #FFFFFF;
  box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.3);
  height: 100vh;
  border-top-color: #007D96;
  border-top-style: solid;
  border-top-width: 15px;
  border-bottom-color: #007D96;
  border-bottom-style: solid;
  border-bottom-width: 15px;
  position: relative; }
  .login-panel__header {
    margin-top: 48px;
    margin-bottom: 48px; }
  .login-panel__help {
    padding-top: 16px;
    font-size: 14px;
    text-align: center; }
  .login-panel__help-link {
    color: #007D96;
    cursor: pointer; }
  .login-panel__copyright {
    color: white;
    font-size: 12px;
    text-align: center;
    margin-top: 16px;
    position: absolute;
    bottom: -17px;
    right: 10px; }

.login-panel__content .btn__with-text-inverted {
  height: 40px;
  margin-top: 16px;
  background-color: #007D96;
  border-color: #007D96; }
  .login-panel__content .btn__with-text-inverted:hover {
    cursor: pointer;
    color: #007D96;
    background-color: white; }

.cookie-alert {
  background-color: white;
  box-shadow: 0 2px 10px 0 rgba(0, 0, 0, 0.5);
  display: flex;
  padding: 16px;
  align-items: center;
  justify-content: space-between;
  margin-right: 8px;
  z-index: 10; }

.cookie-alert .medium-text {
  flex-basis: 100%;
  margin-right: 8px; }

.cookie-alert img {
  margin-right: 8px; }

@media only screen and (max-width: 480px) {
  .cookie-alert {
    flex-direction: column; }
  .cookie-alert img {
    display: none; }
  .cookie-alert .medium-text {
    margin-bottom: 16px;
    margin-right: 0px; }
  .cookie-alert .btn__with-text {
    width: 100%; } }

.social-media {
  background-color: white;
  box-shadow: 0 1px 5px 0 rgba(0, 0, 0, 0.5);
  display: flex;
  padding: 32px;
  margin-right: 8px;
  display: flex;
  flex-direction: column; }
  .social-media__header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 24px; }
  .social-media__content {
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    justify-content: space-between; }
  .social-media__title {
    margin-bottom: 8px; }
  .social-media__buttons {
    display: flex;
    align-items: center;
    justify-content: flex-end; }

/*.social-media__header .btn__close {
    margin-top: -12px;
    margin-right: -3px;
}*/
.location-details {
  width: 100%;
  background-color: #FFFFFF;
  box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.3);
  height: 100vh;
  /*  @include e('list') {
        padding: $pad;
        padding-top: $pad-double;        
    }*/ }
  .location-details__text {
    border-top-style: solid;
    border-top-width: 1px;
    border-top-color: rgba(188, 197, 212, 0.705);
    padding-top: 16px;
    margin-left: 16px;
    margin-right: 16px; }
  .location-details__tables {
    padding: 8px;
    padding-top: 16px;
    display: flex;
    flex-direction: row;
    justify-content: space-between; }
    .location-details__tables article {
      width: 48%; }
  .location-details__tab {
    padding-top: 8px; }
  .location-details__box-wide {
    width: 100%;
    padding-top: 16px; }
  .location-details__box {
    padding: 16px; }
    .location-details__box--gray {
      background-color: rgba(235, 237, 238, 0.3); }
    .location-details__box--bordered {
      border-top: 1px solid #e9ebef;
      border-bottom: 1px solid #e9ebef; }
  .location-details__table {
    display: flex;
    justify-content: space-between; }
    .location-details__table section {
      width: 100%; }
  .location-details__content {
    width: 100%;
    height: calc(100vh - 131px);
    overflow-y: auto; }
    .location-details__content.with-pagination {
      height: calc(100vh - 184px); }
    .location-details__content--without-tabs {
      height: calc(100vh - 96px); }
      .location-details__content--without-tabs.with-pagination {
        height: calc(100vh - 149px); }
  .location-details__img-meteo {
    display: flex;
    justify-content: center;
    align-items: center; }
    .location-details__img-meteo img {
      width: 50%; }
  .location-details__button {
    display: flex;
    justify-content: center;
    align-items: center; }
  .location-details__pagination {
    display: flex;
    justify-content: space-between;
    padding: 16px;
    line-height: 20px;
    font-size: 14px;
    border-top: 1px solid #e9ebef;
    color: #8c96a9; }
  @media only screen and (max-width: 46.8em) {
    .location-details {
      height: 100%; }
      .location-details .location-details__content {
        height: calc(100% - 123px); }
        .location-details .location-details__content.with-pagination {
          height: calc(100% - 178px); }
      .location-details .location-details__content--without-tabs {
        height: calc(100% - 88px); }
        .location-details .location-details__content--without-tabs.with-pagination {
          height: calc(100% - 141px); } }

.menu {
  height: 100vh;
  width: inherit;
  display: flex;
  transition: transform 500ms,-webkit-transform 500ms;
  left: -328px;
  position: absolute;
  z-index: 5; }
  .menu.is-active {
    transform: translate(328px, 0); }
    .menu.is-active .btn--main .inactive {
      display: none; }
    .menu.is-active .btn--main .active {
      display: block; }
  .menu.is-selected filtertoolbar {
    z-index: 2; }
  .menu.is-selected .menu__legend {
    opacity: 1; }
  .menu.is-selected .icons__item .btn--secondary {
    opacity: 0; }
  .menu__box {
    width: 320px;
    background-color: white;
    box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.2);
    margin-right: 8px;
    z-index: 5; }
  .menu__iconbox {
    padding: 24px 0;
    background-color: transparent;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 0;
    z-index: 5; }
    @media only screen and (max-width: 46.8em) {
      .menu__iconbox {
        padding: 8px 0;
        height: fit-content; } }
  .menu__top {
    display: flex; }
    @media only screen and (max-width: 46.8em) {
      .menu__top {
        width: 56px; } }
  .menu__bottom {
    margin-left: 8px;
    width: 184px; }
  .menu__icons {
    width: inherit;
    height: fit-content; }
  .menu__legend {
    margin: 8px;
    height: fit-content;
    display: block;
    opacity: 0;
    transition: opacity 0.4s linear; }
    @media only screen and (max-width: 46.8em) {
      .menu__legend {
        margin: 4px; } }
  .menu__overlay {
    display: none;
    position: fixed;
    height: 100%;
    width: calc(100% + 64px);
    z-index: 2;
    background: rgba(0, 0, 0, 0.8); }
  @media only screen and (max-width: 73em) {
    .menu {
      left: -288px; }
      .menu.is-active {
        transform: translate(288px, 0); }
      .menu .menu__box {
        width: 280px; } }
  @media only screen and (max-width: 46.8em) {
    .menu {
      left: calc(-100% + 56px);
      right: calc(100%); }
      .menu.is-active {
        transform: translate(100%, 0); }
        .menu.is-active .menu__overlay {
          display: block; }
      .menu .menu__box {
        width: 100%; }
      .menu .menu__bottom {
        display: none; }
      .menu .menu__icons {
        width: 56px;
        z-index: 1; } }

.admin {
  min-height: 100vh;
  width: 100%;
  margin: 0;
  display: flex; }
  .admin__content-box {
    flex: 1 1 auto;
    height: 100vh;
    display: block; }
  .admin__menu {
    flex: 0 0 300px;
    height: 100vh;
    margin-left: -212px;
    border-left: 1px solid #e9ebef;
    transition-duration: 0.5s;
    transition-timing-function: ease-in-out;
    background: linear-gradient(5.22deg, #007D96 0%, #00374E 100%);
    position: relative; }
    .admin__menu.is-active {
      margin-left: 0; }
      .admin__menu.is-active .admin-menu__action .menu-open {
        display: none; }
      .admin__menu.is-active .admin-menu__action .menu-close {
        display: flex; }
  .admin__header {
    width: 100%;
    height: 98px;
    display: block; }
  .admin__content {
    width: 100%;
    height: calc(100vh - 98px);
    display: flex;
    background-color: rgba(235, 237, 238, 0.3); }
  .admin__main-box {
    flex: 1 1 auto;
    height: inherit;
    background-color: white; }
  .admin__sidebar {
    flex: 0 0 400px;
    height: inherit;
    background-color: white;
    margin-right: -400px;
    transition-duration: 0.5s;
    transition-timing-function: ease-in-out;
    border-left: 1px solid #e9ebef; }
    .admin__sidebar.is-active {
      margin-right: 0; }
    .admin__sidebar hr {
      width: 100%;
      height: 1px;
      border-top: 1px solid #e9ebef;
      margin: 8px 0; }
  .admin__main-box-primary {
    width: 70%;
    height: inherit; }
  .admin__main-box-secondary {
    width: 30%;
    height: inherit; }

.admin-login {
  background: linear-gradient(139.05deg, #007D96 0%, #00374E 100%);
  height: 100vh;
  display: flex;
  align-items: center;
  min-height: 650px; }
  .admin-login__panel {
    z-index: 5;
    width: 400px;
    height: 80%;
    min-height: 600px;
    margin-left: 10%; }
  @media only screen and (max-width: 29.75em) {
    .admin-login .admin-login__panel {
      width: 100%;
      height: 100%;
      margin-left: 0px; }
    .admin-login .admin-login__copyright {
      color: #007D96;
      margin-bottom: 16px; } }
  @media only screen and (max-width: 50em) {
    .admin-login .admin-login__welcome {
      display: none; } }
  @media only screen and (max-width: 89em) {
    .admin-login .admin-login__square {
      width: 750px;
      height: 750px; }
    .admin-login .admin-login__welcome {
      left: 3%;
      font-size: 16px; }
    .admin-login .admin-login__welcome--large {
      font-size: 24px; } }
  .admin-login__square {
    z-index: 1;
    background-color: white;
    position: fixed;
    -ms-transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    left: -500px;
    width: 1000px;
    height: 1000px; }
  .admin-login__welcome {
    color: white;
    position: relative;
    left: 12%;
    font-size: 32px; }
    .admin-login__welcome--large {
      font-size: 48px;
      font-weight: 800; }

.admin-login__panel .login-panel {
  width: 100%;
  height: 100%; }

.right-aside {
  position: absolute;
  right: 0; }

.app {
  min-height: 100vh;
  width: 100%;
  background-color: white;
  background-position: center;
  background-size: cover;
  display: block; }

.details {
  height: 100vh;
  width: initial;
  display: flex;
  transition: transform 500ms,-webkit-transform 500ms;
  position: absolute;
  right: -478px; }
  .details.is-active {
    transform: translate(-478px, 0); }
  .details__box {
    width: 470px;
    background-color: white;
    box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.2);
    margin-left: 8px; }
  .details__icons {
    padding-top: 24px;
    padding-bottom: 24px;
    background-color: transparent;
    width: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-end;
    height: 100%; }
    .details__icons .bottom {
      display: flex;
      flex-direction: column;
      align-items: flex-end;
      width: 64px; }
  @media only screen and (max-width: 73em) {
    .details {
      right: -378px; }
      .details.is-active {
        transform: translate(-378px, 0); }
      .details .details__box {
        width: 370px; } }
  @media only screen and (max-width: 46.8em) {
    .details {
      right: calc(-100%);
      left: calc(100%);
      top: 30%;
      height: calc(100% - 30%); }
      .details.is-active {
        transform: translate(calc(-100%), 0); }
      .details .details__box {
        height: 100%;
        width: 100%;
        margin-left: 0; }
      .details .details__icons {
        display: none; } }

.cookie-container {
  position: absolute;
  top: 24px;
  width: 70%;
  margin-left: auto;
  margin-right: auto;
  left: 0;
  right: 0;
  display: none; }
  .cookie-container.is-active {
    display: inherit; }

@media only screen and (max-width: 480px) {
  .cookie-container {
    bottom: 24px;
    top: auto;
    width: 100%;
    margin-left: 8px;
    margin-right: 8px; } }

.social-media-container {
  position: absolute;
  top: 0;
  width: 40%;
  margin: 0 auto;
  left: 0;
  right: 0;
  position: absolute;
  top: 50%;
  transform: translateY(-50%); }

@media only screen and (max-width: 66em) {
  .social-media-container {
    width: 95%; } }

.modal-overlay {
  display: none;
  position: fixed;
  z-index: 10;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: black;
  background-color: rgba(0, 0, 0, 0.7); }
  .modal-overlay.is-active {
    display: inherit; }

/*!
 * 
 *         SimpleBar.js - v2.5.0
 *         Scrollbars, simpler.
 *         https://grsmto.github.io/simplebar/
 *         
 *         Made by Adrien Grsmto from a fork by Jonathan Nicol
 *         Under MIT License
 *       
 */
[data-simplebar] {
  position: relative;
  z-index: 0;
  overflow: hidden;
  -webkit-overflow-scrolling: touch;
  /* Trigger native scrolling for mobile, if not supported, plugin is used. */ }

[data-simplebar="init"] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex; }

.simplebar-scroll-content {
  overflow-x: hidden;
  overflow-y: scroll;
  min-width: 100%;
  -webkit-box-sizing: content-box;
  box-sizing: content-box; }

.simplebar-content {
  overflow-x: scroll;
  overflow-y: hidden;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  min-height: 100%; }

.simplebar-track {
  z-index: 1;
  position: absolute;
  right: 0;
  bottom: 0;
  width: 11px; }

.simplebar-scrollbar {
  position: absolute;
  right: 2px;
  border-radius: 7px;
  min-height: 10px;
  width: 7px;
  opacity: 0;
  -webkit-transition: opacity 0.2s linear;
  transition: opacity 0.2s linear;
  background: black;
  background-clip: padding-box; }

.simplebar-track:hover .simplebar-scrollbar {
  /* When hovered, remove all transitions from drag handle */
  opacity: 0.5;
  -webkit-transition: opacity 0 linear;
  transition: opacity 0 linear; }

.simplebar-track .simplebar-scrollbar.visible {
  opacity: 0.5; }

.simplebar-track.horizontal {
  left: 0;
  width: auto;
  height: 11px; }

.simplebar-track.vertical {
  top: 0; }

.horizontal.simplebar-track .simplebar-scrollbar {
  right: auto;
  top: 2px;
  height: 7px;
  min-height: 0;
  min-width: 10px;
  width: auto; }
