@import url('https://fonts.googleapis.com/css?family=Roboto:300,400,500,700,900');
@import url('https://use.fontawesome.com/releases/v5.6.3/css/all.css');

.file div {
	display:inline-block;
}

.file input {
	display:none;
}

.file .btn {
	display:inline-block;
	background:#6686c7;
	padding:10px 15px;
	color:#fff;
	cursor: pointer;
}

.file .btn:hover {
	background:#769ce8;
}

.file .result {
	border-top:1px solid #ccc;
	border-right:1px solid #ccc;
	border-bottom:1px solid #ccc;
	height:33px;
	font-size: 14px;
	padding:0 15px;
	font-size:13px;
	line-height:2.5;
	margin-top:0px;
	vertical-align:top;
	color:#777;
	width: 200px;
	overflow: hidden;
	position:relative;
	background: #fff;
	margin-right:15px
}

.file .result:before {
	content:'';
	display:block;
	width:15px;
	height:29px;
	background:#fff;
	position:absolute;
	right:0;
	top:1px;
} 

.radio, .checkbox {
	margin-bottom:5px;
	font-size:13px;
	display: inline-block;
	margin-right: 10px;
}

.radio input, .checkbox input {
	display:none;
}

.checkbox .check {
	display:inline-block;
	width: 36px;
	height: 20px;
	border-radius:30px;
	background: #eaeaea;
	vertical-align:middle;
	cursor: pointer;
	box-shadow: inset 0 0 10px rgba(0,0,0,0.1);
	position: relative;
	transition:all .3s;
}

.checkbox .check:before{
	content:'';
	display:block;
	position:absolute;
	top: 2px;
	left: 2px;
	width: 16px;
	height: 16px;
	border-radius:50%;
	background: #fff;
	background: linear-gradient(#fff, #e8e8e8);
	box-shadow: inset 0 0 11px #fff, 0 0 3px rgba(0,0,0,0.1);
	transition:all .3s;
}

.checkbox input:checked + .check {
	background: #6686c7;
}

.checkbox input:checked + .check:before{
	left: 18px;
}

.radio .rad {
	display:inline-block;
	width:22px;
	height:22px;
	border-radius:30px;
	background: #eaeaea;
	vertical-align:middle;
	cursor: pointer;
	border: 1px solid #ddd;
	box-shadow: inset 0 0 10px rgba(0,0,0,0.1);
	position: relative;
	transition:all .3s;
}

.radio .rad:before{
	content:'';
	display:block;
	position:absolute;
	opacity: 0;
	top: 3px;
	left: 3px;
	width: 16px;
	height: 16px;
	border-radius:50%;
	background: #fff;
	background: linear-gradient(#fff, #e8e8e8);
	box-shadow: inset 0 0 11px #fff, 0 0 3px rgba(0,0,0,0.1);
	transition:all .3s;
}

.radio input:checked + .rad:before{
	opacity:1;
}

