/* 
Theme Name: Hello Elementor Child
Theme URI: https://github.com/elementor/hello-theme/
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: 1.0.1
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
*/




/* Fluid Typography
.dialog-message – overrides fixed font-size in pop ups
.elementor-icon – makes icon size fluid too (size einstellungen in elementor style tab overrides this!)
*/

html, body {
  height: 100%;
}



html, .dialog-message, .elementor-icon {
  font-size: 16px;
}
@media screen and (min-width: 786px) {
  html, .dialog-message, .elementor-icon {
    font-size: calc(16px + 4 * ((100vw - 768px) / 1232)); 
   /*
    font-size: calc([minimum size] + ([maximum size] - [minimum size]) * ((100vw - [minimum viewport width]) / ([maximum viewport width] - [minimum viewport width])));
   */
  }
}
@media screen and (min-width: 2000px) {
  html, .dialog-message, .elementor-icon {
    font-size: 20px;
  }
}


.dialog-message {
	line-height: 1;
}

p {
	margin: 0;
}

h1, h2, h3, h4, h5, h6 {
	margin: 0;
	padding: 0;
}

/** Link Farbe bei roter Schrift
.links-rot a, .links-rot a:visited, .links-rot a:active {
	color: #000;
}

.links-rot a:hover {
	color: #fc3232;
}


/** Icon size -- in elementor standard 1em - skaling ist im Fluid Type mit defininert */

.elementor-icon svg {
	width: 1.2em;
	height: 1.2em;
}



/** Open Type Features***


body {

	display: flex;
    flex-direction: column;
    /* sticky footer stuff *
	
	font-feature-settings: "onum";
	-moz-font-feature-settings: "onum";
	-webkit-font-feature-settings: "onum";
	color: #000;

   font-variant-ligatures: no-contextual;
   -moz-font-feature-settings: "calt" 0;
   -webkit-font-feature-settings: "calt" 0;
   font-feature-settings: "calt" 0;
		  
	font-variant-ligatures: discretionary-ligatures;
	-moz-font-feature-settings: "dlig";
	-webkit-font-feature-settings: "dlig";
	font-feature-settings: "dlig";	
}


