/* Urheberrechtshinweis
=======================
 * 
 * Copyright (c) 2013– DROPPY.ch
 * 
 * Alle Rechte vorbehalten.
 * 
 * Die vorliegende JavaScript- und oder CSS-Datei (im Folgenden als "Datei" bezeichnet) ist urheberrechtlich geschuetzt.
 * Jede unbefugte Nutzung, Vervielfaeltigung oder Verbreitung dieser Datei ist ausdruecklich untersagt und kann rechtliche Konsequenzen haben.
 * 
 * Jede Person, die diese Datei herunterlaedt, kopiert oder verwendet, ohne dazu berechtigt zu sein, begeht eine Urheberrechtsverletzung und verstoesst gegen das geltende Recht.
 * 
 * Wir behalten uns das Recht vor, Verstoesse gegen das Urheberrecht straf- und zivilrechtlich zu verfolgen und Schadensersatzansprueche geltend zu machen.
 * 
 * Bei Fragen oder Genehmigungsanfragen benutzen Sie unser Kontaktformular [https://www.cloud.droppy.ch/contact.html].
 */


/*********************** Cookie Dialog ***********************/
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500&display=swap');

:root {
  --cookieNoticeProLight: #ffffff;
  --cookieNoticeProDark: #393d4d;
}

@keyframes cookieNoticeProZoomIn {
  from {
      transform: scale(0);
      opacity: 0;
  }
  to {
      transform: scale(1);
      opacity: 1;
  }
}

@keyframes cookieNoticeProZoomOut {
  from {
      transform: scale(1);
      opacity: 1;
  }
  to {
      transform: scale(0);
      opacity: 0;
  }
}

#cookieNoticePro *{
  margin: 0;
  padding: 0;
  text-decoration: none;
  list-style: none;
  font-family: 'Poppins', sans-serif;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
#cookieNoticePro button,
#cookieNoticePro a {
  cursor: pointer;
  color: inherit;
  font-family: inherit;
}
#cookieNoticePro button{
  outline: none;
  border: none;
  -moz-appearance: none;
       appearance: none;
  -webkit-appearance: none;
  appearance: none;
}
#cookieNoticePro strong,
#cookieNoticePro em {
  font-weight: bold;
  font-family: inherit;
}
#cookieNoticePro a:hover {
  text-decoration: none;
  cursor: pointer;
}
#cookieNoticePro a:focus,
#cookieNoticePro input:focus {
  outline: none;
  list-style: none;
}


#cookieNoticePro.light {
  background-color: #ffffff;
  background-color: var(--cookieNoticeProLight);
  color: #393d4d;
  color: var(--cookieNoticeProDark);
}

#cookieNoticePro.light p,
#cookieNoticePro.light ul {
  color: #393d4d;
  color: var(--cookieNoticeProDark);
}

#cookieNoticePro.light h5 {
  color: var(--cookieNoticeProDark);
}

#cookieNoticePro.light button#cookieReject {
  background: #ffffff;
  background: var(--cookieNoticeProLight);
}

#cookieNoticePro.dark {
  background-color: #393d4d;
  background-color: var(--cookieNoticeProDark);
  color: #ffffff;
  color: var(--cookieNoticeProLight);
}
#cookieNoticePro.dark p,
#cookieNoticePro.dark ul {
  color: #ffffff;
  color: var(--cookieNoticeProLight);
}

#cookieNoticePro.dark h5 {
  color: #ffffff;
  color: var(--cookieNoticeProLight);
}
#cookieNoticePro.dark button#cookieReject {
  background: transparent;
  color: #ffffff;
  color: var(--cookieNoticeProLight);
  border: 1px solid #ffffff;
  border: 1px solid var(--cookieNoticeProLight);
}

#cookieNoticePro {
    text-align: left !important; /* wichtig für speedtest damit text im cookietext nicht centriert wird */
    z-index: 2147483647 !important; /* damit nicht hinter der Werbung */
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: fixed;
  padding: 20px;
  border-radius: 10px;
/* escapet - Original */
/*
  -webkit-box-shadow: 0 6px 6px rgba(0, 0, 0, 0.25);
          box-shadow: 0 6px 6px rgba(0, 0, 0, 0.25);
*/
/* escapet - Angepasst */
  border: 2px solid #c2a178;
  -webkit-box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
/* ende */
  font-family: inherit;
  z-index: 999997;
}

#cookieNoticePro #closeIcon {
  width: 20px;
  height: 20px;
  cursor: pointer;
  color: #bfb9b9;
  overflow: hidden;
  opacity: 0.85;
  z-index: 999999;
  position: absolute;
  top: 4px;
  right: 4px;
}

#cookieNoticePro svg{
  display: block;
}

#cookieNoticePro.display-left {
  left: 30px;
  bottom: 30px;
  max-width: 400px;
}

#cookieNoticePro.display-right {
  right: 30px;
  bottom: 30px;
  max-width: 400px;
}

/* escapet - Original */
/*
#cookieNoticePro.display-top {
  top: 30px;
  width: 800px;
  left: 50%;
  margin-left: -400px;
}

#cookieNoticePro.display-bottom {
  bottom: 30px;
  width: 800px;
  left: 50%;
  margin-left: -400px;
}
*/

/* escapet - Angepasst (top, bottom) */
#cookieNoticePro.display-top {
  top: 0px;
  width: 500px;
  left: 50%;
  margin-left: -250px;
}

#cookieNoticePro.display-bottom {
  bottom: 0px;
  width: 500px;
  left: 50%;
  margin-left: -250px;
}


#cookieNoticePro.display-top .content-wrap,
#cookieNoticePro.display-bottom .content-wrap {
/* escapet - auskommentiert schönere Darstellung (top, bottom)*/
/*
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
*/
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

#cookieNoticePro.display-top .msg-wrap,
#cookieNoticePro.display-bottom .msg-wrap {
  max-width: 100%;
  width: 100%;
}

#cookieNoticePro.display-top .msg-wrap,
#cookieNoticePro.display-bottom .msg-wrap {
  margin-bottom: 0;
}

#cookieNoticePro.display-top #cookieSettings,
#cookieNoticePro.display-bottom #cookieSettings {
  margin-bottom: 20px;
}

#cookieNoticePro.display-top #cookieTypes,
#cookieNoticePro.display-bottom #cookieTypes {
  margin-top: 20px;
}

#cookieNoticePro .btn-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient:vertical; /* escapet: original - für alle */
  /* -webkit-box-orient:horizontal; /* escapet - nur für Freeversion */
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  font-weight: bold;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 0 -5px 0 -5px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

#cookieNoticePro .btn-wrap button {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  padding: 0 7px;
  margin: 0 5px 10px 5px;
  border-radius: 20px;
  cursor: pointer;
  white-space: nowrap;
  min-width: 130px; /* escapet: original - für alle */
  /* max-width: 330px; /* escapet - nur für Freeversion */
  line-height: 36px;
  border: none;
  font-family: inherit;
  font-size: 16px;
  background-color: green;
  color: white;
  -webkit-transition: background-color .3s ease, transform .3s ease;
  transition: background-color .3s ease, transform .3s ease;
}

#cookieNoticePro .btn-wrap button:hover {
  background-color: darkgreen;
  transform: scaleX(0.85); /* Reduziert die Breite um 15% beim Hover */
  -webkit-box-shadow: none;
          box-shadow: none;
}


#cookieNoticePro #cookieSettings {
  font-size: 12px;
  font-weight: bold;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-transform: uppercase;
  cursor: pointer;
  font-weight: normal;
  margin-bottom: 20px;
}
#cookieNoticePro #cookieSettings svg {
  vertical-align: middle;
  margin-right: 8px;
}

#cookieNoticePro h4 {
  font-family: inherit;
  font-weight: bold;
  font-size: 18px;
}

#cookieNoticePro .title-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 10px;
}

#cookieNoticePro .title-wrap svg {
  margin-right: 10px;
}

#cookieNoticePro h5 {
  font-family: inherit;
  font-weight: bold;
  font-size: 12px;
  margin-bottom: 10px;
  text-transform: uppercase;
}
#cookieNoticePro p,
#cookieNoticePro ul {
  font-size: 14px;
  margin-bottom: 20px;
}
#cookieNoticePro p:last-child {
  margin-bottom: 0;
  text-align: left;
}

 /* escapet: original 49% - für alle */
#cookieNoticePro li {
  width: 100%;
  display: inline-block;
}

/* escapet: spez. für Freeversion */
/*
#cookieNoticePro li {
  width: auto;
  display: inline-block;
}    
#cookieNoticePro li:nth-child(1) {
  margin-left: 15px;
}
#cookieNoticePro li:nth-child(2) {
 margin-left: 20px;
}
#cookieNoticePro li:nth-child(3) {
 margin-left: 16px;
}
*/

#cookieNoticePro a {
  text-decoration: none;
  font-size: 14px;
  padding-bottom: 2px;
  border-bottom: 1px dotted rgba(255, 255, 255, 0.75);
  -webkit-transition: all 0.3s ease-in;
  -o-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
}

#cookieTypes label {
  text-transform: uppercase;
  font-size: 13px;
}

#cookieNoticePro button:disabled {
  opacity: 0.3;
}
#cookieNoticePro input[type="checkbox"] {
  -webkit-appearance: auto;
  -moz-appearance: auto;
  appearance: auto;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeSpeed;
  width: 14px;
  height: 14px;
  margin: 4px 10px 0px 0px;
  display: block;
  float: left;
  cursor: pointer; /* escapet: zusätzlich */
  position: relative;
  outline: none;
  border: none;
}
#cookieNoticePro input[type="checkbox"]:checked:after {
  background: #d3d3d3;
  content: "\2714";
  color: #808080;
}

#cookieNoticePro input[type="checkbox"]:after {
  content: "";
  vertical-align: middle;
  text-align: center;
  line-height: 13px;
  position: absolute;
  cursor: pointer;
  height: 14px;
  width: 14px;
  left: 0;
  top: 0;
  font-size: 10px;
  background: #d3d3d3;
}

#cookieNoticePro.display-top.full-width-true,
#cookieNoticePro.display-bottom.full-width-true {
  width: 100%;
  max-width: 100%;
  left: auto;
  right: auto;
  bottom: auto;
  top: 0;
  border-radius: 0;
  margin: auto;
}

#cookieNoticePro.display-bottom.full-width-true {
  bottom: 0;
  top: auto;
  -webkit-box-shadow: 0 -3px 3px rgb(0 0 0 / 25%);
          box-shadow: 0 -3px 3px rgb(0 0 0 / 25%);
}

#cookieNoticePro.display-top.full-width-true .title-wrap,
#cookieNoticePro.display-bottom.full-width-true .title-wrap {
  display: none;
}

#cookieNoticePro.display-top.full-width-true .btn-wrap button,
#cookieNoticePro.display-bottom.full-width-true .btn-wrap button {
  margin-bottom: 10px;
}

#cookieMinimizeIcon {
  position: fixed;
  right: 20px; /* escapet: original - für alle */
  /* left: 20px; /* escapet: spez. für Freeversion */
  bottom: 20px;
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 6px 6px rgba(0, 0, 0, 0.25);
  cursor: pointer;
  animation: cookieNoticeProZoomIn 0.2s forwards;
  transition: box-shadow 0.1s ease-in-out;
}
#cookieMinimizeIcon svg{
  display: block;
}
#cookieMinimizeIcon.zoomIn {
  animation: cookieNoticeProZoomIn 0.2s forwards;
}

#cookieMinimizeIcon.zoomOut {
  animation: cookieNoticeProZoomOut 0.2s forwards;
}

#cookieMinimizeIcon .floating-text{
  position: absolute;
  top: 50%;
  left: -10%;  /* escapet: original - für alle */
  /* right: -30%;  /* escapet: spez. für Freeversion */

  transform: translate(-100%, -50%); /* escapet: original - für alle */
  /* transform: translate(100%, -50%); /* escapet: spez. für Freeversion */

  background:rgba(51,51,51,0.5);
  padding: 2px 4px;
  color:#ffffff;
  border-radius: 2px;
  font-family: 'Poppins', sans-serif;
  font-size: 12px;
  text-wrap: nowrap;
  display: none;
}
#cookieMinimizeIcon:hover {
  box-shadow: 0 12px 12px rgba(0, 0, 0, 0.25);
}

#cookieMinimizeIcon:hover>.floating-text{
  display: block;
}

/* MediaQueris */
@media only screen and (max-width: 800px) {
  #cookieNoticePro.display-top,
  #cookieNoticePro.display-bottom {
    width: 100%;
    max-width: 100%;
    left: auto;
    right: auto;
    bottom: auto;
    top: 0;
    border-radius: 0;
    margin: auto;
  }

  #cookieNoticePro.display-bottom {
    bottom: 0;
    top: auto;
    -webkit-box-shadow: 0 -3px 3px rgb(0 0 0 / 25%);
            box-shadow: 0 -3px 3px rgb(0 0 0 / 25%);
  }

  #cookieNoticePro.display-top .btn-wrap button,
  #cookieNoticePro.display-bottom .btn-wrap button {
    margin-bottom: 10px;
  }

  #cookieNoticePro.display-top .msg-wrap,
  #cookieNoticePro.display-bottom .msg-wrap {
    margin-right: 20px;
  }
}

@media only screen and (max-width: 600px) {
  #cookieNoticePro.display-left,
  #cookieNoticePro.display-right {
    width: 100%;
    max-width: 100%;
    left: auto;
    right: auto;
    bottom: 0;
    border-radius: 0;
    -webkit-box-shadow: 0 -3px 3px rgb(0 0 0 / 25%);
            box-shadow: 0 -3px 3px rgb(0 0 0 / 25%);
  }

  #cookieNoticePro.display-top .content-wrap,
  #cookieNoticePro.display-bottom .content-wrap {
    display: block;
  }
  #cookieNoticePro.display-top .msg-wrap,
  #cookieNoticePro.display-bottom .msg-wrap {
    max-width: 100%;
  }
  #cookieNoticePro.display-top #cookieSettings,
  #cookieNoticePro.display-bottom #cookieSettings {
    margin-bottom: 20px;
  }
    
/* escapet: Mobile Position - !!BEI ALLEN DOMAINS ANDERS!! */
@media only screen and (max-width: 767px) {
    #cookieMinimizeIcon.zoomIn {
       position: absolute !important;
       top: 30px !important; /* anapssen */
       bottom:auto !important;
       right: 15px !important; /* anpassen */
       /* z-index: 9999 !important; /* nur für Wordle auskommentiert */
    }
    
/* escapet: nur für Freeversion ervorderlich    
    #cookieMinimizeIcon .floating-text{
       position: absolute;
       top: 50%;
       left: -160%;
       transform: translate(-100%, -50%);
 }
ende */

}
@media only screen and (min-device-width: 320px) and (max-device-width: 1024px) and (-webkit-min-device-pixel-ratio: 2) and (orientation: landscape) {
     #cookieMinimizeIcon.zoomIn {
    display:none!important;
    }
}
}


/* escapet: Tooltip Titel hover */
[data-title]:hover:after {
    opacity: 1;
    transition: opacity 0.6s ease 0s, transform 0.6s ease 0s;
    visibility: visible;
    transform: scaleY(1);
}

[data-title]:after {
    content: attr(data-title);
    position: absolute;
    top: 60px;
    left: 15px;
    right: 15px;
    padding: 8px 12px;
    color: #222;
    white-space: normal;
    max-width: 347px; /* escapet: für alle 370 / Wordle spez. 347*/   
    /* max-width: 470px;/* escapet: für Freeversion */
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    border-radius: 5px;
    -moz-box-shadow: 0px 0px 4px #222;
    -webkit-box-shadow: 0px 0px 4px #222;
    box-shadow: 0px 0px 4px #222;
    background-image: -moz-linear-gradient(top, #f8f8f8, #cccccc);
    background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0, #f8f8f8), color-stop(1, #cccccc));
    background-image: -webkit-linear-gradient(top, #f8f8f8, #cccccc);
    background-image: -moz-linear-gradient(top, #f8f8f8, #cccccc);
    background-image: -ms-linear-gradient(top, #f8f8f8, #cccccc);
    background-image: -o-linear-gradient(top, #f8f8f8, #cccccc);
    opacity: 0;
    z-index: 99999;
    visibility: hidden;
    transform: scaleY(0);
    transform-origin: top;
}

[data-title]:hover:after {
    opacity: 1;
    transition: opacity 0.6s ease 0s, transform 0.6s ease 0s;
    visibility: visible;
    transform: scaleY(1);
}

/* escapet: Cursor - deaktivierte Checkboxen */
#cookieNoticePro input[type="checkbox"]:disabled {
  cursor: not-allowed;
}

/* escapet: Cursor - Labels */
#cookieNoticePro label {
    cursor: help; 
}