/**  common.css 上書**/
#css_loading {
	width: 100%;
	height: 100%;
	background: #FFF;
	opacity: 1 !important;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 1000;
}

/**  header**/
.header_container{
	display: flex;
	justify-content: space-between;
	align-items: center;
	height:40px;
	padding:0 20px;
}

.header_left{
	border:none;
	cursor: pointer;
}

.header_left > button{
	background-color: transparent;
	border:none;

}

.header_center{
	font-size:0.8rem;
	align-self: center;
}

.header_right{
	border:none;
	background-color: transparent;
	cursor: pointer;
}

/*============================
===
=== main
===
============================*/

.main{
	min-height: calc(100vh - 40px);
	background-color: rgba(227, 227, 226, 0.65);
}


.btn_container{
	background-color: #fff; 
	border-radius: 10px; 
	cursor: pointer; 
	border:none; 
	text-align: left; 
	width:calc(100% - 20px); 
	margin:10px
}

.btn_container_margin{
	margin:10px;
}

.time_route_line{
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding-bottom: 10px; 
	border-bottom:1px solid #676767;
}

.time_warpper{
	display: flex;
	flex-wrap: wrap; 
	align-items: center; 
	width: calc(100% - 104px); 
	gap: 5px;
}

.time_txt{
	font-size:1.5rem;
	color:var(--brown);
}

.delay_txt{
	font-size:0.7rem; 
	line-height: 0.8rem; 
	font-weight: 600;
	 color:red;
}

.one_before_txt{
	font-size:0.7rem; 
	line-height: 0.8rem; 
	font-weight: 600; 
	color:gray	;
}

.status_warpper{
	display: flex;
	flex-wrap: wrap; 
	align-items: center; 
	text-align: center; 
	width:102px; 
	gap:2px;
}

.label{
	color:#fff;
	border-radius: 5px;
	font-size:0.7rem;
	width:100%;
}

.route_arrow{
	display: flex;
	justify-content: space-between; 
	align-items: center; 
	margin:10px;
}

.route_width{
	width: calc(100% - 22px);
}

.route_name_warpper{
	display: flex;
	align-items: center;
}

.route_color{
/*	width:6px; */
	height:18px; 
	margin-right:3px;
}

.route_txt{
	font-size:0.8rem; 
	color:var(--brown);
}

.headsign_txt{
	font-size:0.8rem; 
	color:var(--brown);
}

.arrow_width{
	width: 22px;
	text-align: center;
}




/*============================
===
=== modal infomation
===
============================*/

.info_header{
	display:flex;
	justify-content: space-between;
	align-items: center;
	height: 1.5rem;
}

.info_close{
	font-size:1.8rem;
	border:none;
	background-color:transparent;
	color:#fff;
	margin-top:-10px;
}
/* lang modal*/
.lang_modal_overlay {
	background-color: rgba(0, 0, 0, 0.6);
	   display: none;
	   height: 100%;
	   left: 0;
	   position: fixed;
	   top: 0;
	   width: 100%;
	   z-index: 50;
   }
   
.lang_modal_overlay.active {
	   display: block;
   }
.lang_modal {
   background-color: rgba(0, 0, 0, 0.8);
   color:#fff;
   display: none;
   left: 50%;
   max-height: 75vh;
   max-width: 230px;
   overflow-y: auto;
   position: fixed;
   top: calc(50% - 30px);
   transform: translate(-50%, -30%);
   width: calc(100% - 20px);
   z-index: 51;
}

.lang_modal.active {
   display: block;
}


.lang_radio:checked,
.lang_radio:not(:checked) {
    position: absolute;
    left: -9999px;
}
.lang_radio:checked + label,
.lang_radio:not(:checked) + label
{
    position: relative;
    padding-left: 28px;
    cursor: pointer;
    line-height: 20px;
    display: inline-block;
    color: #ffff;
}
.lang_radio:checked + label:before,
.lang_radio:not(:checked) + label:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 18px;
    height: 18px;
    border: 1px solid #ddd;
    border-radius: 100%;
    background: #fff;
}
.lang_radio:checked + label:after,
.lang_radio:not(:checked) + label:after {
    content: '';
    width: 12px;
    height: 12px;
    background: #000;
    position: absolute;
    top: 4px;
    left: 4px;
    border-radius: 100%;
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease;
}
.lang_radio:not(:checked) + label:after {
    opacity: 0;
    -webkit-transform: scale(0);
    transform: scale(0);
}
.lang_radio:checked + label:after {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
}

#info{
	width: 98%;
	margin:0 auto;
}

