
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@100;300;400&display=swap');



body {
	font-family: 'Roboto', sans-serif;
	margin: 0;
	padding: 0;
	overflow: scroll;
	overflow-x: hidden;
}

h1 {
	display: block;
	font-size: 20px;
	padding-top: 10px;
}

.clear {
	display: block;
	width: 100%;
	height: 0px;
	float: none;
	clear: both;
}

._5 { height: 5px;}
._10 { height: 10px;}
._20 { height: 20px;}
._30 { height: 30px;}

.content-search {
	display: flex;
	flex-direction: column;
	align-items: center;
	width: 100%;
	height: auto;
	min-height: 100vh;
}

.form-search {}

.form-search input {
	width: auto;
	min-width: 220px;
	height: 32px;
	padding-left: 10px;
	padding-right: 40px;
	outline: 1px solid;
	outline-color: rgba(190, 190, 190, 1.0);
	border: none;
	border-radius: 2px;
}

.form-search input:focus {
	outline: 1px solid;
	/* outline-color: rgba(245, 129, 30, 1.0); */
	outline-color: rgba(150, 150, 150, 1.0);
	border: none;
}

.form-search input:focus::placeholder {
	color: rgba(50, 50, 50, 1.0);
}

.form-search button {
	width: 40px;
	height: 36px;
	border: none;
	border-radius: 0px 3px 3px 0px;
	color: #ffffff;
	/* background-color: rgba(68, 157, 68, 1.0); */
	background-color: rgba(245, 129, 30, 1.0);

	background-image: url('../images/icon_search.png');
	background-position: center;
	background-size: contain;
	background-repeat: no-repeat;

	position: relative;
	left: -43px;
	cursor: pointer;
}

.timeline-status {
	display: flex;
	flex-direction: column;
	align-items: center;
	width: auto;
	min-width: 1366px;
	max-width: 100%;
	padding: 20px;
}

.master-title {
	font-family: Roboto, sans-serif;
	font-size: 21px;
	color: rgba(130, 130, 130, 1.0);
}

.timeline {
	display: block;
	width: 50%;
	height: 110px;
	background-image: url('../images/timeline_shipping_disabled.svg');
	background-position: center 10px;
	background-size: contain;
	background-repeat: no-repeat;
	position: relative;
}

.status-line {
	display: flex;
	justify-content: space-between;
	background-color: rgba(0, 0, 0, .02);
	width: 100%;

	position: absolute;
	bottom: 0px;
}

.item-status {
	display: inline-block;
	width: 150px;
	font-size: 14px;
	font-weight: 300;
	text-align: center;
	line-height: 90%;
	padding: 5px;
	border-radius: 4px;
	color: rgba(165, 165, 165, 1.0);
}

.item-status.start {
	width: 80px;
	margin-left: -25px;
}

.item-status.ship {
	width: 120px;
}

.item-status.pending {
	width: 120px;
}

.item-status.finished {
	width: 80px;
	margin-right: -25px;
}

.description-timeline {
	display: block;
	width: 50%;
	font-size: 13px;
}

.item-time {
	display: block;
	padding-left: 16px;
	padding-top: 8px;
	padding-bottom: 10px;
	margin-bottom: 15px;
	border-left: 3px solid rgba(0, 0, 0, .33);
	color: rgba(50, 50, 50, 1.0);
}

.description-timeline .timestamp {
	display: block;
	font-weight: bold;
}

.description-timeline .description {
	display: block;
	font-size: 12px;
}









