/* This stylesheet is used to style the public view of the plugin. */

.ui-datepicker{
	z-index: 2000 !important;
}



	.asennus_cb {
		-webkit-appearance: none;
		-moz-appearance: none;
		appearance: none;
		margin: auto;
		cursor: pointer;
		outline: none;
		height: 0.8em;
		width: 2.2em;
		background-color: #999999;
		-webkit-transition: 0.3s;
		-o-transition: 0.3s;
		transition: 0.3s;
		position: relative;
		border-radius:5px;
	}
	.asennus_cb:before {
		content: "";
		position: absolute;
		width: 1.3em;
		height: 1.3em;
		border-radius:20px;
		left:-0.1em;
		top:-0.25em;
		background-color: #4a5051;
		color: #d8d8d8;
		-webkit-transition: 0.3s;
		-o-transition: 0.3s;
		transition: 0.3s;
	}
	.asennus_cb:checked {
		background: -o-linear-gradient(315deg, #55e7d4, #19c166);
		background: linear-gradient(135deg, #55e7d4, #19c166);
	}
	.asennus_cb:checked:before {
		content: "";
		color: #f9f6f6;
        left: 1.1em;
		background-color: #1c926b;
	}