/*======================*/
/*Ab hier Checkbox*/
/*======================*/

/* Die Checkbox */
.container {
   display: block;
   position: relative;
   padding-left: 20px;
   margin-bottom: 0Px;
   cursor: pointer;
   font-size: 14px;
   -webkit-user-select: none;
   -moz-user-select: none;
   -ms-user-select: none;
   user-select: none;
   display: inline-block;
}

/* Die Default Checkbox ausblenden */
.container input {
   position: absolute;
   opacity: 0;
   cursor: pointer;
}

/* Erstelle eine eigene Checkbox */
.checkmark {
   position: absolute;
   top: 2;
   left: 3;
   height: 15px;
   width: 15px;
   background-color: #060083;
}

/* By mouseover Farbe ändern */
.container:hover input ~ .checkmark {
   background-color: #FFCC33;
}

/* Hintergrundfarbe, wenn die Checkbox geklickt wurde*/
.container input:checked ~ .checkmark {
   background-color: #060083;
}

/* Erstelle den checkmark/indicator wenn die Checkbox nicht geklickt ist */
.checkmark:after {
   content: "";
   position: absolute;
   display: none;
}

/* Zeige die checkmark wenn die Checkbox geklickt wurde */
.container input:checked ~ .checkmark:after {
   display: block;
}

/* Aussehen des Hakens */
.container .checkmark:after {
   left: 4px;
   top: 0px;
   width: 5px;
   height: 10px;
   border: solid white;
   border-width: 0 3px 3px 0;
   -webkit-transform: rotate(45deg);
   -ms-transform: rotate(45deg);
   transform: rotate(45deg);
   border-color:#FFCC33;
}

/*======================*/
/*Ab hier Radiobutton*/
/*======================*/

/* Der Radiobutton */
.container_radio {
    display: block;
    position: relative;
    padding-left: 1px;
    padding-top: 1px;
    margin-bottom: 1px;
    cursor: pointer;
    font-size: 22px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    display: inline-block;
}

/* Hide the browser's default radio button */
.container_radio input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

/* Create a custom radio button */
.checkmark_radio {
    position: absolute;
    top: 2;
    left: 2;
    height: 15px;
    width: 15px;
    background-color: #000000;
    border-radius: 50%;
}

/* On mouse-over, add a grey background color */
.container_radio:hover input ~ .checkmark_radio {
    background-color: #FFFFFF;
}

/* When the radio button is checked, add a blue background */
.container_radio input:checked ~ .checkmark_radio {
    background-color: #000000;
}

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

/* Show the indicator (dot/circle) when checked */
.container_radio input:checked ~ .checkmark_radio:after {
    display: block;
}

/* Style the indicator (dot/circle) */
.container_radio .checkmark_radio:after {
 	top: 3px;
	left: 4px;
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: #FFFFFF;
}