 
#kartta { 
 position:relative;
 height:100%;
 /*width:50%;*/
 font-size: 12px;
 font-weight: bold;
 color: #333333;
 background-color: powderblue;
 }
 
 .pcc {
  width: 150px;
}

#header {
	 background:powderblue; 
	 height:15px;
	 margin-left: 65px;
	 margin-right: 20px;
	   text-align: right;
	   font-size: 16px;
	   font-weight: 1000;
  text-align: center;
}

 .reset {
	  width:50px;
	  color: white;
	 font-size: 12px;
	 font-weight: bold;
	  background-color: #f44336;
	  float: right;
 } 
 .help {
	  width:50px;
	  color: white;
	 font-size: 12px;
	 font-weight: bold;
	  background-color: #008CBA;
	  float: right;
 }
 
 .submit {
	  width:70px;
	 font-size: 12px;
	 font-weight: bold;
	  background-color: powderblue;
 }
 .submit2 {
	  width:70px;
	 font-size: 12px;
	 font-weight: bold;
	  background-color: powderblue;
 }
 
  .wait {
	   z-index: 100;
	  width:70px;
	 display:none;
	 font-size: 12px;
	 font-weight: bold;
	  background-color: #00FF7F;
 }
 
 .stop {
	  width:70px;
	  color: white;
	 font-size: 12px;
	 font-weight: bold;
	  background-color: #f44336;
	  float: right;
 } 
 
 /* Add a right margin to each icon */
.fa {
  margin-left: -12px;
  margin-right: 8px;
}
 
 .sendOk {
	  width:70px;
	   z-index: 100;
	 display:none;
	 font-size: 12px;
	 font-weight: bold;
	  background-color: #00FF7F;
 }
 
 /* The container padding-left vasen reuna leveys tekstiin */
.container {
  display: block;
  position: relative;
  padding-left: 27px;     
  margin-bottom: 12px;
  cursor: pointer;
  color:white;
  font-size: 16px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

/* Hide the browser's default checkbox */

.container input {
    position: relative;
	left:0px;
	
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}


/* Create a custom checkbox */
.checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 25px;
  width: 25px;
  background-color: #eee;
}

/* On mouse-over, add a grey background color */
.container:hover input ~ .checkmark {
  background-color: #ccc;
}

/* When the checkbox is checked, add a blue background */
.container input:checked ~ .checkmark {
		 font-weight: bold;
  background-color: powderblue;
}

/* Create the checkmark/indicator (hidden when not checked) */
.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

/* Show the checkmark when checked */
.container input:checked ~ .checkmark:after {
  display: block;
   color:#FF4500;
}

/* Style the checkmark/indicator */
.container .checkmark:after {
  left: 9px;
  top: 5px;
  width: 5px;
  height: 10px;
  border: solid #FF4500;
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
 
 
 /*
 .menu-submenu accordion-content input:checked ~ .checkmark {
  background-color: powderblue; /*#2196F3;*/
}
 */
 
 .tooltip {
  position:sticky; /*relative;*/
  display: inline-block;
 /* border-bottom: 1px dotted black;*/
  border-style:none; /* solid;
     border-color: #FF5722; /*red;*/
}

.tooltip .tooltiptext {
  visibility: hidden;
  width: 120px;
  background-color: white; /*powderblue; black; */
   border-style:none; /* solid;*/
   border-color: #FF5722;/*red;*/
  color: red; /*#fff;*/
  text-align:left; 
  border-radius: 6px;
  padding: 5px 0;

  /* Position the tooltip */
  position: absolute;
  z-index: 1;
}

.tooltip:hover .tooltiptext {
  visibility: visible;
   font-size: 10px;
    font-weight: bold;
/*	 text-align:justify; 
   text-justify: inter-word;*/
}