

        /* Tooltip container */
        .tooltip {
            position: relative;
            display: inline-block;
            font-size: 0.8em;
        }

        .tooltip-runner {
            color: white;
            background-color: rgba(0, 0, 0, 0.4);
            font-size: 13px;
            font-family: Verdana, Geneva, Tahoma, sans-serif;
            font-weight: bold;
            padding: 5px;
        }

        /* Tooltip text */
        .tooltip .tooltiptext {
            font-size: 0.9em;
            line-height: 1.3em;
            visibility: hidden;
            width: 120px;
            background-color: #333;
            color: #ccc;
            text-align: left;
            padding: 10px 15px;
            border-radius: 6px;

            /* Position the tooltip text - see examples below! */
            position: absolute;
            z-index: 2147483647;
        }
        .tooltip .tooltiptext a {
            color: #ccc;
            text-decoration: underline;
        }

        /* Show the tooltip text when you mouse over the tooltip container */
        .tooltip:hover .tooltiptext {
            visibility: visible;
        }

        .tooltip .tooltiptext {
            width: 300px;
            bottom: 100%;
            left: 50%;
            margin-left: -250px; /* Use half of the width (120/2 = 60), to center the tooltip */
        }

        .tooltip .tooltiptext {
            opacity: 0;
            transition: opacity 1s;
        }

        .tooltip:hover .tooltiptext {
            opacity: 1;
        }

        .tooltip .tooltiptext::after {
            content: " ";
            position: absolute;
            z-index:2147483647;
            top: 100%; /* At the bottom of the tooltip */
            left: 250px;
            margin-left: -5px;
            border-width: 5px;
            border-style: solid;
            border-color: #333 transparent transparent transparent;
        }

        ::placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */
          color: #bbb;
          opacity: 1; /* Firefox */
        }

        :-ms-input-placeholder { /* Internet Explorer 10-11 */
          color: #bbb;
        }

        ::-ms-input-placeholder { /* Microsoft Edge */
          color: #bbb;
        }

        .evw_input {
            font-size:1em;
            background: #fff;
            border: 1 px solid #CCC;
            color: #111;
            display:inline-block;
            margin-bottom:10px;
            padding: 5px 10px;
            width: 100%;
            -webkit-box-sizing: border-box; /* Safari/Chrome, other WebKit */
            -moz-box-sizing: border-box;    /* Firefox, other Gecko */
            box-sizing: border-box;         /* Opera/IE 8+ */

        }

        .evw_formular {
            line-height: 1.5em;
        }
        .evw_nadpis {
            font-size: 1.2em;
            margin:1em 0 !important;
        }
        .evw_nadpis span {
            font-weight:bold;
        }
        .evw_suhlas {
            font-size: 0.8em;
        }

        .evw_myButton {
        	-moz-box-shadow:inset 0px 1px 0px 0px #9acc85;
        	-webkit-box-shadow:inset 0px 1px 0px 0px #9acc85;
        	box-shadow:inset 0px 1px 0px 0px #9acc85;
        	background:-webkit-gradient(linear, left top, left bottom, color-stop(0.05, #74ad5a), color-stop(1, #68a54b));
        	background:-moz-linear-gradient(top, #74ad5a 5%, #68a54b 100%);
        	background:-webkit-linear-gradient(top, #74ad5a 5%, #68a54b 100%);
        	background:-o-linear-gradient(top, #74ad5a 5%, #68a54b 100%);
        	background:-ms-linear-gradient(top, #74ad5a 5%, #68a54b 100%);
        	background:linear-gradient(to bottom, #74ad5a 5%, #68a54b 100%);
        	filter:progid:DXImageTransform.Microsoft.gradient(startColorstr=\'#74ad5a\', endColorstr=\'#68a54b\',GradientType=0);
        	background-color:#74ad5a;
        	-moz-border-radius:9px;
        	-webkit-border-radius:9px;
        	border-radius:9px;
        	border:1px solid #3b6e22;
        	display:inline-block;
        	cursor:pointer;
        	color:#ffffff;
        	font-family:Arial;
        	font-size:1.3em;
        	font-weight:bold;
        	padding:13px 24px;
        	text-decoration:none;
            text-align: center;
            width: 100%;
            margin-top:10px;
            -webkit-box-sizing: border-box; /* Safari/Chrome, other WebKit */
            -moz-box-sizing: border-box;    /* Firefox, other Gecko */
            box-sizing: border-box;         /* Opera/IE 8+ */
        }
        .evw_myButton:hover {
        	background:-webkit-gradient(linear, left top, left bottom, color-stop(0.05, #68a54b), color-stop(1, #74ad5a));
        	background:-moz-linear-gradient(top, #68a54b 5%, #74ad5a 100%);
        	background:-webkit-linear-gradient(top, #68a54b 5%, #74ad5a 100%);
        	background:-o-linear-gradient(top, #68a54b 5%, #74ad5a 100%);
        	background:-ms-linear-gradient(top, #68a54b 5%, #74ad5a 100%);
        	background:linear-gradient(to bottom, #68a54b 5%, #74ad5a 100%);
        	filter:progid:DXImageTransform.Microsoft.gradient(startColorstr=\'#68a54b\', endColorstr=\'#74ad5a\',GradientType=0);
        	background-color:#68a54b;
        }
        .evw_myButton:active {
        	position:relative;
        	top:1px;
        }
        .evw_myButton_cont {
            width: 100%;
        }

        .evw_consent, .evw_radio {
            color: #333 !important;
            font-size: 17px !important;
        }

        .evw_consent input, .evw_radio input {
            position: inherit !important;
            opacity: 1 !important;
        }