/* 
Theme Name: Hello Elementor Child
Theme URI: https://github.com/elementor/hello-theme-child/
Description: Hello Elementor Child is a child theme of Hello Elementor, created by Elementor team
Author: Elementor Team
Author URI: https://elementor.com/
Template: hello-elementor
Version: 2.0.0
Text Domain: hello-elementor-child
License: GNU General Public License v3 or later.
License URI: https://www.gnu.org/licenses/gpl-3.0.html
Tags: flexible-header, custom-colors, custom-menu, custom-logo, editor-style, featured-images, rtl-language-support, threaded-comments, translation-ready
*/

html {
	scroll-padding-top: 65px;
	overflow-y: scroll;
	scrollbar-width: none;
	-ms-overflow-style: none;
}

html::-webkit-scrollbar {
	display: none;
}

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

/* Mobile No Break */
@media(max-width: 1024px) {
	br.mnb { display: none; }
}
/* Mobile Do Break */
@media(min-width: 410px) {
	br.mb { display: none; }
}

/* Boxes glass optics */
.glass-blurry {
    z-index: 2000;
    border-top: 1px solid rgba(256,256,256,.4);
    border-left: 1px solid rgba(256,256,256,.4);
    border-radius: 25px;
    background-color: rgba(256,256,256,.2);
    backdrop-filter: blur(8px);
    box-shadow: 0px 10px 30px 5px rgba(0,0,0,0.2);
}

/* Wrapper der Slider-Boxen */
.slider-wrapper {
	.elementor-widget-text-editor {
		height: 280px;
		overflow-x: hidden;
		overflow-y: scroll;
		padding-bottom: 0 !important;
		
		p {
			padding-bottom: 75px;
		}
		
		-webkit-mask-image: linear-gradient(
			to bottom,
			black 50%,
			/* black calc(100% - 150px), */
			transparent 100%
		);
		mask-image: linear-gradient(
			to bottom,
			black 50%,
			/* black calc(100% - 150px), */
			transparent 100%
		);
		
		/* Scrollbar Breite */
		&::-webkit-scrollbar {
		  width: 8px;
		}
		
		/* Hintergrund der Scrollbar */
		&::-webkit-scrollbar-track {
		  background: #22222222;
		  border-radius: 10px;
		}
		
		/* Scroll-Thumb */
		&::-webkit-scrollbar-thumb {
		  background: #22222233;
		  border-radius: 10px;
		}
		
		/* Hover */
		&::-webkit-scrollbar-thumb:hover {
		  background: #22222266;
		}
	
	}	
}

/* Carousel custom styling */
.ext-slider-cont {
	@media(min-width:400px) {
		/*mask-image: linear-gradient(to right, black 75%, transparent 100%);
		-webkit-mask-image: linear-gradient(to right, black 75%, transparent 100%);*/
		mask-image: linear-gradient(to right, transparent 0%, black 20%, black 80%, transparent 100%);
		-webkit-mask-image: linear-gradient(to right, transparent 0%, black 20%, black 80%, transparent 100%);
  	}
}

.extended-slider {

	.swiper {
		overflow: visible;
	}
	.elementor-swiper-button {
		display: none !important;
	}
	
	.swiper-pagination-bullet {
    	opacity: .5 !important;
	}
	
	.swiper-pagination-bullet-active {
    	width: 32px !important;
	    border-radius: 10px !important;
    	background: linear-gradient(135deg, var(--e-global-color-primary), var(--e-global-color-secondary)) !important;
	    opacity: .5 !important;
	    transition: all .5s;
	}
	
	.swiper-wrapper {
		@media(max-width:767px) {
			.swiper-slide {
				transition: transform .75s;
			
				&.swiper-slide-prev {
					transform: translateX(45px);
				}
				&.swiper-slide-next {
					transform: translateX(-45px);
				}
			}
		}
	}
}

/* Menü V2.0 */
.elementor-menu-toggle {
	
	@media(max-width:767px) {
		z-index: 13 !important;
	}
}

.elementor-nav-menu--dropdown {
	padding-top: 18px;
	padding-bottom: 15px;
	border-radius: 0 0 18px 18px;
	
	@media(max-width:767px) {
		z-index: 12 !important;
		position: fixed;
		right: 0;
		left: 0;
		top: 15px;
	}
	
	.menu-item i {
		font-style: normal;
		font-weight: 700;
		color: #fff;
	}

}

/* Menü V3.0 */
.smart-nav {
	i {
		font-style: normal;
		font-weight: 700;
		color: #fff;
	}
}

/* Formular */
.elementor-form {
	.elementor-message-success { display: none; }
}

.elementor-field-type-acceptance {
	padding: 1em 0 0 35px !important;
	@media(max-width: 410px) { margin-bottom: 2em !important; }
	
	.elementor-field-subgroup {
		line-height: 1;
	}
	
  input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
    margin: 0;

    &:checked + label::before {
      background-color: var(--e-global-color-primary);
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='none' stroke='%23ffffff' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round' d='M3 8l3.5 3.5L13 4'/%3E%3C/svg%3E");
      background-size: 12px;
      background-repeat: no-repeat;
      background-position: center;
    }

    &:focus + label::before {
      outline: 2px solid #0073e6;
      outline-offset: 2px;
    }
  }

  label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
    font-size: 14px;
    color: #444444;
    line-height: 1.2;

    &::before {
      content: "";
      display: inline-block;
      min-width: 20px;
      height: 20px;
      border-width: 0;
      border-radius: 4px;
      background-color: #ffffff66;
      transition: all 0.2s ease;
      margin-top: 2px;
      margin-right: 8px;
      margin-left: -28px;
      transform: translateY(4px);
    }

    &:hover::before {
      background-color: var(--e-global-color-primary);
    }

    a {
      color: #fff;
      text-decoration: underline;
    }
  }
}

/* Friendly Captcha */
.elementor-field-type-frcaptcha {
	.frc-captcha {
		background-color: #ffffff00;
		border: none;
		
		.frc-content {
			flex-direction: column;
			
			@media(min-width: 768px) {
				flex-direction: row-reverse;
				align-items: center;
			}
			flex-grow: 0;
			gap: 10px;
		}
		
		.frc-text {
			color: #fff;
		}
		
		.frc-icon {
			fill: #ffffff66;
			stroke: #ffffff00;
			margin: 0 8px 0 -3px;
		}
		
		.frc-button {
			color: #fff;
			@media(min-width: 768px) {
				width: 50%;
			}
		}
		
		.frc-banner {
			position: absolute;
			left: -10000em;
		}
	}
}












