/* Urheberrechtshinweis
=======================
 * 
 * Copyright [2024] [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].
 */

/* Popup Hint NEW*/
@media only screen and (max-width: 767px) {
  .info_box {
    display: none !important;
  }
}

.info_box {
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background: rgba(0, 0, 0, 0.75);
  width: 650px;
  max-height: 360px;
  border: 2px solid #007BFF;
  border-radius: 10px;
  padding: 20px;
  font-family: 'Arial', sans-serif;
  color: #FFFFFF;
  display: flex;
  justify-content: center;
  gap: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
  overflow-y: visible;
  opacity: 0;
  transition: opacity 0.5s ease-in; 
}

.info_box.show {
  opacity: 1;
}

.scrollable-content {
  overflow-y: auto;
  padding-right: 10px;
}

  .close-Btn {
    position: absolute;
    top: -15px;
    right: 30px;
    background-color: #8B0000;
    color: #FFFFFF;
    border: 1px solid #007BFF;
    padding: 5px 10px;
    cursor: pointer;
    border-radius: 5px;
    font-size: 14px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

  .close-Btn:hover {
    background-color: #006400;
}

.info_icon {
  font-family: courier;
  font-size: 120px;
  color: #007BFF;
  margin-top: -10px;
  line-height: 1;
  display: flex;
  align-items: center;
}

.info p {
  margin: 0;
  font-size: 18px;
  line-height: 1.6;
}

.info h2 {
  font-size: 24px;
  font-weight: bold;
  line-height: 1.4;
  margin-bottom: 10px;
  margin-top: 30px;
}

.info .blue_heading {
  color: #007BFF;
  font-weight: bold;
}

.info .green_heading {
  color: #008000;
  font-weight: bold;
}

.info .red_heading {
  color: #8B0000;
  font-weight: bold;
}

.help-content {
  padding: 30px;
}

.hidden {
  display: none;
}

.link_container {
  text-align: right;
  margin-top: 10px;
  margin-bottom: 10px;
}

.info a {
  font-weight: bold;
  letter-spacing: 0.07em;
  color: #FFFFFF;
  background-color: #006400;
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  animation: pulse 1.5s ease-in-out infinite;
  display: inline-block;
}

.info a:hover {
  color: #FFFFFF;
  background-color: #228B22;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
  transform: scale(1.1);
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes fadeOut {
  0% { opacity: 1; }
  100% { opacity: 0; }
}

.info_box.fade-out {
  animation: fadeOut 5s forwards;
  pointer-events: none;
}



/* Share Buttons */
.no-animation {
    animation: none !important;
    transition: none !important;
}

.share-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center; 
    margin: 0 auto
    width: 90%;
}

.copy-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: calc(50% - 20px);
    margin-bottom: 10px;
}

.copy-container a {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    text-align: center;
    background-color: #007BFF;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    width: 100%;
    min-width: 180px;
    height: 50px;
    box-sizing: border-box;
}

.copy-container a:hover {
    background-color: #0056b3;
}