/*!
Theme Name: Polysan
Theme URI: http://www.dockner.com/
Author: Daniel Platzer @ Dockner Druck@Medien
Author URI: http://www.dockner.com/
Version: 1.0.57.3011
Template: hello-elementor
Text Domain: ddm
*/
.elementor-document-handle {
  pointer-events: none;
  display: none !important;
}

.elementor-editor-active:not(.elementor_library-template-default) .elementor-location-header,
.elementor-editor-active:not(.elementor_library-template-default) .elementor-location-footer {
  pointer-events: none;
}

.custom-scroll-bar::-webkit-scrollbar {
  width: 7px;
  background: #f7f6f5;
}
.custom-scroll-bar::-webkit-scrollbar-thumb {
  background: #54595f;
  border-radius: 20px;
}
.custom-scroll-bar::-webkit-scrollbar-thumb:hover {
  background: var(--e-global-color-primary);
}
.custom-scroll-bar {
  scrollbar-width: thin;
  scrollbar-color: #54595f #f7f6f5;
}

.elementor-widget-text-editor h1:first-child,
.elementor-widget-text-editor h2:first-child,
.elementor-widget-text-editor h3:first-child,
.elementor-widget-text-editor h4:first-child,
.elementor-widget-text-editor h5:first-child,
.elementor-widget-woocommerce-product-content h1:first-child,
.elementor-widget-woocommerce-product-content h2:first-child,
.elementor-widget-woocommerce-product-content h3:first-child,
.elementor-widget-woocommerce-product-content h4:first-child,
.elementor-widget-woocommerce-product-content h5:first-child {
  margin-top: 0;
}
.elementor-widget-text-editor h1:last-child,
.elementor-widget-text-editor h2:last-child,
.elementor-widget-text-editor h3:last-child,
.elementor-widget-text-editor h4:last-child,
.elementor-widget-text-editor h5:last-child,
.elementor-widget-text-editor p:last-child,
.elementor-widget-woocommerce-product-content h1:last-child,
.elementor-widget-woocommerce-product-content h2:last-child,
.elementor-widget-woocommerce-product-content h3:last-child,
.elementor-widget-woocommerce-product-content h4:last-child,
.elementor-widget-woocommerce-product-content h5:last-child,
.elementor-widget-woocommerce-product-content p:last-child {
  margin-bottom: 0;
}

.elementor-widget-image img {
  width: auto;
  height: auto;
}

.elementor-widget-woocommerce-my-account .e-my-account-tab .woocommerce .woocommerce-MyAccount-navigation ul li a:hover {
  color: white;
}
.elementor-widget-woocommerce-my-account .e-my-account-tab .woocommerce .woocommerce-MyAccount-navigation ul li.is-active a {
  color: white;
}

html {
  font-family: sans-serif;
  font-size: var(--e-global-typography-text-font-size);
  line-height: 1.3em;
  color: #000;
  background: #fff;
}


*,
*::before,
*::after {
  box-sizing: border-box;
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
  color: inherit;
}

*:focus {
  outline: none !important;
}


body,
h1,
h2,
h3,
h4,
p,
ul[class],
ol[class],
figure,
blockquote,
dl,
dd {
  margin: 0;
}


body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  scroll-behavior: smooth;
  text-rendering: optimizeSpeed;
  line-height: 1.2;
}



ul[class],
ol[class],
nav ul,
nav ol {
  padding: 0;
  list-style: none;
}


a:not([class]) {
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
}

img {
  display: block;
  width: auto;
  height: auto;
}

figure img {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
}



input,
button,
textarea,
select {
  font: inherit;
}

button,
input[type=submit],
input[type=reset],
input[type=button] {
  display: inline-block;
  border: none;
  padding: 0;
  margin: 0;
  text-decoration: none;
  cursor: pointer;
  text-align: center;
  -webkit-appearance: none;
  -moz-appearance: none;
}

p:last-child {
  margin-bottom: 0;
}

.sr-only {
  border: 0;
  clip: rect(0, 0, 0, 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}

.sr-only-focusable:active,
.sr-only-focusable:focus {
  clip: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  position: static;
  width: auto;
}

.hide,
.hidden {
  display: none !important;
}


@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
pre {
  font-size: 10px;
  font-weight: normal;
}

.small {
  font-size: 0.8em;
  line-height: 1.2;
}

.smaller {
  font-size: 0.7em;
  line-height: 1.2;
}

.highlighter {
  color: var(--e-global-color-primary);
  font-weight: bold;
}

.alignleft {
  float: left;
  margin: 0.5em 1em 0.5em 0;
}

@keyframes shake {
  0% {
    transform: translate(1px, 1px) rotate(0deg);
  }
  10% {
    transform: translate(-1px, -2px) rotate(-1deg);
  }
  20% {
    transform: translate(-3px, 0px) rotate(1deg);
  }
  30% {
    transform: translate(3px, 2px) rotate(0deg);
  }
  40% {
    transform: translate(1px, -1px) rotate(1deg);
  }
  50% {
    transform: translate(-1px, 2px) rotate(-1deg);
  }
  60% {
    transform: translate(-3px, 1px) rotate(0deg);
  }
  70% {
    transform: translate(3px, 1px) rotate(-1deg);
  }
  80% {
    transform: translate(-1px, -1px) rotate(1deg);
  }
  90% {
    transform: translate(1px, 2px) rotate(0deg);
  }
  100% {
    transform: translate(1px, -2px) rotate(-1deg);
  }
}
@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
.show-on-ajax {
  display: none;
}

.ajax-loading .show-on-ajax {
  display: block;
}

[style*="--aspect-ratio"] > :first-child {
  width: 100%;
}

[style*="--aspect-ratio"] > img {
  height: auto;
}

@supports (--custom: property) {
  [style*="--aspect-ratio"] {
    position: relative;
  }
  [style*="--aspect-ratio"]::before {
    content: "";
    display: block;
    padding-bottom: calc(100% / (var(--aspect-ratio)));
  }
  [style*="--aspect-ratio"] > :first-child {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
  }
}
.svghide {
  position: absolute;
  display: none;
  overflow: hidden;
  width: 0;
  height: 0;
  pointer-events: none;
}

svg path,
svg polygon,
svg g {
  opacity: inherit;
  fill: inherit;
  stroke: inherit;
  stroke-width: inherit;
  transform: inherit;
  margin: inherit;
}

*::-webkit-scrollbar {
  width: 7px;
  background: #f7f6f5;
}
*::-webkit-scrollbar-thumb {
  background: #54595f;
  border-radius: 20px;
}
*::-webkit-scrollbar-thumb:hover {
  background: var(--e-global-color-primary);
}
* {
  scrollbar-width: thin;
  scrollbar-color: #54595f #f7f6f5;
}

html {
  font-size: 13px;
}

body {
  position: relative;
  margin: auto;
  background-color: white;
  overflow-x: hidden;
}

ul {
  margin: 0 0 0.5em 0;
  padding: 0 0 0 1.5rem;
}

li {
  position: relative;
  list-style: none;
  margin-bottom: 0.5rem;
}
.li-neutral-p li:before, .li-neutral-s li:before, .li-check-p li:before, .li-check-s li:before, .li-download-p li:before, .li-download-s li:before {
  content: "";
  position: absolute;
  width: 1rem;
  height: 1rem;
  transform: translate(-1.5rem, 1px);
  background-image: url("../img/li-p.svg");
}
.li-neutral-p li:before {
  background-image: url("../img/li-p.svg");
}
.li-neutral-s li:before {
  background-image: url("../img/li-s.svg");
}
.li-check-p li:before {
  background-image: url("../img/check-p.svg");
}
.li-check-s li:before {
  background-image: url("../img/check-s.svg");
}
.li-download-p li:before {
  background-image: url("../img/download-p.svg");
}
.li-download-s li:before {
  background-image: url("../img/download-s.svg");
}

a {
  position: relative;
  margin-bottom: 0.5rem;
}
.a-download-p a:before, .a-download-s a:before {
  content: "";
  position: absolute;
  width: 1rem;
  height: 1rem;
  transform: translate(-1.5rem, 1px);
}
.a-download-p a:before {
  background-image: url("../img/download-p.svg");
}
.a-download-s a:before {
  background-image: url("../img/download-s.svg");
}

.elementor-top-section.elementor-section-boxed.elementor-section-padding-default .elementor-container {
  padding-left: 4% !important;
  padding-right: 4% !important;
}
@media only screen and (max-width: 1024px) {
  .elementor-top-section.elementor-section-boxed.elementor-section-padding-default .elementor-container {
    padding-left: 20px !important;
    padding-right: 20px !important;
  }
}
@media only screen and (max-width: 766.5px) {
  .elementor-top-section.elementor-section-boxed.elementor-section-padding-default .elementor-container {
    padding-left: 10px !important;
    padding-right: 10px !important;
  }
}

main,
.site-wrapper {
  display: flex;
  flex-direction: column;
  background-color: white;
  height: 100vh;
  width: 100%;
  max-width: calc(1700px + 8% + 20px);
  margin: auto;
}
@media only screen and (max-width: 1024px) {
  main,
.site-wrapper {
    max-width: 1760px;
  }
}
@media only screen and (max-width: 766.5px) {
  main,
.site-wrapper {
    max-width: 1740px;
  }
}

main,
.site-wrapper,
.wrapper-padding {
  padding-left: calc(4% + 10px);
  padding-right: calc(4% + 10px);
}
@media only screen and (max-width: 1024px) {
  main,
.site-wrapper,
.wrapper-padding {
    padding-left: 30px;
    padding-right: 30px;
  }
}
@media only screen and (max-width: 766.5px) {
  main,
.site-wrapper,
.wrapper-padding {
    padding-left: 20px;
    padding-right: 20px;
  }
}

.elementor-location-footer {
  margin-top: auto;
}

.elementor-section .elementor-container {
  flex-wrap: wrap;
}

.media-info {
  font-size: var(--e-global-typography-wpx_text_s-font-size);
  font-weight: 700;
  text-transform: uppercase;
  text-shadow: 0 0 5px rgba(128, 128, 128, 0.7);
  position: fixed;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  background: #eee;
  color: #fff;
  padding: 5px 10px;
  z-index: 10000;
}

@media only screen and (max-width: 766.5px) {
  .d-tablet,
.d-nb,
.d-desktop {
    display: none;
  }
}
@media only screen and (min-width: 766.5001px) and (max-width: 1024px) {
  .d-mobile,
.d-nb,
.d-desktop {
    display: none;
  }
}
@media only screen and (min-width: 1024.0001px) and (max-width: 1024px) {
  .d-mobile,
.d-tablet,
.d-desktop {
    display: none;
  }
}
@media only screen and (min-width: 1024.0001px) {
  .d-mobile,
.d-tablet,
.d-nb {
    display: none;
  }
}
h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
  margin-bottom: 0.5em;
}
p + h1, ul + h1, ol + h1,
p + h2,
ul + h2,
ol + h2,
p + h3,
ul + h3,
ol + h3,
p + h4,
ul + h4,
ol + h4,
p + h5,
ul + h5,
ol + h5,
p + h6,
ul + h6,
ol + h6,
p + .h1,
ul + .h1,
ol + .h1,
p + .h2,
ul + .h2,
ol + .h2,
p + .h3,
ul + .h3,
ol + .h3,
p + .h4,
ul + .h4,
ol + .h4,
p + .h5,
ul + .h5,
ol + .h5,
p + .h6,
ul + .h6,
ol + .h6 {
  margin-top: 1.5em;
}

p {
  margin-bottom: 0.5em;
}
p:last-child {
  margin-bottom: 0;
}

a,
p {
  color: inherit;
  -webkit-hyphens: auto;
          hyphens: auto;
}

a {
  color: inherit;
}
a:hover, a:active, a:visited, a:focus {
  color: inherit;
  text-decoration: none;
}

img {
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: 100%;
}

figure img {
  width: 100%;
  height: auto;
  max-width: 100%;
  max-height: 100%;
}

#site-footer {
  position: relative;
  background: #f2f2f2;
  font-size: 0.8rem;
}
#site-footer h1,
#site-footer h2,
#site-footer h3,
#site-footer h4,
#site-footer h5,
#site-footer h6,
#site-footer .h1,
#site-footer .h2,
#site-footer .h3,
#site-footer .h4,
#site-footer .h5,
#site-footer .h6 {
  font-family: var(--e-global-typography-text-font-family), Sans-serif;
  color: var(--e-global-color-secondary);
  font-size: var(--e-global-typography-wpx_h4-font-size);
  margin-top: 1rem;
  margin-bottom: 0.3;
}
#site-footer p {
  margin-bottom: 0.3;
}
#site-footer .widgets-wrap {
  padding: 1.5rem;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: flex-end;
  gap: 1.5rem;
}
#site-footer .widget-area {
  width: 25%;
  flex-basis: 1;
  flex-grow: 0;
}
#site-footer .site-branding {
  padding: 0 1.5rem;
  margin: 1.5rem 0;
}
#site-footer .site-branding .custom-logo {
  max-height: 50px;
  transform: translateX(-10px);
}

.elementor-widget-theme-post-content .elementor-top-section.elementor-section {
  margin: 0;
}
.elementor-widget-theme-post-content .elementor-top-section.elementor-section-boxed {
  margin: 0;
}

.elementor-column-gap-default > .elementor-column > .elementor-element-populated {
  padding: 0;
}

.elementor-section-wrap {
  display: flex;
  flex-direction: column;
  width: 100%;
}

@media only screen and (min-width: 1024.0001px) {
  .elementor-column[data-col="66"] + .elementor-column[data-col="33"],
.elementor-col-66 + .elementor-col-33 {
    padding-left: 2rem;
  }
}
@media only screen and (min-width: 766.5001px) and (max-width: 1024px) {
  .elementor-column[data-col="66"] + .elementor-column[data-col="33"],
.elementor-col-66 + .elementor-col-33 {
    padding-left: 2rem;
  }
}
@media only screen and (max-width: 766.5px) {
  .elementor-column[data-col="66"] + .elementor-column[data-col="33"],
.elementor-col-66 + .elementor-col-33 {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }
}

.home .hidden-on-home,
.home h1.elementor-heading-title {
  display: none;
}

.qodef-qi-accordion.qodef-style--boxed {
  border: none;
}

.elementor-widget-qi_addons_for_elementor_accordion .qodef-e-title {
  order: 1;
  flex-grow: 1;
}
.elementor-widget-qi_addons_for_elementor_accordion .qodef-e-mark {
  order: 0;
  margin-right: 2rem;
}

.elementor-widget-qi_addons_for_elementor_clients_slider .qodef-qi-swiper-container .swiper-slide img {
  height: 160px !important;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center center;
     object-position: center center;
}

.timeline {
  padding: 0 100px;
}
.timeline .qodef-e-point-holder {
  left: 0 !important;
  z-index: 1;
}
.timeline .qodef-e-content-holder {
  text-align: left;
  padding-left: 10px !important;
  min-width: 100%;
  border-left: 2px solid var(--e-global-color-secondary);
}
/*# sourceMappingURL=style.css.map */
