@CHARSET "UTF-8";

/**
    2018-10-31 ykh 
    bootstrap에서 제공하는 css에 대한 custom css 설정
    !important <ㅡ 안넣으면 해당 css는 무시 bootstrap.min.css가 적용됨.
*/

#file {
	color: #EEEEEE;
	background: #999999;
    border: 1px solid;
    display: inline-block;
    
}

/* hr custom */
hr.custom_hr{
	margin-top:7px;
	margin-bottom:7px;
}


/* bootstrap well custom */
.well.etiming-subject2{
    background: rgb(217, 229, 255) !important;
    font-size : 20px !important;
}


/* timestamp title */
.etiming-subject{
	background-color: rgb(217, 229, 255) !important;
	height:50px  !important;
	width:280px !important;
	font-size : 20px !important;
}

/* download input underscore create */
.input-underscore{
	border : none !important;
	border-bottom : 1px solid black !important;
	box-shadow: none !important;
	width: 320px !important;
	height:40px !important;
}


/* result modal size fixed */

/* modal의 위치를 가운데로 설정 */
.modal.modal-center{
	text-align:center !important;
}

.modal-dialog.modal-center{
  /*width:700px !important; width사이즈 고정법*/
  display: inline-block !important;
  text-align: left !important;
  vertical-align: middle !important;	
}

/* 폰 이하 최소 크기에는 기본 설정을 따른다. */
@media screen and(min-width:768px){
	.modal.modal-center:before{
		display:inline-block !important;
    	vertical-align: middle !important; /* onyl inline or inline-block*/
    	content: " " !important;
    	/*height: 100% !important;*/  /* 이거 풀면 화면의 가운데로 팝업창나옴*/
	}
}




 