@charset "UTF-8";
/**
* Table of Contents
*
* 1.0 Variables
* 2.0 Mixins & Functions
* 3.0 General
* 4.0 WooCommerce
* 5.0 Plugin Styling
**/
/************ 1.0 Variables *********** */
/************ 2.0 Mixins & Functions *********** */
/************ 3.0 General *********** */
html {
  scroll-padding-top: 150px;
}

a {
  text-underline-offset: 2px;
  text-decoration-color: #a7aaad;
  text-decoration-thickness: 1px;
  text-decoration-style: dotted;
}

/* Ken Burns Effekt */
.ken-burns-container .bg_image.visible {
  animation: ken-burns-pan 20s infinite alternate;
  backface-visibility: hidden;
  will-change: transform;
}
@keyframes ken-burns-pan {
  0% {
    transform: scale(1.2);
    transform-origin: 50% 50%;
  }
  100% {
    transform: scale(1.1);
    transform-origin: 50% 50%;
  }
}

/* Highlight Color */
::-moz-selection {
  background-color: #1c60ae !important; /* Hier die gewünschte Hintergrundfarbe einfügen */
  color: #ffffff !important; /* Hier die gewünschte Textfarbe einfügen */
}
::selection {
  background-color: #1c60ae !important; /* Hier die gewünschte Hintergrundfarbe einfügen */
  color: #ffffff !important; /* Hier die gewünschte Textfarbe einfügen */
}/*# sourceMappingURL=main.css.map */