<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.cookie-container{
  position: fixed;
  bottom: -100%;
  left: 0;
  right: 0;
  background: #2f3640;
  padding: 0 32px;
  transition: 400ms;
  box-shadow: 0 -2px 16px rgba(47, 54, 64);
  z-index: 20;
}

.cookie-container p{
  color: #f5f6fa;
  margin: 10px 0 20px 0;
  line-height: 1.25;
}

.cookie-container.active{
  bottom: 0;
}

.cookie-btn{
  background: #e84118;
  color: #f5f6fa;
  margin-bottom: 16px;
  margin-right: 25px;
}

.cookie-btn:hover{
  background: #86230c;
  transition: 0.3;
}

.cookie-btn-info{
  margin-bottom: 16px;
  background: #0782fa;
  color: #222121;
  width: max-content;
}

.cookie-btn-info:hover{
  background: #025db4;
  transition: 0.3;
}

/****************POPUP*****************/
.popup{
  background: #fff;
  position: fixed;
  left: 50%;
  width: 580px;
  border-radius: 10px;
  box-sizing: border-box;
  z-index: 5;
  text-align: center;
  opacity: 0;
  box-shadow: 0 -2px 16px rgba(47, 54, 64);
  top: -200%;
  transition: opacity 300ms ease-in-out, top 1000ms ease-in-out,
              transform 1000ms ease-in-out;
}

.popup.active{
  opacity: 1;
  top: 40%;
  transform: translate(-50%, -50%) scale(1);
  transition: transform 300ms cubic-bezier(0.18, 0.89, 0.43, 1.19);
  min-height: 40vh;
}

.privacy-settings-popup{
  color: #4a5a73;
  width: 480px;
  height: 40vh;
  margin: auto;
  display: flex;
  padding: 32px;
  max-width: 600px;
  border-radius: 8px;
  flex-direction: column;
  background-color: #fff;
}

.privacy-settings-popup-header{
  flex-shrink: 0;
}

.privacy-settings-popup-header p{
  margin-bottom: 20px;
}

.privacy-settings-services-wrapper{
  border: 1px solid silver;
  display: flex;
  padding: 16px;
  flex-grow: 1;
  min-height: 100px;
  overflow-y: hidden;
  flex-direction: column;
}

.popup h5{
  margin: 5px 0 5px 0;
}

.popup ul li{
  font-family: 'Archivo', sans-serif;
  font-size: 1rem;
  color: #494949;
}

.privacy-settings-services-container{
  flex-grow: 1;
  min-height: 100px;
}

.privacy-settings-service-container{
  color: #4a5a73;
}

input[type="checkbox"]{
  width: max-content;
  margin: 4px 7px 7px 0;
}

.switch {
  display: flex;
  flex-direction: row;
  align-items: center;
  background: transparent;
  margin-right: 10px;
}

.switch &gt; label:nth-child(2) {
margin: ;
margin-right: 20px;
}

.buttonbackground {
  background-color:#ccc;
  width: 3rem;
  height: 1.5rem;          /* = width/2 */
  border-radius: 1rem;  /* = height/2 */
  box-shadow:
    0 2px 2px rgba(0,0,0,0.5) inset,
    0 -2px 0px rgba(255,255,255,0.5) inset;
  position: relative;
  margin: 0.5rem auto;
  display:block;
  transition: background-color 0.2s ease;
}

.buttonslider {
  background:#ddd;
  width:1.5rem;
  height:1.5rem;
  border-radius:50%;
  border:1px solid #aaa;
  position: absolute;
  left:0;
  top:-0.15rem;
  box-shadow: 0 4px 3px rgba(0,0,0,0.3);
  display:block;
  transition: all 0.2s ease;
}


#GoogleMapSwitch {
  display:none;
}

#GoogleMapSwitch:checked + label .buttonbackground {
  background-color:#64b464;
}
#GoogleMapSwitch:checked + label .buttonslider {
  left: 1.5rem;
  background:#eee;
}

#GoogleMapSwitch + label .buttonbackground:hover {
  cursor:pointer;
}

.jss207 {
    display: flex;
    flex-grow: 1;
    justify-content: flex-end;
    margin-right: 20px;
}

  b, strong {
    font-weight: bolder;
}

  .privacy-settings-service-description{
    text-align: left;
    display: none;
    margin-top: 20px;
    overflow-y: scroll;
    max-height: calc(100% - 70px);
    height: 100%;
  }

.popup .speichern-btn{
  margin-top: 15px;
}

.popup .speichern-btn button{
  padding: 10px 20px;
  background: #111;
  color: #f5f5f5;
  border: 2px solid #111;
  outline: none;
  border-radius: 10px;
  transition: all 300ms ease-in-out;
  cursor: pointer;
  margin-bottom: 30px;
}

.popup .speichern-btn button:hover{
  color: #111;
  background: #f5f5f5;
}
</pre></body></html>