/* 드래그 방지 */
.no-drag {-ms-user-select: none; -moz-user-select: -moz-none; -webkit-user-select: none; -khtml-user-select: none; user-select:none;}

input[type=text],
input[type=password],
input[type=email],
input[type=number],
select
{
	border: 0;
	outline : 0;
	border-radius: 10px;
	background-color: #fefefe;
    line-height: 40px;
    height: 40px;
    text-indent: 10px;
	box-sizing: border-box;
}

input[type=submit],
input[type=button]{
	outline: 0;
	border: 0;
	border-radius: 10px;
	cursor: pointer;
	color: #fff;
	padding: 0;
}
input[type=submit].red,
input[type=button].red{
	/* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#dc3545+0,b50303+100 */
	background: #ff3838; /* Old browsers */
	background: -moz-linear-gradient(top,  #ff3838 0%, #ba2828 100%); /* FF3.6-15 */
	background: -webkit-linear-gradient(top,  #ff3838 0%,#ba2828 100%); /* Chrome10-25,Safari5.1-6 */
	background: linear-gradient(to bottom,  #ff3838 0%,#ba2828 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ff3838', endColorstr='#ba2828',GradientType=0 ); /* IE6-9 */
}
input[type=submit].normal,
input[type=button].normal{
	/* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#dbdbdb+0,919191+100 */
	background: #dbdbdb; /* Old browsers */
	background: -moz-linear-gradient(top,  #dbdbdb 0%, #919191 100%); /* FF3.6-15 */
	background: -webkit-linear-gradient(top,  #dbdbdb 0%,#919191 100%); /* Chrome10-25,Safari5.1-6 */
	background: linear-gradient(to bottom,  #dbdbdb 0%,#919191 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#dbdbdb', endColorstr='#919191',GradientType=0 ); /* IE6-9 */
}
input[type=submit].green,
input[type=button].green{
	/* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#6ddd11+0,299a0b+100 */
	background: #6ddd11; /* Old browsers */
	background: -moz-linear-gradient(top,  #6ddd11 0%, #299a0b 100%); /* FF3.6-15 */
	background: -webkit-linear-gradient(top,  #6ddd11 0%,#299a0b 100%); /* Chrome10-25,Safari5.1-6 */
	background: linear-gradient(to bottom,  #6ddd11 0%,#299a0b 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#6ddd11', endColorstr='#299a0b',GradientType=0 ); /* IE6-9 */
}
input[type=submit].blue,
input[type=button].blue{
	/* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#90badd+0,0a77d5+100 */
	background: #90badd; /* Old browsers */
	background: -moz-linear-gradient(top,  #90badd 0%, #0a77d5 100%); /* FF3.6-15 */
	background: -webkit-linear-gradient(top,  #90badd 0%,#0a77d5 100%); /* Chrome10-25,Safari5.1-6 */
	background: linear-gradient(to bottom,  #90badd 0%,#0a77d5 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#90badd', endColorstr='#0a77d5',GradientType=0 ); /* IE6-9 */
}
input[type=submit].yellow,
input[type=button].yellow{
	/* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#f7eb94+0,e0a400+100 */
	background: #f7eb94; /* Old browsers */
	background: -moz-linear-gradient(top,  #f7eb94 0%, #e0a400 100%); /* FF3.6-15 */
	background: -webkit-linear-gradient(top,  #f7eb94 0%,#e0a400 100%); /* Chrome10-25,Safari5.1-6 */
	background: linear-gradient(to bottom,  #f7eb94 0%,#e0a400 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f7eb94', endColorstr='#e0a400',GradientType=0 ); /* IE6-9 */
}

/*인풋 number타입 화살표 없애기*/
input[type=number]::-webkit-outer-spin-button,
input[type=number]::-webkit-inner-spin-button{
		-webkit-appearance: none;
		margin: 0;
	}
input[type=number] {
    -moz-appearance:textfield;
}
/* 드래그 색상 */
::selection{
	background-color: #00abeb;
	color: #fff;
}

ol, ul {
	margin: 0;padding: 0;
}

a, a:visited, a:link{
	text-decoration: none;
}
