/**
 *
 * Scroll To Top Button Fix (Unlimited Elements Widget Ergänzung)
 *


.kalkulator-wrapper .ue-scroll-to-top {
    position: fixed !important;
    bottom: 5% !important;
    right: 5% !important;
    z-index: 2147483647 !important;
    display: none;
	  visibility: hidden;
    opacity: 0;
    width: 60px;
    height: 60px;
    background-color: #A6B1B6; 
    color: #2A3033;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    box-shadow: none;
    padding: 0;
    border: none;
  }
  
  .kalkulator-wrapper .ue-scroll-to-top:hover {
    background-color: #A40931;
    color: #FBFBFC;
  }
  
  .kalkulator-wrapper .ue-scroll-to-top .ue-scroll-to-cta {
    display: flex; 
    align-items: center;
    justify-content: center;
    flex-direction: column;
    width: 100%;
    height: 100%;
    cursor: pointer;
  }
  
  .kalkulator-wrapper .ue-scroll-to-cta {
    animation: none !important;
  }
  
  .kalkulator-wrapper .ue-scroll-to-cta::before,
  .kalkulator-wrapper .ue-scroll-to-cta::after {
    animation: none !important;
    content: none !important;
  }
  
  
  .kalkulator-wrapper .ue-scroll-to-top .ue-scroll-to-text {
    display: none !important;
  }
  
  .kalkulator-wrapper .ue-scroll-to-top .ue-scroll-to-icon svg {
    fill: #2A3033; 
  }
*/