body, input, textarea, select, button, table {
	width:97%;
    color: #767676;
    font-family: "돋움",dotum,sans-serif;
    font-size: 25px;
    font-weight: normal;
    line-height: 30px;
}

 
		/*자가진단 및 방역 협조안내, 사전등록, 등록취소*/
			.subTitle {
			    color: #fff;
			    padding: 6px 32px;
			    font-size: 13pt;
			    background-color: #676565;
			}
			
			/* 설문조사 폼, 사전등록 폼*/
			#survey_form, #input_form {
				font-size:12pt;
				border:1px solid #676565; 
				padding:10px 10px;
			}	
			
			/* 설문조사 및 방문지점 라디오버튼 width*/
			.col-2 {width: 50%;}
			.col-3 {width: 33%;}
			
			/*질문*/
			#question {
				font-weight:bolder;
			} 
			.only-sr {			    
			    overflow: hidden !important;			    
			    position: absolute !important;			
				left: -9999px !important;
				width: 1px;
				height:1px;
			}		
			
			/*마진설정해줘야 라디오버튼 클릭시 박스에 색이 꽉 채워짐*/
			input + label {margin:0 10px 0 0;}
			
			/* form | radio */
			.radioBtnDesign {display: table;width: 100%; height: 64px; border: 1px solid #4e72bc; /*테두리 선*/			    
			    /*border-radius: 4px;*/ /*라디오버튼 테두리 각을 둥글게*/			    
			    /*box-sizing: border-box;*/ /* ?? */			    
			}
			.radioBtnDesign > div {display: table-cell;	border-left: 1px solid #454a60; /*라디오버튼 구분 선*/	text-align: center;	        				   
		        /*
		        height: 49px;		        
		        line-height: 20px; 없어도 문제 없음 
		        */		        
		    }
		    .radioBtnDesign > div:first-child {border-left: none;}/*맨 왼쪽 경계선 없앰*/
		    .radioBtnDesign label {		        
		        display: block;
		        /*100% 맞춰 줘야지 버튼을 크게 사용가능*/		        
		        height: 100%;	
		        width: 100%;
		        color: #454a60;		        
		        vertical-align: middle;
		        box-sizing: border-box;		        
		        cursor: pointer;		        
		        font-size:32pt;
		        padding:15px;
		    }
		    
		    
		   input[type="radio"]:checked + label{
		        background-color: #4e72bc;
		        color: #fff;
			}
			
			input[type="radio"]:checked + label b{
		        color: yellow !important; /*important 가 없으면 노란색이 안보임..*/
			}