/* 모달창 떴을 때 스크롤 움직일 수 없게 임시로 css 적용, 추후 js에서 이벤트로 */
		.list_modal2 {
			width: 100%;
			height: 100%;
			position: fixed;
			overflow-y: auto;
			top: 0;
			left: 0;
			background-color: rgba(0, 0, 0, 0.7);
			z-index: 10000;
			display: none;
		}

		/* 간단 견적서 모달 pc */
		.list_modal2 .modal_sheet {
			background-color: #ffffff;
			width: 750px;
			position: absolute;
			top: 50%;
			left: 50%;
			transform: translateX(-50%) translateY(-50%);
			border-radius: 4px;
			
		}

		/* 간단 견적서 모달 pc */
		.list_modal2 .modal_sheet_head {
			border-bottom: 1px solid #777;
		}

		/*
		.modal_sheet .del_btn {
			position: absolute;
			margin-left: 715px;
		}
		*/

		.modal_sheet .del_btn img {
			width: 24px;
			height: 24px;
		}

		.modal_sheet .logo_img img {
			width: 125px;
		}
		
		.modal_sheet .time_img {
			position: absolute;
			margin-left: 465px;
		}

		.modal_sheet .time_img img {
			width: 40px;
		}

		.sheet_card img {
			width: 330px;
			height: 170px;
		}

		.sheet_input input {
			width: 80%;
			height: 32px;
			padding-left: 5px;
			border: 1px solid #CACACA;
			border-radius: 4px;
		}

		.sheet_btn button {
			background-color: #999;
			color: #fff;
			border: none;
			width: 48px;
			height: 30px;
			border-radius: 4px;
			margin-left: 5px;
		}