input[type=radio].my-radiobtn {
	position:absolute;
	z-index:-1000;
	left:-1000px;
	overflow: hidden;
	clip: rect(0 0 0 0);
	height:1px;
	width:1px;
	margin:-1px;
	padding:0;
	border:0;
}

input[type=radio].my-radiobtn + label.my-label {
	padding-left:55px;
	margin-left: 20px;
	height:30px;
	display:inline-block;
	line-height:30px;
	background-repeat:no-repeat;
	background-position: 0 0;
	/*font-size:1.2em;*/
	vertical-align:middle;
	cursor:pointer;

}

input[type=radio].my-radiobtn:checked + label.my-label {
	background-position: 0 -30px;
}

label.my-label {
	background-image:url(../img/radio.png);
	-webkit-touch-callout: none;
	-webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

/* ---- Settings Form */
.settings-form input {
	font-size: 1.4em;
	margin-left: 20px;
	width: 220px;
	vertical-align: super;
	position: relative;
	height: 30px;
	padding: 8px;
	outline: none;
	border: none;
}

.settings-form *:focus {
	outline: none;
	background: #f6f6f6;
	border: none;
	height: 30px;
	padding: 8px;
	border-radius: 5px;
}

.clear-box,.close-icon,.search-wrapper {
	position: relative;
	/*padding: 5px;*/
}
.clear-wrapper {
	margin: 0;
	padding: 0;
	z-index: 0;
}
.clear-box {
	/*border: 1px solid transparent;*/
  	outline: 0;
  	/*border-radius: 5px;*/
}

button.close-icon {
	margin: 0;
	padding: 0;
	width: 30px;
	height: 30px;
	border:1px solid transparent;
	background-color: transparent;
	display: inline-block;
	vertical-align: middle;
  	outline: 0;
  	cursor: pointer;
}
.close-icon:after {
	content: "X";
	display: block;
	width: 16px;
	height: 16px;
	position: absolute;
	background-color: #ddd;
	z-index:1;
	right: 38px;
	top: -7px;
	bottom: 0;
	margin: auto;
	padding: 1px 0 0 0px;
	border-radius: 50%;
	text-align: center;
	color: white;
	font-weight: normal;
	/*font-size: 10px;*/
	cursor: pointer;
}
.clear-box:not(:valid) ~ .close-icon {
	display: none;
}


/* Checkbox BewillStyle #17BE99 */

input[type=checkbox].css-checkbox {
	position:absolute;
	z-index:-1000;
	left:-1000px;
	overflow: hidden;
	clip: rect(0 0 0 0);
	height:1px;
	width:1px;
	margin:-1px;
	padding:0;
	border:0;
}

input[type=checkbox].css-checkbox + label.css-label {
	padding-left:24px;
	height:19px;
	display:inline-block;
	line-height:19px;
	background-repeat:no-repeat;
	background-position: 0 0;
	font-size:1.9em;
	vertical-align:middle;
	cursor:pointer;

}

input[type=checkbox].css-checkbox:checked + label.css-label {
	background-position: 0 -19px;
}

label.css-label {
	background-image:url(../img/checkbox.png);
	-webkit-touch-callout: none;
	-webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}


/* *************** Checkbox with CSS only -> no image
<div class="roundedOne">
      <input type="checkbox" value="None" id="roundedOne" name="check" checked />
      <label for="roundedOne"></label>
    </div>


.roundedOne {
  width: 28px;
  height: 28px;
  position: relative;
  margin: 20px auto;
  background: transparent;
  border: 1px solid #ddd;
  border-radius: 50px;

  label {
    width: 20px;
    height: 20px;
    cursor: pointer;
    position: absolute;
    left: 4px;
    top: 4px;
    border-radius: 50px;
    &:after {
      content: '';
      width: 16px;
      height: 16px;
      position: absolute;
      top: 1px;
      left: 1px;
      background: $activeColor;
      opacity: 0;
      border-radius: 50px;
    }
    &:hover::after {
      opacity: 0.3;
    }
  }
  input[type=checkbox] {
    visibility: hidden;
    &:checked + label:after {
      opacity: 1;
    }
  }
}
