@charset "utf-8";
/* CSS Document */


.radio {
	vertical-align: middle;
	display: inline-block;
}

.radio input {
    display: none;
}

.radio input + i {
    background: #fff none repeat scroll 0 0;
    border: 1px solid rgba(0, 0, 0, 0.2);
    border-radius: 50%;
    display: inline-block;
    height: 17px;
    position: relative;
    /*transition: all 0.15s ease 0s;*/
    vertical-align: middle;
    margin-right: 5px;
    width: 17px;
}

.radio.check input + i {
    border-radius: 4px;
}


.radio input:disabled + i {
    opacity: 0.35;
}

.radio input:checked  + i { 
    background: #007AFF;
    border-color: #007AFF;
    opacity: 0.75;
}

.radio input:checked  + i.green { 
    background: white;
    border-color: green;
    opacity: 0.75;
}

.radio input + i:before { 
	/*transition: all 0.15s ease 0s;*/
    position: absolute;
	border-radius: 50%;
	content: "";
    left: 0;
    top: 0;
}


.radio input[type="radio"]:checked + i:before {
	width: 15px;
	height: 15px;
    border: 4px solid #fff;
	background: #007AFF;
}



.radio.check input:checked + i:before {
	border-radius: 0;
    border: solid white;
    border-width: 0 2px 2px 0;
    display: block;
    height: 9px;
    width: 6px;
    left: 5px;
	top: 2px;
    transform: rotate(45deg);
}


.radio.check input:checked + i.green:before {
	border-color: green;
}


.switch input + i {
	width: 34px;
	border-radius: 20px;
	box-shadow: 0 0 0 1px #bbb;
	border:0;
    height: 14px;
    transition: all 0.15s ease 0s;
}

.switch input:checked + i {
	box-shadow: none;
}

.switch input + i:before {
	left:0px;
	box-shadow:  0 0 0 1px #bbb;
    height:20px;
    width:20px;	
	background:#FFF;
    top:-2px;
    transition: all 0.15s ease 0s;
    
}

.switch input:checked + i:before {
	left: 50%;
}


/** Checkbox din listarile principale */
.check-svg { display: none; }
.check-svg + svg { color: #3b78e7; vertical-align: middle }
.check-svg:not(:checked) + svg { color: #dddddd; }




/*

.radio.




.switch > i:before {
    border: 1px solid #f0f0f0;
    border-radius: 30px;
    bottom: -1px;
    left: -1px;
    right: -1px;
    top: -1px;
    transition: all 0.2s ease 0s;
}
.switch > i:after, .switch > i:before {
    background-color: #fff;
    content: "";
    position: absolute;
}

.switch > i:after {
    border-radius: 50%;
    bottom: 1px;
    box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.25);
    top: 1px;
    transition: margin 0.3s ease 0s;
   	width: 22px;
}
.switch > i:after, .switch > i:before {
    background-color: #fff;
    content: "";
    position: absolute;
}

*/