.evh-fab-wrapper {
position: fixed;
bottom: 3rem;
right: 3rem;
z-index: 6000;
}
.evh-fab {
  position: absolute;
  bottom: -1rem;
  right: -1rem;
  width: 50px;
  height: 50px;
  background: #aaa;
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 5px 5px rgba(0,0,0,0.1);
  z-index: 6000;
}
.evh-fab span {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #a13dea;
  font-size: 2em;
  transition: .3s ease-in-out;
}
.evh-fab:hover span  {
  transform: rotate(135deg);
}

.evh-fab ul {
  position: absolute;
  bottom: 55px;
  background: #aaa;
  min-width: 250px;
  padding: 20px;
  border-radius: 20px;
  opacity: 0;
  visibility: hidden;
  transition: .3s;
  transform: translateX(-250px);
}
.evh-fab:hover ul {
  bottom: 65px;
  opacity: 1;
  visibility: visible;
  transition: .3s;
}
.evh-fab ul li {
  list-style:none;
  text-decoration: none;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding: 7px 0;
}

.evh-fab ul li:hover {
  font-weight: 600;
}
.evh-fab ul li:not(:last-child) {
  border-bottom: 1px solid rgba(0,0,0,0.1);
}
.evh-fab ul li img {
  margin-left: 15px;
  opacity: .2;
  transform: scale(.7);
}
.evh-fab ul li:hover img {  
  opacity: .8;
  transform: scale(1.0);
}









@charset "UTF-8";
.uk-timeline .uk-timeline-item:after, .uk-timeline .uk-timeline-item:before {
  content: "";
  display: block;
  width: 100%;
  clear: both;
}

.uk-timeline {
  margin: 30px auto;
  position: relative;
  padding: 0 10px;
}
.uk-timeline:before {
  content: "";
  width: 3px;
  height: 100%;
  background: #1e87f0;
  left: 50%;
  top: 0;
  position: absolute;
}
.uk-timeline:after {
  content: "";
  clear: both;
  display: table;
  width: 100%;
}
.uk-timeline .uk-timeline-item {
  margin-bottom: 50px;
  position: relative;
}
.uk-timeline .uk-timeline-item .uk-timeline-icon {
  width: 50px;
  height: 50px;
  position: absolute;
  top: 0;
  left: 50%;
  overflow: hidden;
  margin-left: -23px;
}
.uk-timeline .uk-timeline-item .uk-timeline-content {
  width: 40%;
  padding: 20px;
}
.uk-timeline .uk-timeline-item .uk-timeline-content h2 {
  padding: 15px;
  margin: -20px -20px 0 -20px;
  font-weight: 300;
}
.uk-timeline .uk-timeline-item .uk-timeline-content:before {
  content: "";
  position: absolute;
  right: -15px;
  top: 10px;
  width: 0px;
  height: 0;
  border-top: 15px solid transparent;
  border-bottom: 15px solid transparent;
  border-left: 15px solid #1e87f0;
}
.uk-timeline .uk-timeline-item .uk-timeline-content.right {
  float: right;
}
.uk-timeline .uk-timeline-item .uk-timeline-content.right:before {
  content: "";
  /* right: -20px; */
  left: -20px;
  border-left: 0;
  border-right: 20px solid #1e87f0;
}

@media screen and (max-width: 768px) {
  .uk-timeline {
    margin: 10px;
    padding: 0px;
    width: 90%;
  }
  .uk-timeline:before {
    left: 0;
  }
  .uk-timeline .uk-timeline-item .uk-timeline-content {
    width: 80%;
    float: right;
  }
  .uk-timeline .uk-timeline-item .uk-timeline-content:before, .uk-timeline .uk-timeline-item .uk-timeline-content.right:before {
    left: 10px;
    margin-left: -25px;
    border-left: 0;
    border-right: 15px solid #1e87f0;
  }
  .uk-timeline .uk-timeline-item .uk-timeline-icon {
    left: 0;
  }
}
#switcher {
  position: fixed;
  z-index: 1;
  right: 0;
  top: 0;
  padding: 10px;
}

.uk-switch {
  position: relative;
  display: inline-block;
  height: 30px;
  width: 100px;
}

.uk-switch input {
  display: none;
}

.uk-switch-slider {
  background-color: rgba(0, 0, 0, 0.22);
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  border-radius: 30px;
  bottom: 0;
  cursor: pointer;
  transition-property: background-color;
  transition-duration: 0.2s;
}

.uk-switch-slider:before {
  content: "";
  background-color: white;
  position: absolute;
  width: 25px;
  height: 26px;
  left: 2px;
  bottom: 2px;
  border-radius: 50%;
  transition-property: transform, box-shadow;
  transition-duration: 0.2s;
}

.uk-switch-slider::after {
  content: "Light";
  position: absolute;
  color: white;
  left: 40px;
  line-height: 30px;
  font-size: 0.75rem;
}

input:checked + .uk-switch-slider {
  background-color: #b7bec2 !important;
}

input:checked + .uk-switch-slider:before {
  transform: translateX(70px);
}

input:checked + .uk-switch-slider::after {
  content: "Dark";
  position: absolute;
  left: 32px;
  color: #4a6c85;
}

.uk-switch-slider.uk-switch-square,
.uk-switch-slider.uk-switch-square:before {
  border-radius: 0;
}

.uk-switch-slider.uk-switch-on-off {
  background-color: #b7bec2;
}

.uk-switch-slider.uk-switch-on-off.round::before {
  font-family: "Font Awesome 5 Free";
  font-weight: 600;
  content: "";
  color: #b7bec2;
  text-align: center;
  font-size: 15px;
  line-height: 28px;
}

input:checked + .uk-switch-slider.uk-switch-on-off {
  background-color: #0d2838 !important;
}

input:checked + .uk-switch-slider.uk-switch-on-off.round::before {
  font-family: "Font Awesome 5 Free";
  font-weight: 600;
  color: #0d2838;
  content: "";
  font-size: 15px;
  line-height: 28px;
  text-align: center;
  padding-left: 1px;
  background-color: #4a6c85;
}

.uk-switch-slider.uk-switch-big:before {
  transform: scale(1.2);
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.22);
}

input:checked + .uk-switch-slider.uk-switch-big:before {
  transform: translateX(26px) scale(1.2);
}

.dark-side {
  background-color: #0d2838;
}
.dark-side .uk-card {
  background-color: #213d52;
  transition: all 0.5s ease;
  color: white;
}
.dark-side .uk-card .uk-button-default {
  color: white;
}
.dark-side .uk-card .uk-card-title {
  color: white;
}
.dark-side .uk-card h2 {
  background-color: #191919;
  transition: all 0.5s ease;
}
.dark-side .uk-card.uk-timeline-content:before {
  border-left: 15px solid #191919;
}
.dark-side .uk-card.uk-timeline-content.right:before {
  border-right: 20px solid #191919;
}
.dark-side .uk-timeline:before {
  background: #213d52;
}
.dark-side .uk-timeline-icon {
  background-color: #213d52;
}
.dark-side #switcher {
  background-color: #213d52;
  transition: all 0.5s ease;
}
@media screen and (max-width: 768px) {
  .dark-side .uk-timeline .uk-timeline-item .uk-timeline-content:before, .dark-side .uk-timeline .uk-timeline-item .uk-timeline-content.right:before {
    border-left: 0;
    border-right: 15px solid #191919;
  }
}




.icon-dark {
  color: #808080;
}

.uk-sticky.sticky-bottom[style] {
  top: auto !important;
  bottom: 0 !important;
}

.uk-drop.uk-open {
  opacity: 1 !important;
}

.give-top{
  opacity: 1 !important;
}

.uk-accordion-title {
    overflow: hidden;
}

.uk-accordion-title::before {
    content: "";
    width: 2.4em;
    height: 1.4em;
    float: left;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg%20width%3D%2213%22%20height%3D%2213%22%20viewBox%3D%220%200%2013%2013%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0A%20%20%20%20%3Crect%20fill%3D%22%23009688%22%20width%3D%2213%22%20height%3D%221%22%20x%3D%220%22%20y%3D%226%22%20%2F%3E%0A%20%20%20%20%3Crect%20fill%3D%22%23009688%22%20width%3D%221%22%20height%3D%2213%22%20x%3D%226%22%20y%3D%220%22%20%2F%3E%0A%3C%2Fsvg%3E");
    background-repeat: no-repeat;
    background-position: 50% 50%
}

.uk-open>.uk-accordion-title::before {
    background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg%20width%3D%2213%22%20height%3D%2213%22%20viewBox%3D%220%200%2013%2013%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0A%20%20%20%20%3Crect%20fill%3D%22%23666%22%20width%3D%2213%22%20height%3D%221%22%20x%3D%220%22%20y%3D%226%22%20%2F%3E%0A%3C%2Fsvg%3E");
}

.uk-accordion-content {
    margin-left: 3em;
}

div.uk-form-row.uk-form-icon.uk-form-icon-top > textarea {
    padding-left: 36px;
}
div.uk-form-row.uk-form-icon.uk-form-icon-top > i {
    top: 15px;
}

:root {
  --mainColor: #ff9800;
}

* .dmlk-glossary:not(.uk-button) {
  background:
     linear-gradient(
       to bottom, var(--mainColor) 0%,
       var(--mainColor) 100%
     ) !important;
	background-position: 0 100% !important;
	background-repeat: repeat-x !important;
	background-size: 2px 2px !important;
/*  color: #000 !important; */
  text-decoration: none !important;
  transition: background-size .2s !important;
}

* .dmlk-glossary:hover:not(.uk-button) {
  background-size: 2px 50px !important;
  text-decoration: none !important;
  cursor: help;
}




.bottomdate {
    position: absolute;
    bottom: 0;
    right: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 9px;
    background-color: #f7c27c;
/*    background-color: rgba(241, 196, 15, 0.8); */
/*    text-shadow: 1px 1px rgba(0, 0, 0, 0.7); */
    color: grey;
    line-height: 1;
}

.bottomdate span:first-child {
    font-size: 16px;
    font-weight: 900;
}

.bottomdate span:last-child {
    font-size: 14px;
    font-weight: 600;
}




@-moz-keyframes bounceDown {
  0%, 20%, 50%, 80%, 100% {
    -moz-transform: translateY(0);
    transform: translateY(0);
  }
  40% {
    -moz-transform: translateY(-30px);
    transform: translateY(-30px);
  }
  60% {
    -moz-transform: translateY(-15px);
    transform: translateY(-15px);
  }
}
@-webkit-keyframes bounceDown {
  0%, 20%, 50%, 80%, 100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  40% {
    -webkit-transform: translateY(-30px);
    transform: translateY(-30px);
  }
  60% {
    -webkit-transform: translateY(-15px);
    transform: translateY(-15px);
  }
}
@keyframes bounceDown {
  0%, 20%, 50%, 80%, 100% {
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  40% {
    -moz-transform: translateY(-30px);
    -ms-transform: translateY(-30px);
    -webkit-transform: translateY(-30px);
    transform: translateY(-30px);
  }
  60% {
    -moz-transform: translateY(-15px);
    -ms-transform: translateY(-15px);
    -webkit-transform: translateY(-15px);
    transform: translateY(-15px);
  }
}





@-webkit-keyframes bounceLeft {
  0%,
  20%,
  50%,
  80%,
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  40% {
    -webkit-transform: translateX(30px);
    transform: translateX(30px);
  }
  60% {
    -webkit-transform: translateX(15px);
    transform: translateX(15px);
  }
}
@-moz-keyframes bounceLeft {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateX(0);
  }
  40% {
    transform: translateX(30px);
  }
  60% {
    transform: translateX(15px);
  }
}
@keyframes bounceLeft {
  0%,
  20%,
  50%,
  80%,
  100% {
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
  40% {
    -ms-transform: translateX(30px);
    transform: translateX(30px);
  }
  60% {
    -ms-transform: translateX(15px);
    transform: translateX(15px);
  }
}
/* /left bounce */


/* right bounce */
@-webkit-keyframes bounceRight {
  0%,
  20%,
  50%,
  80%,
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  40% {
    -webkit-transform: translateX(-30px);
    transform: translateX(-30px);
  }
  60% {
    -webkit-transform: translateX(-15px);
    transform: translateX(-15px);
  }
}
@-moz-keyframes bounceRight {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateX(0);
  }
  40% {
    transform: translateX(-30px);
  }
  60% {
    transform: translateX(-15px);
  }
}
@keyframes bounceRight {
  0%,
  20%,
  50%,
  80%,
  100% {
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
  40% {
    -ms-transform: translateX(-30px);
    transform: translateX(-30px);
  }
  60% {
    -ms-transform: translateX(-15px);
    transform: translateX(-15px);
  }
}
/* /right bounce */


/* assign bounce */
.fa-arrow-right {
  -webkit-animation: bounceRight 2s infinite;
  animation: bounceRight 2s infinite;
  float:right;
}

.fa-arrow-left {
  -webkit-animation: bounceLeft 1.9s infinite;
  animation: bounceLeft 1.9s infinite;
}

.fa-chevron-down {
  -moz-animation: bounceDown 2s infinite;
  -webkit-animation: bounceDown 2s infinite;
  animation: bounceDown 2s infinite;
}


.fa-chevron-down:nth-child(1) { animation-delay: .2s }
.fa-chevron-down:nth-child(2) { animation-delay: .4s }
.fa-chevron-down:nth-child(3) { animation-delay: .6s }

/* Reset uk-icon-button size to autoresize with ratio of icon  */
.uk-icon-button[class*="uk-icon-"] {
  width: auto;
  height: auto;
  padding: 8px
}

/* fix for switcher + filter*/
.no-click{
      pointer-events: none;
}


/* "Wohn"-block responsive-table */
@media screen and (max-width: 640px) {
  table.wohn {
    border: 0;
  }

  table.wohn caption {
    font-size: 1.3em;
  }

  table.wohn thead {
    border: none;
    clip: rect(0 0 0 0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
  }

  table.wohn tr {
    border-bottom: 4px solid #ddd;
    display: block;
    margin-bottom: 1em;
  }

  table.wohn td {
    border-bottom: 1px solid #ddd;
    display: block;
    /* font-size: .8em; */
    text-align: right !important;
  }

  table.wohn td::before {
    /*
    * aria-label has no advantage, it won't be read inside a table
    content: attr(aria-label);
    */
    content: attr(data-label);
    float: left;
    font-weight: bold;
   /*
    text-transform: uppercase;
   */
  }

  table.wohn td:last-child {
    border-bottom: 0;
  }

}

th a:not(.uk-button) {
    transition: .3s cubic-bezier(.54, .32, .05, .96);
    z-index: 2;
    background-image: linear-gradient(#69a097, #69a097),linear-gradient(#69a097, #69a097),linear-gradient(transparent, transparent);
    background-size: 0 1px,100% 1px,1px 1px;
    background-repeat: no-repeat,no-repeat,repeat-x;
    background-position: 0% 90%,100% 90%,0% 90%;
}

th a:not(.uk-button):hover {
    background-size:0 1px,0 1px,1px 1px
}


.uk-parent a {
  display: flex !important;
}

.uk-parent .toggle {
  transition: transform .1s ease-in-out;
}

.uk-parent.uk-open .toggle {
  transform: rotate(-90deg);


}

/* stempel */

.stamp {
  transform: rotate(12deg);
	color: #555;
	font-size: 3rem;
	font-weight: 700;
	border: 0.25rem solid #555;
	display: inline-block;
	padding: 0.25rem 1rem;
	text-transform: uppercase;
	border-radius: 1rem;
	font-family: 'Courier';
	-webkit-mask-image: url(../images/grunge.png);
	-webkit-mask-size: 944px 604px;
	mix-blend-mode: multiply;
}

.is-nope {
  color: #D23;
  border: 0.5rem double #D23;
  transform: rotate(3deg);
	-webkit-mask-position: 2rem 3rem;
  font-size: 2rem;  
}

.is-approved {
	color: #0A9928;
	border: 0.5rem solid #0A9928;
	-webkit-mask-position: 13rem 6rem;
	transform: rotate(-14deg);
  border-radius: 0;
} 

.is-draft {
	color: #C4C4C4;
	border: 1rem double #C4C4C4;
	transform: rotate(-5deg);
  font-size: 6rem;
  font-family: "Open sans", Helvetica, Arial, sans-serif;
  border-radius: 0;
  padding: 0.5rem;
} 



table.sortable th:not(.sorttable_sorted):not(.sorttable_sorted_reverse):not(.sorttable_nosort):after { 
    content: " \25B4\25BE" 
}
