@viewport {
width: device-width;
zoom: 1.1;
min-zoom: 0.4;
max-zoom: 2;
user-zoom: fixed;
}

* {
  box-sizing: border-box;
}

.row-kalender::after {
  content: "";
  clear: both;
  display: table;
}

[class*="col-kalender"] {
  float: left;
  padding: 15px;
}

html {
  font-family: "Lucida Sans", sans-serif;
}

.header {
  background-color: #9933cc;
  color: #ffffff;
  padding: 15px;
}




.aside {
  background-color: #33b5e5;
  padding: 15px;
  text-align: center;
  font-size: 14px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24);
}

.footer-kalender {
  background-color: #ffffff;
  color: #ffffff;
  text-align: center;
  font-size: 12px;
  padding: 15px;
}

/* For mobile phones: */
[class*="col-kalender"] {
  width: 100%;
}

@media only screen and (min-width: 600px) {
  /* For tablets: */
  .col-kalender-s-1 {width: 8.33%;}
  .col-kalender-s-2 {width: 16.66%;}
  .col-kalender-s-3 {width: 25%;}
  .col-kalender-s-4 {width: 33.33%;}
  .col-kalender-s-5 {width: 41.66%;}
  .col-kalender-s-6 {width: 50%;}
  .col-kalender-s-7 {width: 58.33%;}
  .col-kalender-s-8 {width: 66.66%;}
  .col-kalender-s-9 {width: 75%;}
  .col-kalender-s-10 {width: 83.33%;}
  .col-kalender-s-11 {width: 91.66%;}
  .col-kalender-s-12 {width: 100%;}
}
@media only screen and (min-width: 768px) {
  /* For desktop: */
  .col-kalender-1 {width: 8.33%;}
  .col-kalender-2 {width: 16.66%;}
  .col-kalender-3 {width: 25%;}
  .col-kalender-4 {width: 33.33%;}
  .col-kalender-5 {width: 41.66%;}
  .col-kalender-6 {width: 50%;}
  .col-kalender-7 {width: 58.33%;}
  .col-kalender-8 {width: 66.66%;}
  .col-kalender-9 {width: 75%;}
  .col-kalender-10 {width: 83.33%;}
  .col-kalender-11 {width: 91.66%;}
  .col-kalender-12 {width: 100%;}
}




#spinner-div {
  position: fixed;
  display: none; 
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  text-align: center;
  background: url('/wp-content/plugins/koalatalk/img/EuleGruenRosa-ANIMATION.gif') no-repeat;
  background-color: rgba(255, 255, 255, 0.8);
   background-origin: content-box;
  background-position: 50% 50%;
  z-index: 2;
}

.dashed-line{ 
    border-top: 0px ;
    border-right: 0px;
    border-bottom: 1px dashed blue;
    border-left: 0px;
    
}




ul {
  list-style-type: none;
}

li {
  display: inline-block;
}

input[type="checkbox"][id^="GruppenKalender_checkbox_id_"] {
  display: none;
}

label {
  border: 1px solid #fff;
  padding: 10px;
  display: block;
  position: relative;
  margin: 10px;
  cursor: pointer;
}

label:before {
  background-color: white;
  color: white;
  content: " ";
  display: block;
  border-radius: 50%;
  border: 1px solid grey;
  position: absolute;
  top: -5px;
  left: -5px;
  width: 25px;
  height: 25px;
  text-align: center;
  line-height: 28px;
  transition-duration: 0.4s;
  transform: scale(0);
}

label img {
  height: 100px;
  width: 100px;
  transition-duration: 0.2s;
  transform-origin: 50% 50%;
}

:checked + label {
  border-color: #ddd;
}

:checked + label:before {
  content: "✓";
  background-color: grey;
  transform: scale(1);
}

:checked + label img {
  transform: scale(0.9);
  /* box-shadow: 0 0 5px #333; */
  z-index: -1;
}