#klimaform * {
  box-sizing: border-box;
}

/*hide datetimepicker button*/
button.ui-datepicker-trigger {
    display: none;
}

/*Style for datetimepicker */
div#ui-datepicker-div {
    background: white;
    border: 1px solid #0970B8;
	box-shadow: 0 14px 28px rgba(0,0,0,0.25), 0 10px 10px rgba(0,0,0,0.22);
}

#klimaform,
#klimaformfeedback {
  background-color: #ffffff;
  margin: 0 auto 5% auto;
  font-family: Jura;
  width: 100%;
  box-shadow: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24);
  padding: 1em;
}

#klimaform h1,
#klimaform h2{
	text-align: center;
}

.flexwrapper{
	display: flex;
    justify-content: center;
    flex-wrap: wrap;
}
/*Linebreak on Flexitems*/
	.flexbreak{width:100%;}
@media only screen and (min-width: 1200px) {
	.flexbreak{width:0%;}
}
@media only screen and (min-width: 1390px) {
	.flexbreak{width:100%;}
}
@media only screen and (min-width: 1520px) {
	.flexbreak{width:0%;}
}


input, select, textarea {
  padding: 10px;
  width: 100%;
  font-size: 17px;
  font-family: Raleway;
  border: 1px solid #aaaaaa;
}


/* Mark input boxes that gets an error on validation: */
input.invalid {
  background-color: #ffdddd;
}

/* Hide all steps by default: */
.tab {
  display: none;
}

button {
  background-color: #0970B8;
  color: #ffffff;
  border: none;
  padding: 10px 20px;
  font-size: 17px;
  font-family: Raleway;
  cursor: pointer;
}

button:hover {
  opacity: 0.8;
}

#prevBtn {
  background-color: #F36F21;
}

/* Make circles that indicate the steps of the form: */
.step {
  height: 24px;
  width: 24px;
  line-height:24px;
  margin: 0 4px;
  color: white;
  font-weight: bold;
  font-size:20px;
  background-color: #F36F21;
  border: none;  
  border-radius: 25%;
  display: inline-block;
  opacity: 0.5;
  box-shadow: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24);
}

.step.active {
  opacity: 1;
	transform: scale(1.1);
}

/* Mark the steps that are finished and valid: */
.step.finish {
  background-color: #0970B8;
}

/******************************RADIO CSS ****************************/

/* The container */
#klimaform .container {
  display: block;
  width:180px;
  height:180px;
  position: relative;
  cursor: pointer;
  font-size: 22px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
#klimaform .container p {
    position: absolute;
    bottom: -10px;
	width: 100%;
    text-align: center;
	font-weight: bold;
}

.label-wrapper {
	margin:10px; 
	display: inline-block;
	}

/* Hide the browser's default radio button */
.container input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}

/* Create a custom radio button */
.checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 180px;
  width: 180px;
  background-color: #fefefe;
  border-radius: 16px;
  border: 1px solid #ccc;
  overflow:hidden;
  box-shadow: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24);
}

/* On mouse-over, add a blue background color */
.container:hover input ~ .checkmark {
  background-color: #0970B8;
}

/* When the radio button is checked, add a blue background */
.container input:checked ~ .checkmark {
  background-color: #0970B8;
}

/* When the radio button is checked or on hover, change image position*/
.container input:checked ~ .checkmark img,
.container:hover input ~ .checkmark img{
    position: absolute;
    top: -180px;
}

/* Fix pointerclicks on the text*/
.container input ~ p{
	pointer-events: none;
}

/* When the radio button is checked or on hover, change font color */
.container input:checked ~ p,
.container:hover input ~ p  {
  color: #fff;
}

/* Create the indicator (the dot/circle - hidden when not checked) */
.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

/*Google Recaptcha*/

.g-recaptcha{
	clear:both;
	display: block;
	width: fit-content;
	margin-left: auto;
	margin-right: auto;
}

/*last page columns*/

.column-wrapper{
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
}
.column-wrapper .left-column{
	background-size: contain;
	background-position: top center;
	padding:1em;
	background-repeat: no-repeat;

}
.column-wrapper .right-column{
	padding-left: 1em;
	
}
.column-wrapper .left-column,
.column-wrapper .right-column{
	/*padding: 1em;*/
	width:50%;
	display: block;
}
.column-wrapper .bottom-column{
	width: 100%;
	clear: both;
	display: block;
	margin-top: 1em;
}
.column-wrapper .bottom-column textarea{
	width: 100%;
}

@media only screen and (max-width: 800px) {
		
		.column-wrapper .left-column{display: none;}
		.column-wrapper .right-column{width:100%; margin:0px;}
		.column-wrapper{ flex-direction: column;}		
}

#klimaform p.tip{
	width: fit-content;
	margin-left:auto;
	margin-right:auto;
	color: white;
	background: #0970B8;
	padding: 12px;
	border-radius: 8px;
	margin-top: 2em;
}


/********Easy steps**************/

.ez-container{

}

.ez-steps {
  clear: both;
  list-style: none;
  display: flex;
  padding: 0px;
  flex-direction: row;
}
@media only screen and (max-width: 800px) {
		.ez-steps {flex-direction: column;}	
}

.ez-steps li {
	flex: 33%;
	color: #444;
    padding: 1em;
    display: inline-block;
    position: relative;
    counter-increment: inst;
    margin: 1em;
	justify-content: space-between;
    background: rgba(139, 139, 139, 0.1);
	border-radius: 1em;
	box-shadow: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24);
}

.ez-steps li::before {
  content: counter(inst);
  background: rgba(255, 150, 0, 1);
  color: #fff;
  font-size: 1em;
  font-weight: 700;
  font-style: italic;
  text-shadow: 1px 1px rgba(255, 150, 0, 0.5);
  border-radius: 25%;
  font-size: 1.5em;
  text-align: center;
  padding-top: 0;
  left: 50%;
  top: -1em;
  line-height: 2em;
  height: 2em;
  width: 2em;
  position: absolute;
  transform: translate(-50%, 0px);
  transition: all 0.2s ease-in-out;
  z-index: 1;
}
.ez-steps li h2,
.ez-steps li p,
.ez-container h1{
	text-align: center;
}