* {
  box-sizing: border-box;
}

body {
  font-weight: 400;
  background-color: #EEEFF4;
}

body,
html,
.App,
.vertical-center {
  width: 100%;
  height: 100%;
}

.navbar {
  background: #20a1aa !important;
  width: 100%;
Display:block;
}

.btn-outline-primary {
  border-color: #20a1aa;
  color: #20a1aa;
}

.btn-outline-primary:hover {
  background-color: #20a1aa;
  color: #ffffff;
}

.vertical-center {
  display: flex;
  text-align: left;
  justify-content: center;
  flex-direction: column;
}

.inner-block {
  width: 450px;
  margin: auto;
  background: #ffffff;
  box-shadow: 0px 14px 80px rgba(34, 35, 58, 0.2);
  padding: 40px 55px 45px 55px;
  transition: all .3s;
  border-radius: 20px;
}

.vertical-center .form-control:focus {
  border-color: #2554FF;
  box-shadow: none;
}

.vertical-center h3 {
  text-align: center;
  margin: 0;
  line-height: 1;
  padding-bottom: 20px;
}

label {
  font-weight: 500;
}

.material-symbols-outlined {
    font-size: 18px;
    float: right;
    padding: 5px;
    margin-right: 10px;
}

.material-symbols-outlined:hover {
cursor: pointer;
font-variation-settings: 'FILL' 1;
}

#sticky-sidebar {height:100%; background-color: #20a1aa;}
#sidebarcontent {padding: 20px; color:#fff;}


#menu {
        display: none;
        position: absolute;
        width: 200px;
        background-color: white;
        box-shadow: 0 0 5px grey;
        border-radius: 3px;
      }

      #menu button {
        width: 100%;
        background-color: white;
        border: none;
        margin: 0;
        padding: 10px;
      }

      #menu button:hover {
        background-color: lightgray;
      }
/* DASHBOARD */
#createnew {
    width: 160px;
    position: absolute;
    right: 0px;
    top: 25px;
    height: 25px;
}

#createnew span {margin-top: -5px;}


/* BOTTOM NAVIGATION */
.bottom-navigation {

    position: fixed;
    bottom: 0px;
    left: 0px;
    width: 100%;
    background: rgba(32, 161, 170, 0.4);
    padding: 5px;
    margin: 0 auto;
    height: 40px;

}
.bottom-navigation .zoom-header {
    display: flex;
    position: relative;
    right: 0px;
    float: right;
}

.bottom-navigation .zoom-header .zoomin {
  position: relative;
  z-index: 1000;
}
.bottom-navigation .zoom-header .zoomout {
  position: relative;
  z-index: 1000;
}

.bottom-navigation button {
float:right;
margin-right: 10px;
margin-left: 10px;
}

#container{
width: auto;
height: auto;
background: white;
overflow: auto;
}


#karte {
  height: 24.4cm;
  width: 38cm;
  padding: 0;
  margin: 0px;
  background: white;
  box-shadow: 0 4px 5px rgba(75, 75, 75, 0.2);
  border: 1px #d3d3d3 solid;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
transform-origin:0% 0%;
overflow:hidden;
	
}

button img {margin-bottom:2px !important;}
Button {margin-right: 3px !important; margin-bottom: 3px !important; border-radius: 3px !important;}


/* META EDITOR*/
#meta-editor {
    position: absolute;
    top: 0px;
    right: 0px;
    height: 100%;
width: 100%;
    background: rgba(32, 161, 170, 0.9);
    padding: 20px;
color: #fff;
}

#meta-editor div {width: 50%; margin: 0 auto;}

#meta-editor-close {
    position: absolute;
    top: 20px;
    right: 20px;
}

/*ACCORDION MENU */
.accordion-container .accordion-title {
  position: relative;
  margin: 0;
  padding: 0;
  background-color: #20a1aa;
  font-size: 1.25em;
  font-weight: normal;
  color: #fff;
  cursor: pointer;
}

.accordion-container .accordion-title:hover,
.accordion-container .accordion-title:active,
.accordion-title.open { 
  background-color: #20a1aa;
font-weight: 600;
}

.accordion-container .accordion-title::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 25px;
  width: 15px;
  height: 2px;
  transform: rotate(90deg);
  background: #fff;
  transition: all .3s ease-in-out;
}

.accordion-container .accordion-title::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 25px;
  width: 15px;
  height: 2px;
  background: #fff;
  transition: all .2s ease-in-out;
}

.accordion-container .accordion-title.open::before {
  transform: rotate(180deg);
}

.accordion-container .accordion-title.open::after {
  opacity: 0;
}

.accordion-content {
Font-size: 0.8em;
}

/* LOADER */

.loading-state {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(32, 161, 170, 0.9);
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
}
.loading {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  border: 10px solid rgba(39, 103, 107, 0.4);
  border-top-color: rgba(147, 215, 219, 0.9);
  animation: loading 1s linear infinite;
}
@keyframes loading {
  to {
    transform: rotate(360deg);
  }
}
