@charset "UTF-8";
/* Wetterdashboard: Basis, Komponenten und responsive Anpassungen.
 * Bootstrap-4-Geometrie bleibt für die bestehende Darstellung erhalten.
 * IE-spezifische Fallbacks und unbenutzte Vorlagenregeln sind entfernt.
 */
/*!
 * Bootstrap v4.0.0 (https://getbootstrap.com)
 * Copyright 2011-2018 The Bootstrap Authors
 * Copyright 2011-2018 Twitter, Inc.
 * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
 */
:root {
  --blue: #467fcf;
  --indigo: #6574cd;
  --azure: #45aaf2;
  --purple: #a55eea;
  --pink: #f66d9b;
  --red: #cd201f;
  --orange: #fd9644;
  --yellow: #f1c40f;
  --green: #5eba00;
  --teal: #2bcbba;
  --cyan: #17a2b8;
  --white: #fff;
  --gray: #868e96;
  --gray-dark: #343a40;
  --lime: #7bd235;
  --primary: #467fcf;
  --secondary: #868e96;
  --success: #5eba00;
  --info: #45aaf2;
  --warning: #f1c40f;
  --danger: #cd201f;
  --light: #f8f9fa;
  --dark: #343a40;
  --breakpoint-xs: 0;
  --breakpoint-sm: 576px;
  --breakpoint-md: 768px;
  --breakpoint-lg: 992px;
  --breakpoint-xl: 1280px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  font-family: "Open Sans", -apple-system, BlinkMacSystemFont, Arial, sans-serif;
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;

  -webkit-tap-highlight-color: transparent;
}

footer {
  display: block;
}

body {
  margin: 0;
  font-family: "Open Sans", -apple-system, BlinkMacSystemFont, Arial, sans-serif;
  font-size: 0.9375rem;
  font-weight: 400;
  line-height: 1.5;
  color: #495057;
  text-align: left;
  background-color: #e9eef6;  /* org: F0F3F7; alt: e6e8eb; gemini_hell: f0f4f8; gemini_dkl: e9eef6 */
}

h1, h3 {
  margin-top: 0;
  margin-bottom: 0.66em;
}

ul {
  margin-top: 0;
  margin-bottom: 1rem;
}

small {
  font-size: 80%;
}

a {
  color: #467fcf;
  text-decoration: none;
  background-color: transparent;
  -webkit-text-decoration-skip: objects;
}

a:hover {
  color: #295a9f;
  text-decoration: underline;
}

a:not([href]):not([tabindex]) {
  color: inherit;
  text-decoration: none;
}

a:not([href]):not([tabindex]):hover, a:not([href]):not([tabindex]):focus {
  color: inherit;
  text-decoration: none;
}

a:not([href]):not([tabindex]):focus {
  outline: 0;
}

img {
  vertical-align: middle;
  border-style: none;
}

button {
  border-radius: 0;
}

button:focus {
  outline: 1px dotted;
  outline: 5px auto -webkit-focus-ring-color;
}

button {
  margin: 0;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;

  overflow: visible;

  text-transform: none;
}

button,
html [type="button"] {
  -webkit-appearance: button;
  appearance: button;
}

button::-moz-focus-inner,
[type="button"]::-moz-focus-inner {
  padding: 0;
  border-style: none;
}

::-webkit-file-upload-button {
  font: inherit;
  -webkit-appearance: button;
}

h1, h3, .h1 {
  margin-bottom: 0.66em;
  font-family: inherit;
  font-weight: 700;
  line-height: 1.1;
  color: #666;
}

h3 {
  font-size: 1.5rem;
}

small {
  font-size: 87.5%;
  font-weight: 400;
}

.list-unstyled {
  padding-left: 0;
  list-style: none;
}

.container {
  width: 100%;
  max-width: 360px;
  padding-right: 0.75rem;
  padding-left: 0.75rem;
  margin-right: auto;
  margin-left: auto;
}

@media (min-width: 576px) {
  .container {
    max-width: 540px;
  }
}

@media (min-width: 768px) {
  .container {
    max-width: 720px;
  }
}

@media (min-width: 992px) {
  .container {
    max-width: 960px;
  }
}

@media (min-width: 1280px) {
  .container {
    max-width: 1200px;
  }
}

.row {

  display: flex;

  flex-wrap: wrap;
  margin-right: -0.75rem;
  margin-left: -0.75rem;
}

.col-6, .col-12, .col-sm-4, .col-md-3, .col-lg-2, .col-lg-4, .col-lg-6, .col-lg-8, .col-lg-12, .col-lg {
  position: relative;
  width: 100%;
  min-height: 1px;
  padding-right: 0.75rem;
  padding-left: 0.75rem;
}

.col-6 {

  flex: 0 0 50%;
  max-width: 50%;
}

.col-12 {

  flex: 0 0 100%;
  max-width: 100%;
}

@media (min-width: 576px) {
  .col-sm-4 {

    flex: 0 0 33.33333333%;
    max-width: 33.33333333%;
  }
}

@media (min-width: 768px) {
  .col-md-3 {

    flex: 0 0 25%;
    max-width: 25%;
  }
}

@media (min-width: 992px) {
  .col-lg {

    flex-basis: 0;

    flex-grow: 1;
    max-width: 100%;
  }
  .col-lg-2 {

    flex: 0 0 16.66666667%;
    max-width: 16.66666667%;
  }
  .col-lg-4 {

    flex: 0 0 33.33333333%;
    max-width: 33.33333333%;
  }
  .col-lg-6 {

    flex: 0 0 50%;
    max-width: 50%;
  }
  .col-lg-8 {

    flex: 0 0 66.66666667%;
    max-width: 66.66666667%;
  }
  .col-lg-12 {

    flex: 0 0 100%;
    max-width: 100%;
  }
  .order-lg-first {

    order: -1;
  }
  .order-lg-2 {

    order: 2;
  }
}

.btn {
  display: inline-block;
  font-weight: 400;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  -webkit-user-select: none;
  -moz-user-select: none;

  user-select: none;
  border: 1px solid transparent;
  padding: 0.375rem 0.75rem;
  font-size: 0.9375rem;
  line-height: 1.84615385;
  border-radius: 3px;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.btn:hover, .btn:focus {
  text-decoration: none;
}

.btn:focus {
  outline: 0;

}

.btn:disabled {
  opacity: 0.65;
}

.btn:not(:disabled):not(.disabled) {
  cursor: pointer;
}

.btn:not(:disabled):not(.disabled):active, .btn:not(:disabled):not(.disabled).active {
  background-image: none;
}

.btn-primary:not(:disabled):not(.disabled):active, .btn-primary:not(:disabled):not(.disabled).active {
  color: #fff;
  background-color: #2f66b3;
  border-color: #2c60a9;
}

.btn-primary:not(:disabled):not(.disabled):active:focus, .btn-primary:not(:disabled):not(.disabled).active:focus {
  box-shadow: 0 0 0 2px rgba(70, 127, 207, 0.5);
}

.btn-secondary:not(:disabled):not(.disabled):active, .btn-secondary:not(:disabled):not(.disabled).active {
  color: #fff;
  background-color: #6c757d;
  border-color: #666e76;
}

.btn-secondary:not(:disabled):not(.disabled):active:focus, .btn-secondary:not(:disabled):not(.disabled).active:focus {
  box-shadow: 0 0 0 2px rgba(134, 142, 150, 0.5);
}

.btn-success:not(:disabled):not(.disabled):active, .btn-success:not(:disabled):not(.disabled).active {
  color: #fff;
  background-color: #448700;
  border-color: #3e7a00;
}

.btn-success:not(:disabled):not(.disabled):active:focus, .btn-success:not(:disabled):not(.disabled).active:focus {
  box-shadow: 0 0 0 2px rgba(94, 186, 0, 0.5);
}

.btn-info:not(:disabled):not(.disabled):active, .btn-info:not(:disabled):not(.disabled).active {
  color: #fff;
  background-color: #1594ef;
  border-color: #108ee7;
}

.btn-info:not(:disabled):not(.disabled):active:focus, .btn-info:not(:disabled):not(.disabled).active:focus {
  box-shadow: 0 0 0 2px rgba(69, 170, 242, 0.5);
}

.btn-warning:not(:disabled):not(.disabled):active, .btn-warning:not(:disabled):not(.disabled).active {
  color: #fff;
  background-color: #c29d0b;
  border-color: #b6940b;
}

.btn-warning:not(:disabled):not(.disabled):active:focus, .btn-warning:not(:disabled):not(.disabled).active:focus {
  box-shadow: 0 0 0 2px rgba(241, 196, 15, 0.5);
}

.btn-danger:not(:disabled):not(.disabled):active, .btn-danger:not(:disabled):not(.disabled).active {
  color: #fff;
  background-color: #a11918;
  border-color: #961717;
}

.btn-danger:not(:disabled):not(.disabled):active:focus, .btn-danger:not(:disabled):not(.disabled).active:focus {
  box-shadow: 0 0 0 2px rgba(205, 32, 31, 0.5);
}

.btn-light:not(:disabled):not(.disabled):active, .btn-light:not(:disabled):not(.disabled).active {
  color: #495057;
  background-color: #dae0e5;
  border-color: #d3d9df;
}

.btn-light:not(:disabled):not(.disabled):active:focus, .btn-light:not(:disabled):not(.disabled).active:focus {
  box-shadow: 0 0 0 2px rgba(248, 249, 250, 0.5);
}

.btn-dark:not(:disabled):not(.disabled):active, .btn-dark:not(:disabled):not(.disabled).active {
  color: #fff;
  background-color: #1d2124;
  border-color: #171a1d;
}

.btn-dark:not(:disabled):not(.disabled):active:focus, .btn-dark:not(:disabled):not(.disabled).active:focus {
  box-shadow: 0 0 0 2px rgba(52, 58, 64, 0.5);
}

.btn-outline-primary:not(:disabled):not(.disabled):active, .btn-outline-primary:not(:disabled):not(.disabled).active {
  color: #fff;
  background-color: #467fcf;
  border-color: #467fcf;
}

.btn-outline-primary:not(:disabled):not(.disabled):active:focus, .btn-outline-primary:not(:disabled):not(.disabled).active:focus {
  box-shadow: 0 0 0 2px rgba(70, 127, 207, 0.5);
}

.btn-outline-secondary:not(:disabled):not(.disabled):active, .btn-outline-secondary:not(:disabled):not(.disabled).active {
  color: #fff;
  background-color: #868e96;
  border-color: #868e96;
}

.btn-outline-secondary:not(:disabled):not(.disabled):active:focus, .btn-outline-secondary:not(:disabled):not(.disabled).active:focus {
  box-shadow: 0 0 0 2px rgba(134, 142, 150, 0.5);
}

.btn-outline-success:not(:disabled):not(.disabled):active, .btn-outline-success:not(:disabled):not(.disabled).active {
  color: #fff;
  background-color: #5eba00;
  border-color: #5eba00;
}

.btn-outline-success:not(:disabled):not(.disabled):active:focus, .btn-outline-success:not(:disabled):not(.disabled).active:focus {
  box-shadow: 0 0 0 2px rgba(94, 186, 0, 0.5);
}

.btn-outline-info:not(:disabled):not(.disabled):active, .btn-outline-info:not(:disabled):not(.disabled).active {
  color: #fff;
  background-color: #45aaf2;
  border-color: #45aaf2;
}

.btn-outline-info:not(:disabled):not(.disabled):active:focus, .btn-outline-info:not(:disabled):not(.disabled).active:focus {
  box-shadow: 0 0 0 2px rgba(69, 170, 242, 0.5);
}

.btn-outline-warning:not(:disabled):not(.disabled):active, .btn-outline-warning:not(:disabled):not(.disabled).active {
  color: #fff;
  background-color: #f1c40f;
  border-color: #f1c40f;
}

.btn-outline-warning:not(:disabled):not(.disabled):active:focus, .btn-outline-warning:not(:disabled):not(.disabled).active:focus {
  box-shadow: 0 0 0 2px rgba(241, 196, 15, 0.5);
}

.btn-outline-danger:not(:disabled):not(.disabled):active, .btn-outline-danger:not(:disabled):not(.disabled).active {
  color: #fff;
  background-color: #cd201f;
  border-color: #cd201f;
}

.btn-outline-danger:not(:disabled):not(.disabled):active:focus, .btn-outline-danger:not(:disabled):not(.disabled).active:focus {
  box-shadow: 0 0 0 2px rgba(205, 32, 31, 0.5);
}

.btn-outline-light:not(:disabled):not(.disabled):active, .btn-outline-light:not(:disabled):not(.disabled).active {
  color: #495057;
  background-color: #f8f9fa;
  border-color: #f8f9fa;
}

.btn-outline-light:not(:disabled):not(.disabled):active:focus, .btn-outline-light:not(:disabled):not(.disabled).active:focus {
  box-shadow: 0 0 0 2px rgba(248, 249, 250, 0.5);
}

.btn-outline-dark:not(:disabled):not(.disabled):active, .btn-outline-dark:not(:disabled):not(.disabled).active {
  color: #fff;
  background-color: #343a40;
  border-color: #343a40;
}

.btn-outline-dark:not(:disabled):not(.disabled):active:focus, .btn-outline-dark:not(:disabled):not(.disabled).active:focus {
  box-shadow: 0 0 0 2px rgba(52, 58, 64, 0.5);
}

.btn-sm {
  padding: 0.25rem 0.5rem;
  font-size: 0.875rem;
  line-height: 1.33333333;
  border-radius: 3px;
}

.collapse {
  display: none;
}

.collapse.show {
  display: block;
}

tr.collapse.show {
  display: table-row;
}

tbody.collapse.show {
  display: table-row-group;
}

.collapsing {
  position: relative;
  height: 0;
  overflow: hidden;
  transition: height 0.35s ease;
}

.dropup,
.dropdown {
  position: relative;
}

.dropdown-toggle::after {
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: 0.255em;
  vertical-align: 0.255em;
  content: "";
  border-top: 0.3em solid;
  border-right: 0.3em solid transparent;
  border-bottom: 0;
  border-left: 0.3em solid transparent;
}

.dropdown-toggle:empty::after {
  margin-left: 0;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 1000;
  display: none;
  float: left;
  min-width: 10rem;
  padding: 0.5rem 0;
  margin: -1px 0 0 0px;
  font-size: 0.9375rem;
  color: #495057;
  text-align: left;
  list-style: none;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid #ddd;
  border-radius: 3px;
}

.dropup .dropdown-menu {
  margin-top: 0;
  margin-bottom: 0.125rem;
}

.dropup .dropdown-toggle::after {
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: 0.255em;
  vertical-align: 0.255em;
  content: "";
  border-top: 0;
  border-right: 0.3em solid transparent;
  border-bottom: 0.3em solid;
  border-left: 0.3em solid transparent;
}

.dropup .dropdown-toggle:empty::after {
  margin-left: 0;
}

.dropright .dropdown-menu {
  margin-top: 0;
  margin-left: 0.125rem;
}

.dropright .dropdown-toggle::after {
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: 0.255em;
  vertical-align: 0.255em;
  content: "";
  border-top: 0.3em solid transparent;
  border-bottom: 0.3em solid transparent;
  border-left: 0.3em solid;
}

.dropright .dropdown-toggle:empty::after {
  margin-left: 0;
}

.dropright .dropdown-toggle::after {
  vertical-align: 0;
}

.dropleft .dropdown-menu {
  margin-top: 0;
  margin-right: 0.125rem;
}

.dropleft .dropdown-toggle::after {
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: 0.255em;
  vertical-align: 0.255em;
  content: "";
}

.dropleft .dropdown-toggle::after {
  display: none;
}

.dropleft .dropdown-toggle::before {
  display: inline-block;
  width: 0;
  height: 0;
  margin-right: 0.255em;
  vertical-align: 0.255em;
  content: "";
  border-top: 0.3em solid transparent;
  border-right: 0.3em solid;
  border-bottom: 0.3em solid transparent;
}

.dropleft .dropdown-toggle:empty::after {
  margin-left: 0;
}

.dropleft .dropdown-toggle::before {
  vertical-align: 0;
}

.dropdown-item {
  display: block;
  width: 100%;
  padding: 0.6rem 1.0rem;
  clear: both;
  font-weight: 400;
  color: #aaa;
  text-align: inherit;
  white-space: nowrap;
  background-color: transparent;
  border: 0;
}

.dropdown-item:hover, .dropdown-item:focus {
  color: #666;
  text-decoration: none;
  background-color: #f8f9fa;
}

/* 
.dropdown-item.active, .dropdown-item:active {
  color: #fff;
  text-decoration: none;
 background-color: #467fcf; 
} 
*/

.dropdown-item.disabled, .dropdown-item:disabled {
  color: #6e7687; /* alt = #868e96 */
  background-color: transparent;
}

.dropdown-item.disabled:hover {
  color: #666;
  background-color: #f8f9fa;
}

.dropdown-menu.show {
  display: block;
}

.nav {

  display: flex;

  flex-wrap: wrap;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}

.nav-link {
  display: block;
  padding: 0.5rem 1rem;
}

.nav-link:hover, .nav-link:focus {
  text-decoration: none;
}

.nav-tabs {
  border-bottom: 1px solid #dee2e6;
}

.nav-tabs .nav-item {
  margin-bottom: -1px;
}

.nav-tabs .nav-link {
  border: 1px solid transparent;
  border-top-left-radius: 3px;
  border-top-right-radius: 3px;
}

.nav-tabs .nav-link:hover, .nav-tabs .nav-link:focus {
  border-color: #e9ecef #e9ecef #dee2e6;
}

.nav-tabs .nav-link.active {
  color: #495057;
  background-color: #f5f7fb;
  border-color: #dee2e6 #dee2e6 #f5f7fb;
}

.navbar-toggler:not(:disabled):not(.disabled) {
  cursor: pointer;
}

.card {
  position: relative;

  display: flex;

  flex-direction: column;
  min-width: 0;
  word-wrap: break-word;
  background-color: #fff;
  background-clip: border-box;
  border: 1px solid rgba(0, 40, 100, 0.12);
  border-radius: 6px;
}

.card-body {

  flex: 1 1 auto;
  padding: 1.5rem;
}

.card-title {
  margin-bottom: 1.5rem;
}

.card-header {
  padding: 1.5rem 0rem;
  margin-bottom: 0;
  background-color: rgba(0, 0, 0, 0.03);
  border-bottom: 1px solid rgba(0, 40, 100, 0.12);
}

.card-header:first-child {
  border-radius: calc(3px - 1px) calc(3px - 1px) 0 0;
}

.page-link:not(:disabled):not(.disabled) {
  cursor: pointer;
}

.close:not(:disabled):not(.disabled) {
  cursor: pointer;
}

.border-0 {
  border: 0 !important;
}

.d-flex {

  display: flex !important;
}

@media (min-width: 992px) {
  .d-lg-none {
    display: none !important;
  }
  .d-lg-flex {

    display: flex !important;
  }
}

.flex-column {

  flex-direction: column !important;
}

.align-items-center {

  align-items: center !important;
}

@media (min-width: 992px) {
  .flex-lg-row {

    flex-direction: row !important;
  }
}

.m-0 {
  margin: 0 0 5px !important;
}

.mb-0 {
  margin-bottom: 0 !important;
}

.my-3 {
  margin-top: 0.0rem !important;
}

.my-3 {
  margin-bottom: 0.0rem !important;
}

.ml-3 {
  margin-left: 0.75rem !important;
}

.mt-4 {
  margin-top: 1rem !important;
}

.mb-4 {
  margin-bottom: 1rem !important;
}

.p-0 {
  padding: 0 !important;
}

.p-3 {
  padding: 0.75rem 0.0rem !important;
}

.py-4 {
  padding-top: 0.9rem !important;
}

.py-4 {
  padding-bottom: 0.9rem !important;
}

.ml-auto {
  margin-left: auto !important;
}

@media (min-width: 768px) {
  .my-md-5 {
    margin-top: 0rem !important;
  }
  .my-md-5 {
    margin-bottom: 0rem !important;
  }
}

@media (min-width: 992px) {
  .mt-lg-0 {
    margin-top: 0 !important;
  }
  .ml-lg-0 {
    margin-left: 0 !important;
  }
}

.text-center {
  text-align: center !important;
}

.text-muted {
  color: #9aa0ac !important;
}

@media print {
  *,
  *::before,
  *::after {
    text-shadow: none !important;
    box-shadow: none !important;
  }
  a:not(.btn) {
    text-decoration: underline;
  }
  img {
    page-break-inside: avoid;
  }
  h3 {
    orphans: 3;
    widows: 3;
  }
  h3 {
    page-break-after: avoid;
  }
  @page {
    size: a3;
  }
  body {
    min-width: 992px !important;
  }
  .container {
    min-width: 992px !important;
  }
}

html {
  font-size: 16px;
  height: 100%;
  direction: ltr;
}

body {
  direction: ltr;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-tap-highlight-color: transparent;
  -webkit-text-size-adjust: none;

  touch-action: manipulation;
  -webkit-font-feature-settings: "liga" 0;
  font-feature-settings: "liga" 0;
  height: 100%;
  overflow-y: scroll;
  position: relative;
}

@media print {
  body {
    background: none;
  }
}

body *::-webkit-scrollbar {
  width: 6px;
  height: 6px;
  transition: .3s background;
}

body *::-webkit-scrollbar-thumb {
  background: #ced4da;
}

body *:hover::-webkit-scrollbar-thumb {
  background: #adb5bd;
}

a {
  -webkit-text-decoration-skip: ink;
  text-decoration-skip: ink;
}

ul {
  margin-bottom: 1em;
}

img {
  max-width: 100%;
}

@media print {
  .container {
    max-width: none;
  }
}

.row-cards > [class*='col-'] {

  display: flex;

  flex-direction: column;
}

.page {

  display: flex;

  flex-direction: column;

  justify-content: center;
  min-height: 100%;
}

.page-main {

  flex: 1 1 auto;
}

.page-header {

  display: flex;

  align-items: center;
  margin: 1rem 0 0.2rem;

  flex-wrap: wrap;
}

.page-title {
  font-weight: 400;
  line-height: 2.5rem;
  margin: -10px 0 !important
}
@media (min-width: 412px) {
  .page-header {margin: 1.2rem 0}
  .page-title {font-size: 1.02rem; padding-left:-5px}
}
@media (max-width: 411px){
  .page-header {margin: 1.2rem 0}
  .page-title {font-size: 1.1rem}
}

.header {
  padding-top: .75rem;
  padding-bottom: .75rem;
  background: #fff;
  border-bottom: 1px solid rgba(0, 40, 100, 0.12);
}

@media print {
  .header {
    display: none;
  }
}

.header-brand {
  color: inherit;
  margin-right: 1rem;
  font-size: 1.35rem;
  white-space: nowrap;
  font-weight: 600;
  padding: 0;
  transition: .3s opacity;
  line-height: 2rem;
}
@media (max-width: 411px) {
  .header-brand {font-size: 1.2rem
  }
}

.header-brand:hover {
  opacity: 1;
  color: inherit;
  cursor: default;
  text-decoration: none;
}

.header-toggler {
  width: 2rem;
  height: 2rem;
  position: relative;
  color: #9aa0ac;
}

.header-toggler:hover {
  color: #6e7687;
}

.header-toggler-icon {
  position: absolute;
  width: 1rem;
  height: 2px;
  color: inherit;
  background: currentColor;
  border-radius: 3px;
  top: 50%;
  left: 40%;
  margin: 2px 0 0 -.5rem;
  box-shadow: 0 5px currentColor, 0 -5px currentColor;
}

.footer {
  background: #fff;
  border-top: 1px solid rgba(0, 40, 100, 0.12);
  font-size: 11px;
  padding: 20px 0;
  color: #9aa0ac;
}

.footer a:not(.btn) {
  color: #6e7687;
}

@media print {
  .footer {
    display: none;
  }
}

.text-blue {
  color: #467fcf !important;
}

.text-red {
  color: #de1312 !important;
}

.nav-link,
.nav-item {
  padding: 0 1.4rem;
  min-width: 2rem;
  transition: .3s color;
  -webkit-user-select: none;
  -moz-user-select: none;

  user-select: none;
  cursor: pointer;

  display: flex;

  align-items: center;
}

.nav-tabs {
  -webkit-user-select: none;
  -moz-user-select: none;

  user-select: none;
  color: #9aa0ac;
  margin: 0 -.75rem;
}

.nav-tabs .nav-link {
  border: 0;
  color: inherit;
  border-bottom: 1px solid transparent;
  margin-bottom: -1px;
  transition: .3s border-color;
  font-weight: 400;
  padding: 0.8rem 0;
}

.nav-tabs .nav-link:hover:not(.disabled) {
  border-color: #6e7687;
  color: #6e7687;
}

.nav-tabs .nav-link.active {
  border-color: #467fcf;
  color: #467fcf;
  background: transparent;
}

.nav-tabs .nav-item {
  margin-bottom: 0;
  position: relative;
}

.nav-tabs .nav-item i {
  margin-right: .25rem;
  line-height: 1;
  font-size: 0.875rem;
  width: 0.875rem;
  vertical-align: baseline;
  display: inline-block;
}

.btn {
  cursor: pointer;
  font-weight: 600;
  letter-spacing: .03em;
  font-size: 0.8125rem;
  min-width: 2.375rem;
}

.btn-secondary:not(:disabled):not(.disabled):active, .btn-secondary:not(:disabled):not(.disabled).active {
  color: #495057;
  background-color: #e6e5e5;
  border-color: rgba(0, 15, 36, 0.12);
}

.btn-secondary:not(:disabled):not(.disabled):active:focus, .btn-secondary:not(:disabled):not(.disabled).active:focus {
  box-shadow: 0 0 0 2px rgba(0, 40, 100, 0.5);
}

.btn-facebook:not(:disabled):not(.disabled):active, .btn-facebook:not(:disabled):not(.disabled).active {
  color: #fff;
  background-color: #2d4373;
  border-color: #293e6a;
}

.btn-facebook:not(:disabled):not(.disabled):active:focus, .btn-facebook:not(:disabled):not(.disabled).active:focus {
  box-shadow: 0 0 0 2px rgba(59, 89, 152, 0.5);
}

.btn-twitter:not(:disabled):not(.disabled):active, .btn-twitter:not(:disabled):not(.disabled).active {
  color: #fff;
  background-color: #0c85d0;
  border-color: #0b7ec4;
}

.btn-twitter:not(:disabled):not(.disabled):active:focus, .btn-twitter:not(:disabled):not(.disabled).active:focus {
  box-shadow: 0 0 0 2px rgba(29, 161, 242, 0.5);
}

.btn-google:not(:disabled):not(.disabled):active, .btn-google:not(:disabled):not(.disabled).active {
  color: #fff;
  background-color: #c63224;
  border-color: #bb2f22;
}

.btn-google:not(:disabled):not(.disabled):active:focus, .btn-google:not(:disabled):not(.disabled).active:focus {
  box-shadow: 0 0 0 2px rgba(220, 78, 65, 0.5);
}

.btn-youtube:not(:disabled):not(.disabled):active, .btn-youtube:not(:disabled):not(.disabled).active {
  color: #fff;
  background-color: #cc0000;
  border-color: #bf0000;
}

.btn-youtube:not(:disabled):not(.disabled):active:focus, .btn-youtube:not(:disabled):not(.disabled).active:focus {
  box-shadow: 0 0 0 2px rgba(255, 0, 0, 0.5);
}

.btn-vimeo:not(:disabled):not(.disabled):active, .btn-vimeo:not(:disabled):not(.disabled).active {
  color: #fff;
  background-color: #1295bf;
  border-color: #108cb4;
}

.btn-vimeo:not(:disabled):not(.disabled):active:focus, .btn-vimeo:not(:disabled):not(.disabled).active:focus {
  box-shadow: 0 0 0 2px rgba(26, 183, 234, 0.5);
}

.btn-dribbble:not(:disabled):not(.disabled):active, .btn-dribbble:not(:disabled):not(.disabled).active {
  color: #fff;
  background-color: #e51e6b;
  border-color: #dc1a65;
}

.btn-dribbble:not(:disabled):not(.disabled):active:focus, .btn-dribbble:not(:disabled):not(.disabled).active:focus {
  box-shadow: 0 0 0 2px rgba(234, 76, 137, 0.5);
}

.btn-github:not(:disabled):not(.disabled):active, .btn-github:not(:disabled):not(.disabled).active {
  color: #fff;
  background-color: black;
  border-color: black;
}

.btn-github:not(:disabled):not(.disabled):active:focus, .btn-github:not(:disabled):not(.disabled).active:focus {
  box-shadow: 0 0 0 2px rgba(24, 23, 23, 0.5);
}

.btn-instagram:not(:disabled):not(.disabled):active, .btn-instagram:not(:disabled):not(.disabled).active {
  color: #fff;
  background-color: #d31e40;
  border-color: #c81c3d;
}

.btn-instagram:not(:disabled):not(.disabled):active:focus, .btn-instagram:not(:disabled):not(.disabled).active:focus {
  box-shadow: 0 0 0 2px rgba(228, 64, 95, 0.5);
}

.btn-pinterest:not(:disabled):not(.disabled):active, .btn-pinterest:not(:disabled):not(.disabled).active {
  color: #fff;
  background-color: #8c0615;
  border-color: #800513;
}

.btn-pinterest:not(:disabled):not(.disabled):active:focus, .btn-pinterest:not(:disabled):not(.disabled).active:focus {
  box-shadow: 0 0 0 2px rgba(189, 8, 28, 0.5);
}

.btn-vk:not(:disabled):not(.disabled):active, .btn-vk:not(:disabled):not(.disabled).active {
  color: #fff;
  background-color: #4d6a8b;
  border-color: #496482;
}

.btn-vk:not(:disabled):not(.disabled):active:focus, .btn-vk:not(:disabled):not(.disabled).active:focus {
  box-shadow: 0 0 0 2px rgba(99, 131, 168, 0.5);
}

.btn-rss:not(:disabled):not(.disabled):active, .btn-rss:not(:disabled):not(.disabled).active {
  color: #fff;
  background-color: #cc8400;
  border-color: #bf7c00;
}

.btn-rss:not(:disabled):not(.disabled):active:focus, .btn-rss:not(:disabled):not(.disabled).active:focus {
  box-shadow: 0 0 0 2px rgba(255, 165, 0, 0.5);
}

.btn-flickr:not(:disabled):not(.disabled):active, .btn-flickr:not(:disabled):not(.disabled).active {
  color: #fff;
  background-color: #004ca9;
  border-color: #00469c;
}

.btn-flickr:not(:disabled):not(.disabled):active:focus, .btn-flickr:not(:disabled):not(.disabled).active:focus {
  box-shadow: 0 0 0 2px rgba(0, 99, 220, 0.5);
}

.btn-bitbucket:not(:disabled):not(.disabled):active, .btn-bitbucket:not(:disabled):not(.disabled).active {
  color: #fff;
  background-color: #003e99;
  border-color: #00388c;
}

.btn-bitbucket:not(:disabled):not(.disabled):active:focus, .btn-bitbucket:not(:disabled):not(.disabled).active:focus {
  box-shadow: 0 0 0 2px rgba(0, 82, 204, 0.5);
}

.btn-blue:not(:disabled):not(.disabled):active, .btn-blue:not(:disabled):not(.disabled).active {
  color: #fff;
  background-color: #2f66b3;
  border-color: #2c60a9;
}

.btn-blue:not(:disabled):not(.disabled):active:focus, .btn-blue:not(:disabled):not(.disabled).active:focus {
  box-shadow: 0 0 0 2px rgba(70, 127, 207, 0.5);
}

.btn-indigo:not(:disabled):not(.disabled):active, .btn-indigo:not(:disabled):not(.disabled).active {
  color: #fff;
  background-color: #3f51c1;
  border-color: #3b4db7;
}

.btn-indigo:not(:disabled):not(.disabled):active:focus, .btn-indigo:not(:disabled):not(.disabled).active:focus {
  box-shadow: 0 0 0 2px rgba(101, 116, 205, 0.5);
}

.btn-purple:not(:disabled):not(.disabled):active, .btn-purple:not(:disabled):not(.disabled).active {
  color: #fff;
  background-color: #8c31e4;
  border-color: #8526e3;
}

.btn-purple:not(:disabled):not(.disabled):active:focus, .btn-purple:not(:disabled):not(.disabled).active:focus {
  box-shadow: 0 0 0 2px rgba(165, 94, 234, 0.5);
}

.btn-pink:not(:disabled):not(.disabled):active, .btn-pink:not(:disabled):not(.disabled).active {
  color: #fff;
  background-color: #f33d7a;
  border-color: #f23172;
}

.btn-pink:not(:disabled):not(.disabled):active:focus, .btn-pink:not(:disabled):not(.disabled).active:focus {
  box-shadow: 0 0 0 2px rgba(246, 109, 155, 0.5);
}

.btn-red:not(:disabled):not(.disabled):active, .btn-red:not(:disabled):not(.disabled).active {
  color: #fff;
  background-color: #a11918;
  border-color: #961717;
}

.btn-red:not(:disabled):not(.disabled):active:focus, .btn-red:not(:disabled):not(.disabled).active:focus {
  box-shadow: 0 0 0 2px rgba(205, 32, 31, 0.5);
}

.btn-orange:not(:disabled):not(.disabled):active, .btn-orange:not(:disabled):not(.disabled).active {
  color: #fff;
  background-color: #fc7a12;
  border-color: #fc7305;
}

.btn-orange:not(:disabled):not(.disabled):active:focus, .btn-orange:not(:disabled):not(.disabled).active:focus {
  box-shadow: 0 0 0 2px rgba(253, 150, 68, 0.5);
}

.btn-yellow:not(:disabled):not(.disabled):active, .btn-yellow:not(:disabled):not(.disabled).active {
  color: #fff;
  background-color: #c29d0b;
  border-color: #b6940b;
}

.btn-yellow:not(:disabled):not(.disabled):active:focus, .btn-yellow:not(:disabled):not(.disabled).active:focus {
  box-shadow: 0 0 0 2px rgba(241, 196, 15, 0.5);
}

.btn-green:not(:disabled):not(.disabled):active, .btn-green:not(:disabled):not(.disabled).active {
  color: #fff;
  background-color: #448700;
  border-color: #3e7a00;
}

.btn-green:not(:disabled):not(.disabled):active:focus, .btn-green:not(:disabled):not(.disabled).active:focus {
  box-shadow: 0 0 0 2px rgba(94, 186, 0, 0.5);
}

.btn-teal:not(:disabled):not(.disabled):active, .btn-teal:not(:disabled):not(.disabled).active {
  color: #fff;
  background-color: #22a193;
  border-color: #20968a;
}

.btn-teal:not(:disabled):not(.disabled):active:focus, .btn-teal:not(:disabled):not(.disabled).active:focus {
  box-shadow: 0 0 0 2px rgba(43, 203, 186, 0.5);
}

.btn-cyan:not(:disabled):not(.disabled):active, .btn-cyan:not(:disabled):not(.disabled).active {
  color: #fff;
  background-color: #117a8b;
  border-color: #10707f;
}

.btn-cyan:not(:disabled):not(.disabled):active:focus, .btn-cyan:not(:disabled):not(.disabled).active:focus {
  box-shadow: 0 0 0 2px rgba(23, 162, 184, 0.5);
}

.btn-white:not(:disabled):not(.disabled):active, .btn-white:not(:disabled):not(.disabled).active {
  color: #495057;
  background-color: #e6e5e5;
  border-color: #dfdfdf;
}

.btn-white:not(:disabled):not(.disabled):active:focus, .btn-white:not(:disabled):not(.disabled).active:focus {
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.5);
}

.btn-gray:not(:disabled):not(.disabled):active, .btn-gray:not(:disabled):not(.disabled).active {
  color: #fff;
  background-color: #6c757d;
  border-color: #666e76;
}

.btn-gray:not(:disabled):not(.disabled):active:focus, .btn-gray:not(:disabled):not(.disabled).active:focus {
  box-shadow: 0 0 0 2px rgba(134, 142, 150, 0.5);
}

.btn-gray-dark:not(:disabled):not(.disabled):active, .btn-gray-dark:not(:disabled):not(.disabled).active {
  color: #fff;
  background-color: #1d2124;
  border-color: #171a1d;
}

.btn-gray-dark:not(:disabled):not(.disabled):active:focus, .btn-gray-dark:not(:disabled):not(.disabled).active:focus {
  box-shadow: 0 0 0 2px rgba(52, 58, 64, 0.5);
}

.btn-azure:not(:disabled):not(.disabled):active, .btn-azure:not(:disabled):not(.disabled).active {
  color: #fff;
  background-color: #1594ef;
  border-color: #108ee7;
}

.btn-azure:not(:disabled):not(.disabled):active:focus, .btn-azure:not(:disabled):not(.disabled).active:focus {
  box-shadow: 0 0 0 2px rgba(69, 170, 242, 0.5);
}

.btn-lime:not(:disabled):not(.disabled):active, .btn-lime:not(:disabled):not(.disabled).active {
  color: #fff;
  background-color: #63ad27;
  border-color: #5da324;
}

.btn-lime:not(:disabled):not(.disabled):active:focus, .btn-lime:not(:disabled):not(.disabled).active:focus {
  box-shadow: 0 0 0 2px rgba(123, 210, 53, 0.5);
}

.btn-sm {
  font-size: 0.75rem;
  min-width: 1.625rem;
}

.card {
  box-shadow: 0.3px 1px 4px 0 rgba(0, 0, 0, 0.08);
  position: relative;
  margin-bottom: 1.5rem;
  width: 100%;
}

@media print {
  .card {
    box-shadow: none;
    border: none;
  }
}

.card-body {

  flex: 1 1 auto;
  margin: 0;
  padding: 15px 24px 24px 24px;
  position: relative;
}

.card-body > :last-child {
  margin-bottom: 0;
}

@media print {
  .card-body {
    padding: 0;
  }
}

.card-header {
  background: none;
  padding: 0.5rem 0.8rem 0.5rem 0.6rem;

  display: flex;
  min-height: 3.5rem;

  align-items: center;
}

.card-header .card-title {
  margin-bottom: 0;
}

@media print {
  .card-header {
    display: none;
  }
}

.card-title {
  font-size: 1.125rem;
  line-height: 1.2;
  font-weight: 600 !important;
  margin-bottom: 1.5rem;
}

.card-title:only-child {
  margin-bottom: 0;
}

.card-options {
  margin-left: auto;

  display: flex;

  order: 100;
  margin-right: 1px;
  color: #aaa;

  align-self: center;
}

.dropdown {
  display: inline-block;
}

.dropdown-menu {
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  min-width: 9.5rem;
}

.dropdown-item {
  color: #6e7687;
}

.dropdown-toggle {
  -webkit-user-select: none;
  -moz-user-select: none;

  user-select: none;
  cursor: pointer;
}

.dropdown-toggle:after {
  vertical-align: 0.155em;
}

.avatar {
  width: 2.25rem;
  height: 2.25rem;
  margin: 0 2px 0 7px;
  line-height: 2rem;
  border-radius: 40%;
  display: inline-block;
  background: #ced4da no-repeat center/cover;
  position: relative;
  text-align: center;
  color: #868e96;
  font-weight: 600;
  vertical-align: bottom;
  font-size: .875rem;
  -webkit-user-select: none;
  -moz-user-select: none;

  user-select: none;
}

@font-face {
  font-family: "feather";
  src: url("fonts/feather/feather-webfont.eot?t=1501841394106");
  /* IE9*/
  src: url("fonts/feather/feather-webfont.eot?t=1501841394106#iefix") format("embedded-opentype"), url("fonts/feather/feather-webfont.woff?t=1501841394106") format("woff"), url("fonts/feather/feather-webfont.ttf?t=1501841394106") format("truetype"), url("fonts/feather/feather-webfont.svg?t=1501841394106#feather") format("svg");
  /* iOS 4.1- */
}

.fe {
  font-family: 'feather' !important;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.fe-camera:before {
  content: "\e927";
}

.fe-cloud-lightning:before {
  content: "\e93b";
}

.fe-film:before {
  content: "\e964";
}

.fe-home:before {
  content: "\e977";
}

.fe-sun:before {
  content: "\e9d5";
}

.fe-sunset:before {
  content: "\e9d9";
}

.fe-droplet:before {
  content: "\e956";
}

.btn-enabled{color:#467fcf;border-radius:4px;margin-left:7px;border-color:#467fcf!important;cursor:default!important}
.btn-dropdown{color:#467fcf;background-color:#fff;border-color:#ddd;border-radius:4px;margin:5px 0 0 5px}
.card-options span{border:1px solid #fff;border-color:#ddd;border-radius:4px;margin-left:7px;margin-top:2px}
.card-options span:hover{color:#467fcf}
.chart-width{margin:0;padding:10px 10px 0}
#temperature, #wind, #rainfall{height:270px}
#temperatureLongterm, #windLongterm, #rainfallLongterm{height:295px}

 h1,.h1{font-size:2.5rem;color:#5a5a5a}
.live-date{margin-top:24px}
.text-muted{font-size:15px;border-bottom:0.68px solid #ddd;margin:-3px 10px 2px 10px;padding-bottom:3px;letter-spacing:.5px}
.sub-value{font-size:14.5px;line-height:24px;opacity:1;font-weight:600;color:#5d5d5d}
.sub-text{font-size:13px;color:#888;font-weight:400}
.temp-current{margin-left:10px}
.unit{font-size:16px}
.unit-temp{font-size:16px;vertical-align:15px}
#rain_today{margin-left:2px}
#bar{margin-left:2px}
#hum{margin-left:5px}
#sunlight_decimal_hours{margin-left:0px}
.sunset{margin-left:-7px}
.day-length{margin:1px 0 0 -2px}
.py-4{padding:0.6rem !important}  /* Textversatz in Titelleiste */
.header-brand{padding-top:3px}
.trend{transform:scale(1.45);margin:54px 0 37px 135px}
.link:hover{color:#666!important}
.zoom-wrapper{z-index:1000}
.zoom-img{transition:transform 0.4s;transform-origin:left 2%}
.zoom-img:hover{cursor:zoom-in;transform:scale(1.75);transform-origin:left 2%}
.right{transform-origin:96% 3%}
.right:hover{transform-origin:96% 3%;transform:scale(1.625)} 
.footer-first{margin-top:30px;font-size:12.5px}

.gsheet-container {
    overflow:hidden;
    height:361px;
    top:5px;
    margin-bottom:5px}
.gsheet-iframe {
    width:100%;
    height:107%;
    position:absolute;
    top:-25px;
    left:0}

.gsheet-container-rec {
    overflow:hidden;
    height:376px;
    top:5px;
    margin-bottom:5px}

.gsheet-container-avg {
    overflow:hidden;
    height:373px;
    top:5px;
    margin-bottom:5px}

.gsheet-container-climadays {
    overflow:hidden;
    height:530px;
    top:5px;
    margin-bottom:6px}
.gsheet-iframe-climadays {
    width:100%;
    height:105%;
    position:absolute;
    top:-25px;
    left:0}

.forcast-container {
    overflow:hidden;
    padding-top:58.1%; /* Höhe Card Body */
    top:0px;    /* oberer Startpunkt iFrame-Container */
    left:1px;   /* linker Startpunkt iFrame-Container */
    width:99.7%}
.forcast-iframe {
    position:absolute;
    top:-1929px;    /* innerer Versatz iFrame */
    left:-58px;   /* innerer Versatz iFrame */
    width:145.6%;    /* Breite des iFrames */
    height:680%;   /* Höhe des iFrames */
    border:0;
    transform:scale(0.86)}

.trend-container {
    overflow:hidden;
    padding-top:58.1%; /* Höhe Card Body */
    top:0px;    /* oberer Startpunkt iFrame-Container */
    left:50px;   /* linker Startpunkt iFrame-Container */
    width:99.7%}
.trend-iframe {
    position:absolute;
    top:-460px;    /* innerer Versatz iFrame */
    left:-710px;   /* innerer Versatz iFrame */
    width:174%;    /* Breite des iFrames */
    height:500%;   /* Höhe des iFrames */
    border:0;
    transform:scale(1.33)}

.radar-container {
    overflow:hidden;
    padding-top:104.5%; /* Höhe Card Body */
    top:0px;    /* oberer Startpunkt iFrame-Container */
    left:1px;   /* linker Startpunkt iFrame-Container */
    width:99.7%}
.radar-iframe {
    position:absolute;
    top:-535px;    /* innerer Versatz iFrame -295 ALT */
    left:-54px;   /* innerer Versatz iFrame */
    width:145.6%;    /* Breite des iFrames */
    height:255%;   /* Höhe des iFrames */
    border:0;
    transform:scale(0.9)}

@media (min-width: 992px) and (max-width: 1279px) {
 h1,.h1{font-size:1.9rem}
.text-muted{font-size:14px}
.sub-value{font-size:13px}
.sub-text{font-size:12px}
.sunfont{font-size:11px}
.day-length{margin:-0.5px 0 0 -1px}
.unit{font-size:13px}
.unit-temp{font-size:13px;vertical-align:12px}
.page-title{font-size:1.0rem;margin:-10px 0!important}
.forcast-container{padding-top:57.4%;}
.forcast-iframe{transform: scale(0.7);top:-1787px;left:-103px;height:850%}
.trend{transform:scale(1.15);margin:14px 0 4px 58px}
.radar-container{padding-top:103%;width:99.8%}
.radar-iframe{transform: scale(0.71);top:-538px;left:-106px;height:250%}
.davis-line{font-size:12px;line-height:19px}
}

/* Tablet */
@media (min-width: 768px) and (max-width: 991px) {
 h1,.h1{font-size:3.2rem}
.text-muted{font-size:17px;border-bottom:0.7px solid #ccc}
.avatar{width:2.2rem;height:2.2rem}
.sub-value{font-size:16px}
.sub-text{font-size:14px;line-height:27px}
.day-length{margin:3px 0 0 -2px}
.unit{font-size:18px}
.unit-temp{font-size:18px;vertical-align:23px}
.nav-tabs .nav-link{margin:8px 0 10px;padding:0.5rem 0}
.page-title {font-size:19px;margin:-11px 0 -12px!important}
.card-header{padding-bottom:0;padding-top:0}
.nogrey{background-color:white;border-radius:6px}  
.py-4{padding-top:12px !important}  /* Textversatz in Titelleiste */
.zoom-wrapper{overflow:hidden}
.zoom-img:hover{cursor:default;transform:scale(1.0)}
.gsheet-container{height:381px;top:5px}
.gsheet-container-rec{height:390px}
.gsheet-container-avg{height:390px}
.gsheet-container-climadays{height:540px}

.forcast-container{padding-top:480px;left:0px;width:100%;border-radius:5px;}
.forcast-iframe{transform:scale(1.05);top:-2030px;left:0px;height:1000%;width:100%}
.trend-container{padding-top:74%;left:0px;width:100%;border-radius:5px;}
.trend-iframe{transform:scale(2.0);top:1550px;left:-795px;height:1000%;width:150%}

.radar-container{padding-top:105%;left:1px}
.radar-iframe{transform:scale(1.09);top:-469px;left:14px;height:250%;width:94%}
.center-mobil{text-align:center!important;line-height:20px}
.davis-line{font-size:12px;margin-bottom:-7px}
}

/* Tablet klein oder Smartphone quer */
@media (min-width: 576px) and (max-width: 767px) {
 h1,.h1{font-size:2.2rem;margin:-2px 0 6px!important}
.text-muted{font-size:14px;line-height:25px}
.sub-value{font-size:14px;line-height:23px}
.sub-text{font-size:12px}
.day-length{margin:0.5px 0 0 -2px}
.unit{font-size:15px}
.unit-temp{font-size:15px;vertical-align:14px}
.nav-tabs .nav-link{margin:8px 0 10px;padding:0.5rem 0}
.page-title {margin:-10px 0!important}
.dropdown-item{font-size:14px}
.zoom-wrapper{overflow:hidden}
.zoom-img:hover{cursor:default;transform:scale(1.0)}
.gsheet-container{height:381px}
.gsheet-container-rec{height:390px}
.gsheet-container-avg{height:387px}
.gsheet-container-climadays{height:540px}
.forcast-iframe{transform: scale(0.8);top:-1875px;left:-85px;height:750%}
.trend{transform:scale(1.25);margin:25px 0 15px 94px}
.radar-container{padding-top:50%;left:1px}
.radar-iframe{transform:scale(0.51);top:-280px;left:-246px;height:740px;width:198%}
.center-mobil{text-align:center!important;line-height:20px;padding-left:5px}
.footer-first{margin-top:30px;font-size:12px;text-align:center!important}
.davis-line{line-height:18px;padding-top:2px;font-size:11px}
}

/* Smartphone */
@media (max-width: 575px) {
 h1,.h1{font-size:2.3rem;margin:-2px 0 6px!important}
.text-muted{font-size:15px;line-height:25px}
.header-brand{font-size:19px;margin-right:53px}  /* margin = Versatz Hamburgermenu */
.avatar{margin-left:-3px}
.sub-value{font-size:14px;line-height:23px}
.sub-text{font-size:12.5px}
.day-length{margin:0.5px 0 0 -2px}
.temp-current{margin-left:9px}
.unit{font-size:15px}
.unit-temp{font-size:15px;vertical-align:14px}
#sunlight_decimal_hours{margin-left:2px}
.nav-tabs .nav-link{margin:8px 0 10px;padding:0.5rem 0}
.page-title{font-size:16.5px;margin:-13px 0!important}  /* Uhrzeit, Datum */
.card-header{padding: 0.5rem 0.65rem}  /* Rand im Kopf der Karten */
.chart-width{margin:0;padding:10px 0 0}  /* Rand um Diagramm */
.btn-sm{font-size:11px}
.btn-dropdown{margin:1px 0 0}
.dropdown-item{font-size:14px}
.zoom-wrapper{overflow:hidden}
.zoom-img:hover{cursor:default;transform:scale(1.0)}
.gsheet-container{height:381px;top:5px;margin-bottom:8px}
.gsheet-container-rec{height:390px}
.gsheet-container-avg{height:387px}
.gsheet-container-climadays{height:540px}

.forcast-container{padding-top:460px;left:0px;width:100%;border-radius:5px;}
.forcast-iframe{transform:scale(1.05);top:-1922px;left:0px;height:1000%;width:100%}   /* Verschieben: top:-1922px */
.trend-container{padding-top:85.5%;left:0px;width:100%;border-radius:5px;}
.trend-iframe{transform:scale(1.05);top:-2844px;left:0px;height:1000%;width:100%}     /* Verschieben: top:-2800px */

.radar-container{padding-top:100%;left:1px;width:99.5%}
.radar-iframe{transform:scale(0.52);top:-180px;left:-156px;height:208.5%;width:193.5%}
.center-mobil{text-align:center!important;line-height:20px}
.footer-first{margin-top:30px;padding-left:2px;font-size:12px;text-align:left!important}
.davis-line{line-height:18px}
}
/* Ersatz für das veraltete HTML-Attribut frameborder="0". */
.gsheet-iframe, .gsheet-iframe-climadays,
.forcast-iframe, .trend-iframe, .radar-iframe { border: 0; }
