/* Table of contents
––––––––––––––––––––––––––––––––––––––––––––––––––
- Plotly.js
- Grid
- Base Styles
- Typography
- Links
- Buttons
- Forms
- Lists
- Code
- Tables
- Spacing
- Utilities
- Clearing
- Media Queries
*/

/* PLotly.js
–––––––––––––––––––––––––––––––––––––––––––––––––– */
/* plotly.js's modebar's z-index is 1001 by default
 * https://github.com/plotly/plotly.js/blob/7e4d8ab164258f6bd48be56589dacd9bdd7fded2/src/css/_modebar.scss#L5
 * In case a dropdown is above the graph, the dropdown's options
 * will be rendered below the modebar
 * Increase the select option's z-index
 */

/* This was actually not quite right -
   dropdowns were overlapping each other (edited October 26)

.Select {
    z-index: 1002;
}*/


/* Grid
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.container {
  position: relative;
  width: 100%;
  max-width: 960px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box; }
.column,
.columns {
  width: 100%;
  float: left;
  box-sizing: border-box; }

/* For devices larger than 400px */
@media (min-width: 400px) {
  .container {
    width: 85%;
    padding: 0; }
}

/* For devices larger than 550px */
@media (min-width: 550px) {
  .container {
    width: 80%; }
  .column,
  .columns {
    margin-left: 4%; }
  .column:first-child,
  .columns:first-child {
    margin-left: 0; }

  .one.column,
  .one.columns                    { width: 4.66666666667%; }
  .two.columns                    { width: 13.3333333333%; }
  .three.columns                  { width: 22%;            }
  .four.columns                   { width: 30.6666666667%; }
  .five.columns                   { width: 39.3333333333%; }
  .six.columns                    { width: 48%;            }
  .seven.columns                  { width: 56.6666666667%; }
  .eight.columns                  { width: 65.3333333333%; }
  .nine.columns                   { width: 74.0%;          }
  .ten.columns                    { width: 82.6666666667%; }
  .eleven.columns                 { width: 91.3333333333%; }
  .twelve.columns                 { width: 100%; margin-left: 0; }

  .one-third.column               { width: 30.6666666667%; }
  .two-thirds.column              { width: 65.3333333333%; }

  .one-half.column                { width: 48%; }

  /* Offsets */
  .offset-by-one.column,
  .offset-by-one.columns          { margin-left: 8.66666666667%; }
  .offset-by-two.column,
  .offset-by-two.columns          { margin-left: 17.3333333333%; }
  .offset-by-three.column,
  .offset-by-three.columns        { margin-left: 26%;            }
  .offset-by-four.column,
  .offset-by-four.columns         { margin-left: 34.6666666667%; }
  .offset-by-five.column,
  .offset-by-five.columns         { margin-left: 43.3333333333%; }
  .offset-by-six.column,
  .offset-by-six.columns          { margin-left: 52%;            }
  .offset-by-seven.column,
  .offset-by-seven.columns        { margin-left: 60.6666666667%; }
  .offset-by-eight.column,
  .offset-by-eight.columns        { margin-left: 69.3333333333%; }
  .offset-by-nine.column,
  .offset-by-nine.columns         { margin-left: 78.0%;          }
  .offset-by-ten.column,
  .offset-by-ten.columns          { margin-left: 86.6666666667%; }
  .offset-by-eleven.column,
  .offset-by-eleven.columns       { margin-left: 95.3333333333%; }

  .offset-by-one-third.column,
  .offset-by-one-third.columns    { margin-left: 34.6666666667%; }
  .offset-by-two-thirds.column,
  .offset-by-two-thirds.columns   { margin-left: 69.3333333333%; }

  .offset-by-one-half.column,
  .offset-by-one-half.columns     { margin-left: 52%; }

}



/* Base Styles
–––––––––––––––––––––––––––––––––––––––––––––––––– */
/* NOTE
html is set to 62.5% so that all the REM measurements throughout Skeleton
are based on 10px sizing. So basically 1.5rem = 15px :) */

:root {
  --primary: #fff;
  --background: #151719;
  --accent: #222222;
  --special: #1DB954;

/* white
  --primary: #22252e;
  --background: #f6f8fc;
  --accent: #3a4876;
    */
}

html {
  font-size: 62.5%;
   }

body {
  background-color: var(--background);
  font-size: 1.5em; /* currently ems cause chrome bug misinterpreting rems on body element */
  line-height: 1.6;
  font-weight: 400;
  font-family: "Open Sans", "HelveticaNeue", "Helvetica Neue", Helvetica, Arial, sans-serif;
  color: var(--primary)
}

/* Typography
–––––––––––––––––––––––––––––––––––––––––––––––––– */

h1, h2, h3, h4, h5, h6 {
  margin-top: 0;
  margin-bottom: 0;
  font-weight: 300; }
h1 { font-size: 4.5rem; line-height: 1.2;  letter-spacing: -.1rem; margin-bottom: 2rem; }
h2 { font-size: 1.4rem; line-height: 1.6;  letter-spacing: 0; margin-bottom: 0.75rem; margin-top: 1.5rem; color: var(--primary); font-weight: bold; font-family: Roboto, sans-serif;}
h3 { font-size: 1.4rem; line-height: 1.6;  letter-spacing: 0; margin-bottom: 0.75rem; margin-top: 1.5rem; color: var(--primary); font-weight: bold}
h4 { font-size: 2.6rem; line-height: 1.35; letter-spacing: -.08rem; margin-bottom: 1.2rem; margin-top: 1.2rem;}
h5 { font-size: 2.2rem; line-height: 1.5;  letter-spacing: -.05rem; margin-bottom: 0.6rem; margin-top: 0.6rem;}
h6 { font-size: 1.1rem; line-height: 1;  letter-spacing: 0; margin-bottom: 0rem; margin-top: 0rem; color: var(--primary); font-weight: thin; text-transform: uppercase; padding: 10px 0px 0px 0px;}

p2 { font-size: 1.4rem; line-height: 1.6;  letter-spacing: 0; margin-bottom: 0.75rem; margin-top: 1.5rem; color: var(--primary); font-weight: bold}

/* Blockquotes
–––––––––––––––––––––––––––––––––––––––––––––––––– */
blockquote {
  border-left: 4px lightgrey solid;
  padding-left: 1rem;
  margin-top: 2rem;
  margin-bottom: 2rem;
  margin-left: 0rem;
}


/* Links
–––––––––––––––––––––––––––––––––––––––––––––––––– */
a {
  cursor: pointer;
  font-size: 12px;
  color: var(--primary);
  text-decoration: none;
  padding-top: 0px; }

a:hover {
  color: var(--primary);
  }


/* Buttons
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.button,
button,
input[type="submit"],
input[type="reset"],
input[type="button"] {
  display: inline-block;
  height: 38px;
  padding: 0 30px;
  color: var(--accent);
  text-align: center;
  font-size: 11px;
  font-weight: 600;
  line-height: 38px;
  letter-spacing: .1rem;
  text-transform: uppercase;
  text-decoration: none;
  white-space: nowrap;
  background-color: transparent;
  border-radius: 4px;
  border: 1px solid #bbb;
  cursor: pointer;
  box-sizing: border-box; }
.button:hover,
button:hover,
input[type="submit"]:hover,
input[type="reset"]:hover,
input[type="button"]:hover,
.button:focus,
button:focus,
input[type="submit"]:focus,
input[type="reset"]:focus,
input[type="button"]:focus {
  color: var(--primary);
  border-color: var(--accent);
  outline: 0; }
.button.button-primary,
button.button-primary,
input[type="submit"].button-primary,
input[type="reset"].button-primary,
input[type="button"].button-primary {
  color: var(--primary);
  background-color: var(--background);
  border-color: var(--accent); }
.button.button-primary:hover,
button.button-primary:hover,
input[type="submit"].button-primary:hover,
input[type="reset"].button-primary:hover,
input[type="button"].button-primary:hover,
.button.button-primary:focus,
button.button-primary:focus,
input[type="submit"].button-primary:focus,
input[type="reset"].button-primary:focus,
input[type="button"].button-primary:focus {
  color: var(--primary);
  background-color: var(--background);
  border-color: var(--accent); }


/* Forms
–––––––––––––––––––––––––––––––––––––––––––––––––– */
input[type="email"],
input[type="number"],
input[type="search"],
input[type="text"],
input[type="tel"],
input[type="url"],
input[type="password"],
textarea,
select {
  height: 38px;
  padding: 6px 10px; /* The 6px vertically centers text on FF, ignored by Webkit */
  background-color: var(--primary);
  border: 1px solid #D1D1D1;
  border-radius: 4px;
  box-shadow: none;
  box-sizing: border-box;
  font-family: inherit;
  font-size: inherit; /*https://stackoverflow.com/questions/6080413/why-doesnt-input-inherit-the-font-from-body*/}
/* Removes awkward default styles on some inputs for iOS */
input[type="email"],
input[type="number"],
input[type="search"],
input[type="text"],
input[type="tel"],
input[type="url"],
input[type="password"],
textarea {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none; }
textarea {
  min-height: 65px;
  padding-top: 6px;
  padding-bottom: 6px; }
input[type="email"]:focus,
input[type="number"]:focus,
input[type="search"]:focus,
input[type="text"]:focus,
input[type="tel"]:focus,
input[type="url"]:focus,
input[type="password"]:focus,
textarea:focus,
select:focus {
  border: 0px solid #33C3F0;
  outline: 0; }
label,
legend {
  display: block;
  margin-bottom: 0px; }
fieldset {
  padding: 0;
  border-width: 0; }
input[type="checkbox"],
input[type="radio"] {
  display: inline; }
label > .label-body {
  display: inline-block;
  margin-left: .5rem;
  font-weight: normal; }


/* Lists
–––––––––––––––––––––––––––––––––––––––––––––––––– */
ul {
  list-style: circle inside; }
ol {
  list-style: decimal inside; }
ol, ul {
  padding-left: 0;
  margin-top: 0; }
ul ul,
ul ol,
ol ol,
ol ul {
  margin: 1.5rem 0 1.5rem 3rem;
  font-size: 90%; }
li {
  margin-bottom: 1rem; }


/* Tables
–––––––––––––––––––––––––––––––––––––––––––––––––– */
table {
  border-collapse: collapse;
}
th:not(.CalendarDay),
td:not(.CalendarDay) {
  padding: 12px 15px;
  text-align: left;
  border-bottom: 1px solid #E1E1E1; }
th:first-child:not(.CalendarDay),
td:first-child:not(.CalendarDay) {
  padding-left: 0; }
th:last-child:not(.CalendarDay),
td:last-child:not(.CalendarDay) {
  padding-right: 0; }


/* Spacing
–––––––––––––––––––––––––––––––––––––––––––––––––– */
button,
.button {
  margin-bottom: 0rem; }
input,
textarea,
select,
fieldset {
  margin-bottom: 0rem; }
pre,
dl,
figure,
table,
form {
  margin-bottom: 0rem; }
p,
ul,
ol {
  margin-bottom: 0.75rem; }

/* Utilities
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.u-full-width {
  width: 100%;
  box-sizing: border-box; }
.u-max-full-width {
  max-width: 100%;
  box-sizing: border-box; }
.u-pull-right {
  float: right; }
.u-pull-left {
  float: left; }


/* Custom CSS for getlayer.xyz
–––––––––––––––––––––––––––––––––––––––––––––––––– */

/* Hide scrollbar */
html
{
    overflow: scroll;
    overflow-x: hidden;
}
::-webkit-scrollbar {
    width: 0;  /* Remove scrollbar space */
    background: transparent;  /* Optional: just make scrollbar invisible */
}
/* Optional: show position indicator in red */
::-webkit-scrollbar-thumb
{
    background: var(--background);
}

@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@100;300;400;500;700&display=swap');

.mapframe
{
    position: relative;
    height: 100%;
    width: 100%;
}

.maplist
{
    padding: 0px 0px 0px 8px;
    color: #b2b2b2;
    font-size: 10px;
    font-weight: thin;
    text-transform: uppercase;
    cursor: help;
}


.maptooltip
{
    background-color: black;
    z-index: 100;
    max-height: 100px;
    width: 215px;
    text-align: center;
    font-size: 1.2rem;
    padding: 8px;
    margin-bottom: 10px;
    display: inline-block;
}

.cardtitle
{
    padding-bottom: 10px;
    padding-left: 10px;
}

.card-body
{
    padding: 10px;
}

.backgroundmap
{
    position: fixed;
    padding: 0;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100vh;
    z-index: 0;
    border: none;
    background: url(https://layerheroku.s3.eu-central-1.amazonaws.com/static/menu/loading.gif) calc((100% + 325px)/2) center no-repeat;
    background-color: var(--background);
}

.rightpanel
{
    height: 100%;
    min-height: 100vh;
    z-index: 1;
    background-color: #151719;
    padding: 30px;
    border-style: solid;
    border-color: #222222;
    border-width: thin;
}

.title
{
    padding-top: 13px;
    padding-left: 17.5px;
}

/* switched shown with hidden*/

.sidebar_shown
{
   position: fixed;
   top: 0;
   left: 0px;
   bottom: 0;
   width: 280px;
   height: 100%;
   z-index: 1;
   background-color: var(--background);
   border-right-style: solid;
   border-right-color: var(--accent);
   border-right-width: 1px;
   overflow-y: scroll;
}

body
{
    margin: 0;
    background-color: var(--background);

}

.sidebar_hidden
{
   visibility:hidden;
   position: fixed;
   top: 0;
   left: 85px;
   bottom: 0;
   width: 85px;
   height: 100%;
   z-index: 1;
   background-color: var(--background);
   padding: 0rem 0rem 0rem 0.7rem;
   border-right-style: solid;
   border-right-color: var(--accent);
   border-right-width: 1px;
}

#langselect {
    right: 0px;
    bottom: 20px;
    height: 40px !important;
    width: 40px;
    background-color: black;
    z-index: 10000;
    position: fixed;
    padding-top: 8px;
    padding-bottom: 8px;
    padding-left: 8px;
    cursor: pointer;
}

#disclaimer {
    right: 0px;
    bottom: 60px;
    height: 40px !important;
    width: 40px;
    background-color: black;
    z-index: 10000;
    position: fixed;
    color: black;
    cursor: pointer;
    padding: 8px;
}

#disclaimerimage {
    filter: invert(99%) sepia(0%) saturate(3%) hue-rotate(234deg) brightness(107%) contrast(100%);
    background-image: url("https://layerheroku.s3.eu-central-1.amazonaws.com/static/icons/info.png");
    width: 24px;
    height: 24px;
}

#downloadbutton {
    right: 0px;
    bottom: 100px;
    height: 40px !important;
    width: 40px;
    background-color: black;
    z-index: 10000;
    position: fixed;
    color: black;
    cursor: pointer;
    padding: 8px;
}

#downloadimage {
    filter: invert(99%) sepia(0%) saturate(3%) hue-rotate(234deg) brightness(107%) contrast(100%);
    background-image: url("https://layerheroku.s3.eu-central-1.amazonaws.com/static/icons/download.png");
    width: 24px;
    height: 24px;
}

/* Error Toast Container */

.error_toast_container {
    position: fixed;
    top: 10px;
    right: 50px;
}

.error_toast_header {
    font-family: Helvetica, sans-serif !important;
    font-size: 11px !important;
    color: #ffffff !important;
    background-color: #ffffff00 !important;
    border: none !important;
    padding: 0px !important;
    padding-right: 5px !important;

}

.error_toast {
    padding: 8px;
    padding-bottom: 48px;
    width: 300px;
    height: 100%;
    border: 0.5px;
    border-color: #000000;
    border-style: solid;
    border-radius: 3px;
    background-color: #d26666d4;
}

.error_toast_element {
    padding-top: 10px;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 10px;
    float: left;
    color: white;
}

.mainsidebar
{
   display: flex;
   justify-content: space-between;
   flex-direction: column;
   align-content: center;
   align-items: center;
   position: fixed;
   top: 0;
   left: 0px;
   bottom: 0;
   width: 85px;
   height: 100%;
   z-index: 3;
   background-color: var(--background);
   border-right-style: solid;
   border-right-color: var(--accent);
   border-right-width: 1px;
}

.accordionlist
{
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: row;
}

.form-control:focus {
    box-shadow: none;
}

#input
{
    width: 100%;
    height: 100%;
    background: var(--background);
    color: var(--primary);
    border: 0px;
    border-radius: 0px;
    padding-bottom: 0px;
    padding-top: 0px;
    padding-left: 20.5px;
    font-size: 10px;
    text-transform: uppercase;
    font-family: 'Roboto', sans-serif;
}

.form-control
{
    width: 100%;
    height: 100%;
    background: black;
    border: 0px;
    border-radius: 0px;
    font-size: 12px;
    font-family: 'Roboto', sans-serif;
}

.accordion-button
{
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
    padding: 1.5rem 2rem 1.25rem 2rem;
    font-size: 1.15rem;
    color: var(--primary);
    text-align: left;
    background-color: var(--background);
    border: 0;
    border-radius: 0;
    overflow-anchor: none;
    transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out,border-radius .15s ease;

}

.accordion-button:not(.collapsed) {
  color: var(--primary);
  background-color: var(--background);
}

.accordion-button:link, .accordion-button:visited, .accordion-button:hover, .accordion-button:active  {
  background-color: var(--primary);
    color:var(--background);
    text-decoration: none;
     border: hidden;
       border-color: var(--background);
    box-shadow: 0px;


}

.accordion-button:focus {
  z-index: 3;
  outline: 0;
}

.accordion-body {
    padding-right: 1.25rem;
}

.accordion-item:last-of-type .accordion-button.collapsed {
    border-bottom-right-radius: 0px;
    border-bottom-left-radius: 0px;
}

.accordion-item:last-of-type .accordion-collapse {
    border-bottom-right-radius: 0rem;
    border-bottom-left-radius: 0rem;
    background-color: var(--background);
}
.accordion-flush .accordion-collapse {
    border-width: 0;
    padding: 0px;
}

.accordion-button:not(.collapsed) {
    color: var(--primary);
    background-color: var(--background);
    box-shadow: none;

}

.accordion-button:not(.collapsed)::after {
    background-image: none;
    transform: rotate(-180deg);
}

.accordion-button:focus {
    z-index: 3;
    border-color: none;
    outline: 0;
    box-shadow: none;
}

.accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23212529'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
    transform: rotate(-180deg);
    filter: invert(62%) sepia(0%) saturate(19%) hue-rotate(138deg) brightness(99%) contrast(92%);
}

.accordion-button::after {
    flex-shrink: 0;
    width: 1.25rem;
    height: 1.25rem;
    margin-left: auto;
    content: "";
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23212529'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-size: 1.25rem;
    transition: transform .2s ease-in-out;
    filter: invert(62%) sepia(0%) saturate(19%) hue-rotate(138deg) brightness(99%) contrast(92%);
}

.form-switch .form-check-input {
    cursor: pointer;
    width: 1.5em;
    margin-left: -2.8em;
    background-position: left center;
    border-radius: 2em;
    transition: background-position .15s ease-in-out;
}

.form-check-input:focus {
    outline: 0;
    box-shadow: none;
}

.form-switch .form-check-input:focus {
    background-image: ("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%23fff'/%3e%3c/svg%3e");
}

.form-check-input:disabled {
    cursor: not-allowed;
    pointer-events: auto;
    filter: none;
    opacity: .5;
}
.nav {
    display: flex;
    padding-left: 0;
    margin-bottom: 0;
    list-style: none;
    flex-direction: column;
}

.form-switch {
    padding-left: 35px;
    display: flex;
    flex-direction: row;
}

.collapse:not(.show) {
    display: none;
}

.collapsing{
    overflow: hidden;
}

.sidebaricon_shown
{
   max-width: 50px;
}

.sidebarlogo_hidden
{
    cursor: pointer;
    width: 90%;
    height: 60px;
    background-repeat: no-repeat;
    background-image: url(https://layerheroku.s3.eu-central-1.amazonaws.com/static/menu/logo.svg);
    background-size: contain;
    background-position: center;
    margin-top: 10px;
}

.sidebarlogo_hidden:hover {
    width: 80%;
    height: 60px;
    background-repeat: no-repeat;
    background-image: url(https://layerheroku.s3.eu-central-1.amazonaws.com/static/menu/logo.svg);
    background-size: contain;
    background-position: center;
    padding-top: 15px;
}

.tourmaskstyle {
    color: black;
    opacity: 0.4;
}

.tourmaskstyle {
    color: black;
    border-color: white;
    border-width: 2px;
    opacity: 0.4;
}

.boPkKw {
    display: flex !important;
    margin-top: 24px !important;
    -webkit-box-align: center !important;
    align-content: flex-start !important;
    justify-content: space-between !important;
    align-items: center !important;
}

.bdDYJz {
    position: absolute !important;
    top: 0px !important;
    right: 10px !important;
    width: 10px !important;
}

/*
.donUht {
	height: 0px !important;
	padding-bottom: 36px !important;
}

.sc-bdnylx .iaYyjm .sc-dlnjPT .jzVfKn {
    height: 0px !important;
}

.eYKKBA {
	height: 0px !important;
	padding-bottom: 36px !important;
}
*/

#btn_sidebar {
    cursor: pointer;
}

.iconcollapse {
    height: 1px;
}

.iconcollapse:hover {
    height: 1px;
}

.icon:hover {
    filter: invert(50%) sepia(86%) saturate(453%) hue-rotate(88deg) brightness(97%) contrast(87%);
}

.greyicon {
    filter: invert(62%) sepia(0%) saturate(19%) hue-rotate(138deg) brightness(99%) contrast(92%);
    cursor: not-allowed;
}

input:disabled {
    cursor: not-allowed;
}

#btn_sidebar_login {
   width: 100%;
   cursor: pointer;
   filter: opacity(50%);
   border-radius: 50%;

}

#btn_sidebar_login:hover {
   filter: opacity(100%);
   border-radius: 50%;
}

#btn_sidebar_collapse {
    cursor: pointer;
    padding-bottom: 2px;
}


.sidebarlogin
{
   display: flex;
   bottom: 20px;
   padding: 25px 0 25px 0px;
   width: 40px;
}


.sidebaricondiv
{
    justify-content: center;
    align-content: center;
    align-self: center;

}

.sidebaricongroup
{
    display: flex;
    height: 50%;
    flex-direction: column;
    justify-content: space-between;
}

.sidebartext_shown
{
    width: 100%;
    align-self: center;
    transition: visibility 1s, opacity 0.5s linear;
}

.sidebartext_hidden
{
    visibility:hidden;
}

.icontooltip
{
    font-size: 1rem;
    z-index: 9;
    position: absolute;
    padding-bottom: 5px;
    font-weight: thin;
    text-transform: uppercase;
}

.content_hidden
{
    margin-left: 85px;
    margin-right: 0rem;
    padding: 0rem 0rem 0rem 3rem;
}

.content_shown
{
    margin-left: calc(85px + 280px);
    margin-right: 0rem;
    padding: 0rem 0rem 0rem 3rem;
}

.newslink
{
    font-family: 'Roboto', sans-serif;
    text-decoration: none;
    font-size: 1.2rem;
    color: var(--primary);
    text-align: right;
    line-height: 1.2;
}

.newslink:hover
{
    font-weight: bold;
    /*color: var(--special);*/
}


.newsdate
{
    font-family: 'Roboto', sans-serif;
    font-size: 0.8rem;
    color: var(--primary);
    padding-bottom: 10px;
    margin: 0px;
}

.tweetdate
{
    font-family: 'Roboto', sans-serif;
    font-size: 0.8rem;
    color: var(--primary);
    padding-bottom: 10px;
    padding-top: 5px;
    margin: 0px;
}

.tweettext
{
    font-family: 'Roboto', sans-serif;
    text-decoration: none;
    font-size: 1.2rem;
    color: var(--primary);
    text-align: left;
    margin: 0;
    line-height: 17px;
    display: block;
}

.tweettext:hover
{
    text-decoration: underline;
}

.searchbarrow
{
    display: flex;
    flex-direction: row;
    align-items: center;
    padding-right: 10px;
    height: 10px;
}

.searchbar {
    padding-left: 20px;
    padding-right: 20px;
    padding-top: 22px;
    background-color: var(--background);
}

.Select-control {
    border-radius: 0px;
    border: 1px solid #242424;
}

.Select-placeholder {
    background-color: var(--background) !important;
    font-size: 10px !important;
    text-transform: uppercase !important;
    white-space:nowrap !important;

}

.Select-noresults {
    background-color: var(--background) !important;
    font-size: 10px !important;
    text-transform: uppercase !important;
    white-space:nowrap !important;
    border-radius: 0px !important;
    border: 1px solid #242424 !important;
}

.has-value.Select--single>.Select-control .Select-value .Select-value-label, .has-value.is-pseudo-focused.Select--single>.Select-control .Select-value .Select-value-label {
    color: #fff;
    text-overflow: clip !important;
    white-space:nowrap !important;
}

.Select--single>.Select-control .Select-value, .Select-placeholder {
    background-color: var(--background) !important;
    font-size: 10px !important;
    text-transform: uppercase !important;
    text-overflow: clip !important;
    white-space:nowrap !important;
}

.Select-arrow-zone {
    background: var(--background) !important;
}

.VirtualSelectGrid {
  z-index: 1;
}

.VirtualizedSelectOption {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0 .5rem;
  background-color: var(--background) !important;
  font-size: 11px !important;
  text-transform: uppercase !important;
  color: #fff;
  text-overflow: clip !important;
  white-space:nowrap !important;

}
.VirtualizedSelectFocusedOption {
  background-color: #fff !important;
  text-overflow: ellipsis !important;
  color: black;
  font-weight: bold !important;
  white-space:nowrap !important;
}


/* Dashboard Loading */

._dash-loading {
  margin: auto;
  color: transparent;
  width: 0;
  height: 0;
  text-align: center;
}

._dash-loading::after {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100vh;
    z-index: 0;
    border: none;
    background: url(https://layerheroku.s3.eu-central-1.amazonaws.com/static/menu/loading.gif) calc((100% + 325px)/2) center no-repeat;
    background-color: transparent;
    pointer-events: none;
}

/* alternative is 58% center */
._dash-loading-callback {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100vh;
    z-index: 10000;
    border: none;
    background: url(https://layerheroku.s3.eu-central-1.amazonaws.com/static/menu/loading.gif) calc((100% + 325px)/2) center no-repeat;
    background-color: transparent;
    pointer-events: none;
}

blockquote.twitter-tweet {
  display: inline-block;
  font-family: "Helvetica Neue", Roboto, "Segoe UI", Calibri, sans-serif;
  font-size: 12px;
  font-weight: bold;
  line-height: 16px;
  border-color: #eee #ddd #bbb;
  border-radius: 5px;
  border-style: solid;
  border-width: 1px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.15);
  margin: 10px 5px;
  padding: 0 16px 16px 16px;
  max-width: 468px;
}

blockquote.twitter-tweet p {
  font-size: 16px;
  font-weight: normal;
  line-height: 20px;
}

blockquote.twitter-tweet a {
  color: inherit;
  font-weight: normal;
  text-decoration: none;
  outline: 0 none;
}

blockquote.twitter-tweet a:hover,
blockquote.twitter-tweet a:focus {
  text-decoration: underline;
}

input:-internal-autofill-selected {
    appearance: menulist-button;
    background-image: none !important;
    background-color: -internal-light-dark(black, white) !important;
    color: -internal-light-dark(black, white) !important;
}

/* LEGEND STYLE */

.legendheader {
    font-family: Helvetica, sans-serif !important;
    font-size: 11px !important;
    color: #3b3b3b !important;
    background-color: #ffffff00 !important;
    border: none !important;
    padding: 0px !important;
    padding-right: 5px !important;
}

.legendbody {
    padding: 0px !important;
}

.legendtoast {
    padding: 8px;
    padding-bottom: 28px;
    width: 400px;
    height: 100%;
    border: 0.5px;
    border-color: #ececec;
    border-style: solid;
    border-radius: 3px;
    background-color: #f5f5f5d4;
}

.toast-header .btn-close {
    font-size: 8px !important;
}

.legendelement {
    padding-top: 10px;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 10px;
    float: left;
    color: darkgrey;
}

.legendcontainer {
    height: 100vh;
    display: flex;
}

.legendmap {
    margin-left: 295px;
    position: relative;
    display: flex;
    flex-direction: column-reverse;
    pointer-events: none;
}

.leaflet-control-colorbar {
    position: absolute;
    top: 35px;
    left: 355px;
    z-index: 1000;
    background-color: #ffffff80;
    padding: 10px;
    color: black;
    font-size: 10px;
}

/* Custom CSS dash-leaflet-------------------------------------------------- */

.leaflet-touch .leaflet-bar {
    border: 0px !important;
}

.leaflet-top .leaflet-control {
margin-top: 0px !important;
}

.leaflet-right .leaflet-control {
margin-right: 0px !important;
}

.leaflet-bottom .leaflet-control {
margin-bottom: 0px !important;
}

.leaflet-control-measure {
border-radius: 0px !important;
box-shadow: none !important;
}

.leaflet-bar {
border-radius: 0px !important;
box-shadow: none !important;

}

.leaflet-bar a:first-child {
border-radius: 0px !important;
}

.leaflet-bar a:last-child {
border-radius: 0px !important;
}

.leaflet-control-zoom-in, .leaflet-control-zoom-out {
font: bold 18px 'Lucida Console', Monaco, monospace !important;
text-indent: 1px !important;
padding-top: 5px !important;
}

.leaflet-draw-toolbar .leaflet-draw-draw-polyline {
background-position: 6px 2px !important;
}

.leaflet-draw-toolbar .leaflet-draw-draw-polygon {
background-position: -23px 2px !important;
}

.leaflet-draw-toolbar .leaflet-draw-draw-rectangle {
background-position: -54px 2px !important;
}

.leaflet-draw-toolbar .leaflet-draw-draw-circle {
background-position: -84px 2px !important;
}

.leaflet-draw-toolbar .leaflet-draw-draw-marker {
background-position: -114.5px 2px !important;
}

.leaflet-draw-toolbar .leaflet-draw-draw-circlemarker {
background-position: -265px 2px !important;
}

.leaflet-draw-toolbar .leaflet-draw-edit-edit.leaflet-disabled {
background-position: -144px 2px !important;
}

.leaflet-draw-toolbar .leaflet-draw-edit-edit {
background-position: -144px 2px !important;
}

.leaflet-draw-toolbar .leaflet-draw-edit-remove {
background-position: -174px 2px !important;
height: 40px;
}

.leaflet-draw-toolbar .leaflet-draw-edit-remove.leaflet-disabled {
background-position: -174px 2px !important;
height: 40px;
}

.leaflet-control-measure .leaflet-control-measure-interaction {
padding: 10px 12px !important;
background-color: black !important;
color: white !important;
}

.leaflet-control-measure a, .leaflet-measure-resultpopup a {
color: #ffffff !important;
text-decoration: none !important;
}

.leaflet-draw-actions a {
background-color: #000000 !important;
}

.leaflet-draw-actions a:hover {
background-color: #000000 !important;
}

.leaflet-popup-content-wrapper, .leaflet-popup-tip {
background: black !important;
color: #fff !important;
box-shadow: none !important;
}

.leaflet-popup-content-wrapper {
padding: 1px !important;
text-align: left !important;
border-radius: 5px !important;
}

.leaflet-draw-toolbar {
margin-top: 0px !important;
}

.leaflet-draw-toolbar a {
background-image: url(https://layerheroku.s3.eu-central-1.amazonaws.com/static/icons/spritesheet.png) !important;
background-image: linear-gradient(transparent,transparent),url(https://layerheroku.s3.eu-central-1.amazonaws.com/static/icons/spritesheet.svg) !important;
}

.leaflet-retina .leaflet-draw-toolbar a {
background-image: url(https://layerheroku.s3.eu-central-1.amazonaws.com/static/icons/spritesheet.png) !important;
background-image: linear-gradient(transparent,transparent),url(https://layerheroku.s3.eu-central-1.amazonaws.com/static/icons/spritesheet.svg) !important;
}

.leaflet-bar a.leaflet-disabled {
background-color: #151719 !important;
}

/*

.leaflet-left .leaflet-control-scale {
margin-left: 325px;
}

.leaflet-control-scale-line {
border: 1px solid #000;
border-top: none;
}

.leaflet-control-scale-line:not(:first-child) {
border-top: 1px solid #000;
border-top: none;
margin-top: 0px;
}

*/

.leaflet-control-layers {
background: #151719 !important;
font-size: 10px !important;
font-weight: thin !important;
text-transform: uppercase !important;
color: #fff !important;
border-radius: 0px !important;
}

.leaflet-control-layers-toggle {
background-image: url(https://layerheroku.s3.eu-central-1.amazonaws.com/static/icons/logo.svg) !important;
width: 36px !important;
height: 36px !important;
}

.leaflet-retina .leaflet-control-layers-toggle {
background-image: url(https://layerheroku.s3.eu-central-1.amazonaws.com/static/icons/logo.svg) !important;
width: 36px !important;
height: 36px !important;
}

.leaflet-control-measure .leaflet-control-measure-toggle, .leaflet-control-measure .leaflet-control-measure-toggle:hover {
width: 40px !important;
height: 35px !important;
border-radius: 0px !important;
background-color: #151719 !important;
background-image: url(https://layerheroku.s3.eu-central-1.amazonaws.com/static/icons/rulers.png) !important;
}

.leaflet-retina	.leaflet-control-measure .leaflet-control-measure-toggle, .leaflet-control-measure .leaflet-control-measure-toggle:hover {
width: 40px !important;
height: 35px !important;
border-radius: 0px !important;
background-color: #151719 !important;
background-image: url(https://layerheroku.s3.eu-central-1.amazonaws.com/static/icons/rulers.png) !important;
}

/* OPACITY TOOLTIP

.tooltip-inner {
    max-width: 200px;
    padding: 0.2rem 0.55rem;
    color: #fff;
    text-align: center;
    background-color: #fff;
    border-radius: 0.25rem;
} This also changes ?info tooltip

*/


.opacityslider {
    padding: 0px !important;
}

.rc-slider-track {
  background-color: #0D6EFD;
}

.rc-slider-dot-active {
  border-color: #0D6EFD;
  border: solid 2px #0D6EFD;
}

.rc-slider-handle {
  background-color: #0D6EFD;
  border-color: #0D6EFD;
}

.rc-slider-handle:hover {
  border-color: #0D6EFD;
}

.rc-slider-handle-active:active {
  border-color: #0D6EFD;
}

.opacitytooltip {
    width: 130px;
    height: 17px;
}

.rc-slider {
    height: 14px;
    padding: 5px 0px;
}

/* MAP LEGEND */
.maplegend .legend-title {
    text-align: left;
    margin-bottom: 5px;
    font-weight: bold;
    font-size: 90%;
}

.maplegend .legend-scale ul {
    margin: 0;
    padding: 0;
    float: left;
    list-style: none;
}

.maplegend .legend-scale ul li {
    font-size: 80%;
    list-style: none;
    margin-left: 0;
    line-height: 18px;
    margin-bottom: 2px;
}

.maplegend ul.legend-labels li span {
    display: block;
    float: left;
    height: 10px;
    width: 24px;
    margin-right: 10px;
    margin-top: 4px;
    margin-left: 0;
}

.maplegend .legend-source {
    font-size: 80%;
    color: #777;
    clear: both;
}

.maplegend a {
    color: #777;
}


/* Styling of Map controls */

.leaflet-top .leaflet-control {
margin-top: 0px !important;
}
}

.leaflet-right .leaflet-control {
margin-right: 0px !important;
}

.leaflet-bottom .leaflet-control {
margin-bottom: 0px !important;
}

.leaflet-control-measure {
border-radius: 0px !important;
box-shadow: none !important;
}

.leaflet-bar {
border-radius: 0px !important;
box-shadow: none !important;

}

.leaflet-bar a:first-child {
border-radius: 0px !important;
}

.leaflet-bar a:last-child {
border-radius: 0px !important;
}

.leaflet-control-zoom-in, .leaflet-control-zoom-out {
font: bold 18px 'Lucida Console', Monaco, monospace !important;
text-indent: 1px !important;
padding-top: 5px !important;
}

.leaflet-bar a, .leaflet-bar a:hover {
border-bottom: 0px !important;
background-color: #151719 !important;
color: #fff !important;
width: 40px !important;
height: 35px !important;
}

.leaflet-draw-toolbar .leaflet-draw-draw-polyline {
background-position: 6px 2px !important;
}

.leaflet-draw-toolbar .leaflet-draw-draw-polygon {
background-position: -23px 2px !important;
}

.leaflet-draw-toolbar .leaflet-draw-draw-rectangle {
background-position: -54px 2px !important;
}

.leaflet-draw-toolbar .leaflet-draw-draw-circle {
background-position: -84px 2px !important;
}

.leaflet-draw-toolbar .leaflet-draw-draw-marker {
background-position: -114.5px 2px !important;
}

.leaflet-draw-toolbar .leaflet-draw-draw-circlemarker {
background-position: -265px 2px !important;
}

.leaflet-draw-toolbar .leaflet-draw-edit-edit.leaflet-disabled {
background-position: -144px 2px !important;
}

.leaflet-draw-toolbar .leaflet-draw-edit-edit {
background-position: -144px 2px !important;
}

.leaflet-draw-toolbar .leaflet-draw-edit-remove {
background-position: -174px 2px !important;
height: 40px !important;
}

.leaflet-draw-toolbar .leaflet-draw-edit-remove.leaflet-disabled {
background-position: -174px 2px !important;
height: 40px !important;
}

.leaflet-control-measure .leaflet-control-measure-interaction {
padding: 10px 12px !important;
background-color: black !important;
color: white !important;
}

.leaflet-control-measure a, .leaflet-measure-resultpopup a {
color: #ffffff !important;
text-decoration: none !important;
}

.leaflet-draw-actions a {
background-color: #000000 !important;
}

.leaflet-draw-actions a:hover {
background-color: #000000 !important;
}

.leaflet-popup-content-wrapper, .leaflet-popup-tip {
background: black !important;
color: #fff !important;
box-shadow: none !important;
}

.leaflet-popup-content-wrapper {
padding: 1px !important;
text-align: left !important;
border-radius: 5px !important;
}

.leaflet-draw-toolbar {
margin-top: 0px !important;
}

.leaflet-draw-toolbar a {
background-image: url(https://layerheroku.s3.eu-central-1.amazonaws.com/static/icons/spritesheet.png) !important;
background-image: linear-gradient(transparent,transparent),url(https://layerheroku.s3.eu-central-1.amazonaws.com/static/icons/spritesheet.svg) !important;
}

.leaflet-retina .leaflet-draw-toolbar a {
background-image: url(https://layerheroku.s3.eu-central-1.amazonaws.com/static/icons/spritesheet.png) !important;
background-image: linear-gradient(transparent,transparent),url(https://layerheroku.s3.eu-central-1.amazonaws.com/static/icons/spritesheet.svg) !important;
}

.fullscreen-icon {
background-size: 30px 30px;
}

.leaflet-touch .fullscreen-icon {
background-position: 6px 0px;
}

.leaflet-touch .fullscreen-icon.leaflet-fullscreen-on {
    background-position: 6px 0px;
}

.leaflet-retina .fullscreen-icon {
background-image: url(https://layerheroku.s3.eu-central-1.amazonaws.com/static/icons/icon-fullscreen.png) !important;
}

.fullscreen-icon .leaflet-control-zoom-fullscreen {
background-image: url(https://layerheroku.s3.eu-central-1.amazonaws.com/static/icons/icon-fullscreen.png) !important;
}

.leaflet-control-zoom-fullscreen {
background-image: url(https://layerheroku.s3.eu-central-1.amazonaws.com/static/icons/icon-fullscreen.png) !important;
}

.leaflet-control-zoom-fullscreen, .fullscreen-icon {
padding-left: 3px !important;
padding-bottom: 2px !important;
}

.leaflet-bar a.leaflet-disabled {
background-color: #151719 !important;
}

.leaflet-left {
left: 273px !important;
}

/*

.leaflet-left .leaflet-control-scale {
margin-left: 325px;
}

.leaflet-control-scale-line {
border: 1px solid #000;
border-top: none;
}

.leaflet-control-scale-line:not(:first-child) {
border-top: 1px solid #000;
border-top: none;
margin-top: 0px;
}

*/

.leaflet-control-layers {
background: #151719 !important;
font-size: 10px !important;
font-weight: thin !important;
text-transform: uppercase !important;
color: #fff !important;
border-radius: 0px !important;
}

.leaflet-control-layers-toggle {
background-image: url(https://layerheroku.s3.eu-central-1.amazonaws.com/static/icons/logo.svg) !important !important;
width: 36px !important;
height: 36px !important;
}

.leaflet-retina .leaflet-control-layers-toggle {
background-image: url(https://layerheroku.s3.eu-central-1.amazonaws.com/static/icons/logo.svg) !important;
width: 36px !important;
height: 36px !important;
}

.leaflet-control-measure .leaflet-control-measure-toggle, .leaflet-control-measure .leaflet-control-measure-toggle:hover {
width: 40px !important;
height: 35px !important;
border-radius: 0px !important;
background-color: #151719 !important;
background-image: url(https://layerheroku.s3.eu-central-1.amazonaws.com/static/icons/rulers.png) !important;
}

.leaflet-retina	.leaflet-control-measure .leaflet-control-measure-toggle, .leaflet-control-measure .leaflet-control-measure-toggle:hover {
width: 40px !important;
height: 35px !important;
border-radius: 0px !important;
background-color: #151719 !important;
background-image: url(https://layerheroku.s3.eu-central-1.amazonaws.com/static/icons/rulers.png) !important;
}

.leaflet-control-attribution a {
text-decoration: none !important;
font-size: 7px;
color: black !important;
}

/* MAP LEGEND */
.maplegend .legend-title {
    text-align: left;
    margin-bottom: 5px;
    font-weight: bold;
    font-size: 90%;
}

.maplegend .legend-scale ul {
    margin: 0;
    padding: 0;
    float: left;
    list-style: none;
}

.maplegend .legend-scale ul li {
    font-size: 80%;
    list-style: none;
    margin-left: 0;
    line-height: 18px;
    margin-bottom: 2px;
}

.maplegend ul.legend-labels li span {
    display: block;
    float: left;
    height: 10px;
    width: 24px;
    margin-right: 10px;
    margin-top: 4px;
    margin-left: 0;
}

.maplegend .legend-source {
    font-size: 80%;
    color: #777;
    clear: both;
}

.maplegend a {
    color: #777;
}


/* Clearing
–––––––––––––––––––––––––––––––––––––––––––––––––– */

/* Self Clearing Goodness */
.container:after,
.row:after,
.u-cf {
  content: "";
  display: table;
  clear: both; }


/* Media Queries
–––––––––––––––––––––––––––––––––––––––––––––––––– */
/*
Note: The best way to structure the use of media queries is to create the queries
near the relevant code. For example, if you wanted to change the styles for buttons
on small devices, paste the mobile query code up in the buttons section and style it
there.
*/


/* Larger than mobile */
@media (min-width: 400px) {}

/* Larger than phablet (also point when grid becomes active) */
@media (min-width: 550px) {}

/* Larger than tablet */
@media (min-width: 750px) {}

/* Larger than desktop */
@media (min-width: 1000px) {}

/* Larger than Desktop HD */
@media (min-width: 1200px) {}