@charset "UTF-8";

/* 배송 조회 팝업 */
#delivery_info_popup .popup_box { 
   position: relative;
   top:50%;
   left:50%; 
   width:350px;
   height:auto;
   transform:translate(-50%, -50%);
   z-index:1002;
   box-sizing:border-box;
   background:#fff;
   box-shadow: 2px 5px 10px 0px rgba(0,0,0,0.35);
   -webkit-box-shadow: 2px 5px 10px 0px rgba(0,0,0,0.35);
   -moz-box-shadow: 2px 5px 10px 0px rgba(0,0,0,0.35);
}
#delivery_info_popup .pop_header { 
	display: flex;
	justify-content: center;
	align-items: center;
	color: #000;
	padding: 10px;
}
#delivery_info_popup .pop_header a { 
	position: absolute;
	right: 10px;
}
#delivery_info_popup .pop_body { 
	color: #000;
}
#delivery_info_popup #dlvNoList { 
	display:flex;
	justify-content: space-evenly;
	font-weight: bold;
	position: relative;
}
#dlvNoList li { 
	width: 100%;
	color: #a7a7a7;
	border-bottom: 3px solid #87c8ff;
	background-color: #fff;
	border-radius: 12px 12px 0 0;
	display: flex;
	justify-content: center;
	text-align: center;
	word-break: break-word;
}
#delivery_info_popup #dlvNoList li.active {
	color: #000;
	border: 3px solid #87c8ff;
	border-color: #87c8ff;
	border-bottom-color: #fff;
	position: relative;
}

#delivery_info {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 6px;
	padding-bottom: 10px;
}
#delivery_info .info_title {
	color: #878787;
	border: 2px solid #878787;
	border-radius: 20px;
	text-align: center;
	font-weight: bold;
	padding: 0 10px;
}
#delivery_no {
	font-size: 20px;
	font-weight: bold;
}
#delivery_nm {
	font-size: 17px;
}

#delivery_stts { 
	display: flex;
	justify-content: space-between;
	padding: 10px 5px;
	position: relative;
}
#delivery_stts .dlv_stts{ 
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 2px;
	width: 65px;
	position: relative;
}
#delivery_stts .dlv_stts span{ 
	font-size: 12px;
	font-weight: 500;
	color: #919191;
}
#delivery_stts .dlv_stts_image{ 
	display: flex;
	justify-content: center;
	align-items: center;
	width: 45px;
	height: 45px;
	background-color: #f5f5f5;
	border-radius: 20%;
	padding: 9px;
}
/* 현상태 */
#delivery_stts .passed > .dlv_stts_image{ 
	background-color: #c9c9c9 !important;
	color: #919191;
}
/* 과거 이력 */
#delivery_stts .now > .dlv_stts_image{ 
	background-color: #87c8ff !important;
	color: #919191;
}
#delivery_stts .dlv_stts.now::before {
    content: "";
    display: block;
    position: absolute;
    top: 16px;
    left: -15%;
    width: 18px;
    height: 18px;
    z-index: 0;
    background-image: url(/images/delivery_trackging/delv_right.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}
#delivery_stts .now > span{ 
	color: #000;
}
#delivery_stts .dlv_stts_step{ 
	width: 40px;
	height: 3px;
	background-color: #f5f5f5;
	position: absolute;
	top: 36%;
	z-index: -1;
}

#delivery_history {
	position: relative;
	padding-top: 10px;
	max-height: 240px;
	overflow: auto;
}
#delivery_timeline {
	width: 3px;
	margin:26px 0;
	position: absolute;
    background-color: #878787;
    left: 24px;
    z-index: -1;
}
#delivery_history_info {
	display: flex;
	flex-direction: column;
}
#delivery_history .history_info {
	font-weight: bold;
	color: #919191;
	padding: 5px 0;
}

#delivery_history .history_bar {
	display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 15%;
    padding: 0 25px;
}
#delivery_history .circle {
	height: 11px;
    width: 11px;
    background-color: #fff;
	border: 2px solid #878787;
    border-radius: 50%;
}
#delivery_history .circle.filled {
	background-color: #878787;
}
#delivery_history_info .history_dsc {
	display: flex;
	width: calc(100% - 53px);
}
#delivery_history_info .history_date {
	text-align: left;
	font-weight: bold;
	margin-right: 20px;
}
#delivery_history_info .history_text {
	display: flex;
	justify-content: space-between;
	width: calc(100% - 100px);
}
#delivery_history_info .last_history {
	font-weight: bold;
	color: #000;
}
#delivery_history_info .last_status {
	color: #4a93d1;
}