
:root {
    --color-white: #ffffff;
    --color-black: #000000;
}

/* 기본 placeholder 색상 조절 */
::placeholder {
    color: rgba(0, 0, 0, 0.3); /* 연한 검정색으로 설정 */
}

/* 각 브라우저별 placeholder 색상 조절 */
::-webkit-input-placeholder {
    color: rgba(0, 0, 0, 0.3); /* 연한 검정색으로 설정 */
}

:-ms-input-placeholder {
    color: rgba(0, 0, 0, 0.3); /* 연한 검정색으로 설정 */
}

::-ms-input-placeholder {
    color: rgba(0, 0, 0, 0.3); /* 연한 검정색으로 설정 */
}
.mar-left-10 {
    margin-left: 10px;
}



/* 기본 스타일 */
body {
    box-sizing: border-box;
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    width: 100%;
    background-color: #deebf7;
}




.display-board {
    background-color: #deedf7;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 20px;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
}

.header {
    height: 10%;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.header #dateNsettings {
    width: 17%;
    display: flex;
    flex-direction:column;
    justify-content: space-between;
    align-items: flex-end;
}

#dateNsettings-inner{
	width:100%;
	display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

#download-docs{
	width: 100%;
}

#download-docs a {
	text-decoration: none;
}

#download-docs a span {
	padding: 6px 6px 6px 15px;
	color:#fff;
	background-color: #b38d04;
}


#settings-form{
    width: 100%;
}
.header #date-time {
    font-size: 0.9rem;
    margin-bottom: 2%;
    margin-right: 2%;
}

.notice {
    height: 10%;
    background-color: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    /* flex-shrink: 0; */
    padding: 10px;
    box-sizing: border-box;
    /* margin-top: 1%; */
    border-radius: 10px;
}

#notice-display {
    font-size: 2rem;
}

.header a {
    margin: 0;
    padding: 0;
    width: 15%;
    display: flex;
    justify-content: flex-start;
    align-items: flex-end;
}

.header #download-docs a{
	width: 100%;
	display:inline-block;
}

.header #logo {
    width: 100%;
}

.header h1 {
    font-size: 1.9rem;
    margin: 0;
    margin-bottom: 1%;
}

#settings-btn {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
}

.stopName {
    height: 6%;
    display: flex;
    background-color: #1f4e79;
    color: #fff;
    font-size: 1.4rem;
    font-weight: 100;
    padding:  1.5% 5%;
    margin-bottom: 1%;
    border-radius: 7px;
}



.subTitle{
    /* background-color: pink; */
    display: flex;
    justify-content: space-between;
    padding-top: 1%;
}

.subTitle span {
    width: 25%;
    display: flex;
    justify-content: center;
}



#title-setting {
    width: 100%;
    display: flex;
    margin-bottom: 2%;
}

#title-input {
    display: flex;
}

#board-title-input {
    width: 70%;
    height: 40px;
    margin-right: 1%;
}




.stops {
    margin: 0;
    flex-grow: 1;
    flex-shrink: 1;
    display: flex;
    /* flex-wrap: wrap; */
    gap: 20px;
    /* overflow: hidden; */
}

/* 각 stop에 flex-basis를 사용하여 크기 설정 */
.stops .stop {
    /* background-color: #fff; */
    /* border: 1px solid #ddd; */
    /* border-radius: 10px; */
    /* padding: 10px; */
    box-sizing: border-box;
    overflow: hidden;
}



.stop {
    box-sizing: border-box;
    /* background-color: pink; */
    flex: 1 1 100%;
    display: flex;
    flex-direction: column;
}
.stop h2 {
    margin: 0;
}
.stop .stopName {
    margin-bottom: 1%;
}
.stop .bus-info {
    flex-grow: 1;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    gap: 10px;
    overflow: hidden;
    /* background-color: green; */
    height: 100%;
}
.bus-info div {
    flex-grow: 1;
    max-height: 8.5%;
    width: 100%;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    padding: 7px;
    border: 1px solid #ccc;
    border-radius: 5px;
    background-color: #e5e9ec;
}
.bus-info div span {
    flex-grow: 1;
    display: flex;
    justify-content: flex-start;
}



/* 정류소가 1개일 때 */
/* .stops-container-1 {
    flex-grow: 1;
}
.stops-container-1 .stop {
    flex: 1 1 100%;
    display: flex;
    flex-direction: column;
}
.stops-container-1 .stop .stopName {
    margin-bottom: 1%;
}
.stops-container-1 .stop .bus-info {
    flex-grow: 1;
} */
/* .stops-container-1 .stop, .stops-container-2 .stop,
.stops-container-3 .stop, .stops-container-4 .stop {
    background-color: #fff;
    border-radius: 7px;
} */

/* 정류소가 2개일 때 */
.stops-container-2 .stop {
    flex: 1 1 calc(50% - 20px);
    /* background-color: red; */
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
}
.stops-container-2 .stop .bus-info {
    flex-grow: 1;
}


/* 정류소가 3개일 때 */
.stops.stops-container-3 {
    flex-grow: 1;
    display: flex;
    flex-wrap: wrap;
    gap: 2px;
    /* background-color: goldenrod; */
    /* height: auto; */
}

.stops-container-3 .stop:nth-child(1),
.stops-container-3 .stop:nth-child(2) {
    flex: 1 1 calc(50% - 20px);
    height: 45%;
}

.stops-container-3 .stop:nth-child(1) {
    margin-right: 1%;
}

.stops-container-3 .stop:nth-child(3) {
    flex: 1 1 100%; 
    height: 45%;
}
.stops-container-3 .stop .stopName{
    height: 5.5%;
    display: flex;
    font-size: 1.3rem;
    font-weight: 100;
    padding:  1.6% 5%;
}
.stops-container-3 .stop:nth-child(1) .stopName,
.stops-container-3 .stop:nth-child(2) .stopName{
    height: 11%;
}
.stops-container-3 .stop .bus-info div {
    flex-grow: 1;
    max-height: 16%;
}


/* 정류소가 4개일 때 */

.stops.stops-container-4 {
    flex-grow: 1;
    display: flex;
    flex-wrap: wrap;
    gap: 2px;
    /* background-color: goldenrod; */
    /* height: auto; */
}

.stops-container-4 .stop {
    flex: 1 1 calc(50% - 20px);
    height: 47%;
}

.stops-container-4 .stop:nth-child(1), .stops-container-4 .stop:nth-child(3) {
    margin-right: 1%;
}

.stops-container-4 .stop .stopName{
    height: 7%;
    display: flex;
    font-size: 1.3rem;
    font-weight: 100;
    padding:  3% 5%;
}
.stops-container-4 .stop .bus-info div {
    flex-grow: 1;
    max-height: 16%;
}









.bus-info div span:first-child {
    flex-grow: 0; /* 첫 번째 span의 성장 비율을 0으로 설정합니다. */
    flex-basis: 9%; /* 첫 번째 span의 기본 너비를 각각 15%로 설정합니다. */
}
.bus-info div span:nth-child(2) {
    flex-grow: 0; /* 두 번째 span의 성장 비율을 0으로 설정합니다. */
    flex-basis: 12%; /* 두 번째 span의 기본 너비를 각각 20%로 설정합니다. */
    /* font-size: 1.2rem; */
    font-weight: 700;
}

.bus-info div span:nth-child(3) {
    flex-grow: 0; /* 두 번째 span의 성장 비율을 0으로 설정합니다. */
    flex-basis: 25%; /* 두 번째 span의 기본 너비를 각각 20%로 설정합니다. */
}

.bus-info div span:nth-child(4) {
    flex-grow: 0; /* 두 번째 span의 성장 비율을 0으로 설정합니다. */
    flex-basis: 10%; /* 두 번째 span의 기본 너비를 각각 20%로 설정합니다. */
}

/* 남은 공간을 균등하게 나눕니다. */
/* .bus-info div span:nth-child(5) {
    flex-grow: 1; 
} */



/* .bus-info의 자식 div의 첫 번째 자식 span의 너비를 30%로 제한하고 텍스트 넘침 처리 */
/* .bus-info div span:second-child {
    width: 35%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
} */

/* .bus-info div span {
    flex: 1;
} */

/* .bus-info div span:not(:nth-child(1)) {
    width: 23.33%;
} */

/* 페이징 스타일 */
.pagination {
    display: flex;
    justify-content: center;
    margin-top: 10px;
}

.page-btn {
    margin: 0 5px;
    padding: 5px 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    cursor: pointer;
}

.page-btn.active {
    background-color: #2e75b6;
    color: #fff;
}

/* 초기화면 모달 스타일*/
.modal-first {
    display: none; /* 초기에는 숨김 */
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    justify-content: center;
    align-items: center;
}

.modal-content-first {
    background-color: #fff;
    padding: 20px;
    border-radius: 2rem;
    width: 70%;
    height: 70%;
    text-align: center;
    background-color: rgb(230, 229, 229);
    font-size: 1.2rem;
}

#comment {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 13% 7%;
}

#comment p {
	margin:1%;	
}

#hand-bit{
	width:100%;
	margin-top:5%;
	display: flex;
	justify-content: center;
}

#hand-bit>div{
	width:45%;
	margin-left:1%;
}

.text-bold{
	font-weight: bold;
	font-size:1.3em;
}
#check-dontShow {
    display: flex;
    justify-content: center;
    width: 100%;
    margin-top: 5%;
}

#check-dontShow label {
    display: flex;
    justify-content: center;
    margin-right: 2%;
}

 

#check-dontShow label span{
    width: 100%;
}  


/* 모달 스타일 */
.modal {
    display: none;
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgb(0,0,0);
    background-color: rgba(0,0,0,0.4);
    padding-top: 60px;
}

.modal-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    background-color: #fff;
    margin: 5% auto;
    padding: 2rem;
    border: 1px solid #888;
    width: 80%;
    border-radius: 2rem;
    position: relative;
}


.modal-content-station {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: #fff;
    margin: 5% auto;
    padding: 2rem;
    border: 1px solid #888;
    width: 50%;
    border-radius: 2rem;
}

#titleNclose {
    width: 98%;
    padding: 1%;
    background-color: #dcdee0;
    border-radius: 1.2rem;
    margin-bottom: 1rem;
}
#titleNclose h2 {
    text-align: center;
    margin : 0;
}

.close {
    color: #aaa;
    float: right;
    font-size: 30px;
    font-weight: bold;
    margin-right: 2%;
}

.close-map {
    font-size: 30px;
    position: absolute; /* position: absolute 추가 */
    top: 10px; /* 필요한 경우 조정 */
    right: 10px; /* 필요한 경우 조정 */
}

.close:hover,
.close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}


#map_div {
    margin-top: 20px;
}

/* #close-map {
    padding: 10px;
    margin-bottom: 10px;
} */
#stop-settings {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    background-color: palgoldenrod;
}
.stop-setting {
    display: flex;
    align-items: center;
    width: 100%;
    margin-bottom: 2%;
}


.stop-setting label {
    margin-right: 3%;
    line-height: 20px;
}


.checkNstop {
    width: 145px;
    margin-right: 10px;
}

.inputNsearchBtn {
    width: 278px;
}

.inputNsearchBtn input {
    width: 75%;
    height: 27px;
    margin-right: 2%;
}
.history {
    display: flex;
    align-items: center;
    width: 45%;
}

.history-item {
    width: 40%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9rem;
    background-color: #f9f9f9;
    border: 1px solid #ddd;
    border-radius: 5px;
    padding: 5px;
    max-height: 100px;
    overflow-y: auto;
    margin-left: 2%;
}

.history-item-notice {
    width: 76%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9rem;
    background-color: #f9f9f9;
    border: 1px solid #ddd;
    border-radius: 5px;
    padding: 5px;
    max-height: 70px;
    overflow-y: auto;
    margin-left: 2%;
}


#noticeNinput {
    width: 100%;
    height: 45px;
    margin-top: 0.2%;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

#noticeNinput label {
    margin-right: 10px;
    width: 145px;
}

#noticeNinput input {
    margin-right: 10px;
    width: 50%;
    height: 75%;
}


.dark-mode {
    background-color: #333;
    color: #fff;
}

.dark-mode .stop {
    border: 1px solid #555;
}

.dark-mode .modal-content {
    background-color: #444;
    color: #fff;
}

#last {
    width: 70%;
    margin-top: 1%;
    display: flex;
    justify-content: space-between;
}

#resetNfull {
    width: 65%;
    display: flex;
    justify-content: flex-start;
}
#reset-btn {
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
    margin-right: 3%;
}
#fullscreen-btn {
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
}
#save-btn {
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
    width: 30%;
    background-color: #0051a3;
    border: 0;
    color: #fff;
}

#save-btn:hover {
    background-color: #00478f;
}
.modal {
    display: none;
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgb(0,0,0);
    background-color: rgba(0,0,0,0.4);
    padding-top: 60px;
}



.close-search {
    color: #aaa;
    /* float: right; */
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    font-size: 36px;
    font-weight: bold;
}

.close:hover, .close:focus,
.close-search:hover, .close-search:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}

#search-results {
    margin-top: 20px;
    min-width: 70%;
}

.search-result-item {
	display: flex;
    padding: 5px;
    border: 1px solid #ccc;
    margin-top: 5px;
    /* cursor: pointer; */
    border-radius: 5px;
    justify-content: space-between;
}

.search-result-item >span{
    cursor: pointer;
}    

.search-result-item:hover {
    background-color: #f0f0f0;
}


/* 기본 버튼 스타일 처럼 정의 */
.button-like {
    display: inline-block;
    padding: 0 7px;
    margin-bottom: 0;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.42857143;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    -ms-touch-action: manipulation;
        touch-action: manipulation;
    cursor: pointer;
    background-image: none;
    border: 1px solid transparent;
    border-radius: 3px;
    color: #000;
    background-color: #efefef;
    border-color: #767676;
}

.button-like:hover {
    background-color: #e0e0e0;
    border-color: #767676;
}

.button-like:focus,
.button-like.focus {
    color: #fff;
    background-color: #286090;
    border-color: #122b40;
}

.button-like:active,
.button-like.active,
.open > .dropdown-toggle.button-like {
    color: #fff;
    background-color: #286090;
    border-color: #122b40;
}

.button-like:active,
.button-like.active,
.open > .dropdown-toggle.button-like {
    background-image: none;
}

.button-like.disabled,
.button-like[disabled],
fieldset[disabled] .button-like,
.button-like.disabled:hover,
.button-like[disabled]:hover,
fieldset[disabled] .button-like:hover,
.button-like.disabled:focus,
.button-like[disabled]:focus,
fieldset[disabled] .button-like:focus,
.button-like.disabled:active,
.button-like[disabled]:active,
fieldset[disabled] .button-like:active,
.button-like.disabled.active,
.button-like[disabled].active,
fieldset[disabled] .button-like.active {
    background-color: #337ab7;
    border-color: #2e6da4;
}

.button-like .badge {
    color: #337ab7;
    background-color: #fff;
}


.searchButton {
   margin-left: 0.7%;
}



/* 차량 아이콘  */
/* 정류소 1개, 2개 */
span.icon.green_double{background: url(https://www.gbis.go.kr/gbis2014/resources/media/i_bus-gen_gn_dup.svg) no-repeat center;  background-size: 45px auto; width: 10%; height: 115%;}
span.icon.green_low{background: url(https://www.gbis.go.kr/gbis2014/resources/media/i_bus-low_gn.svg) no-repeat center;  background-size: 45px auto; width: 10%; height: 115%;}
span.icon.green_second{background: url(https://www.gbis.go.kr/gbis2014/resources/media/i_bus-dbl_gn.svg) no-repeat center;  background-size: 45px auto; width: 10%; height: 115%;}
span.icon.green_trolley{background: url(https://www.gbis.go.kr/gbis2014/resources/media/i_bus-tro_gn.svg) no-repeat center;  background-size: 45px auto; width: 10%; height: 115%;}
span.icon.green_jeonse{background: url(https://www.gbis.go.kr/gbis2014/resources/media/i_bus-jeonse_gn.svg) no-repeat center;  background-size: 45px auto; width: 10%; height: 115%;}
span.icon.green{background: url(https://www.gbis.go.kr/gbis2014/resources/media/i_bus-gen_gn.svg) no-repeat center;  background-size: 45px auto; width: 10%; height: 115%;}

span.icon.red_double{background: url(https://www.gbis.go.kr/gbis2014/resources/media/i_bus-gen_rd_dup.svg) no-repeat center;  background-size: 45px auto; width: 10%; height: 115%;}
span.icon.red_low{background: url(https://www.gbis.go.kr/gbis2014/resources/media/i_bus-low_rd.svg) no-repeat center;  background-size: 45px auto; width: 10%; height: 115%;}
span.icon.red_second{background: url(https://www.gbis.go.kr/gbis2014/resources/media/i_bus-dbl_rd.svg) no-repeat center;  background-size: 45px auto; width: 10%; height: 115%;}
span.icon.red_trolley{background: url(https://www.gbis.go.kr/gbis2014/resources/media/i_bus-tro_rd.svg) no-repeat center;  background-size: 45px auto; width: 10%; height: 115%;}
span.icon.red_jeonse{background: url(https://www.gbis.go.kr/gbis2014/resources/media/i_bus-jeonse_rd.svg) no-repeat center;  background-size: 45px auto; width: 10%; height: 115%;}
span.icon.red{background: url(https://www.gbis.go.kr/gbis2014/resources/media/i_bus-gen_rd.svg) no-repeat center;  background-size: 45px auto; width: 10%; height: 115%;}

span.icon.sky_double{background: url(https://www.gbis.go.kr/gbis2014/resources/media/i_bus-gen_bl_dup.svg) no-repeat center;  background-size: 45px auto; width: 10%; height: 115%;}
span.icon.sky_low{background: url(https://www.gbis.go.kr/gbis2014/resources/media/i_bus-low_bl.svg) no-repeat center;  background-size: 45px auto; width: 10%; height: 115%;}
span.icon.sky_second{background: url(https://www.gbis.go.kr/gbis2014/resources/media/i_bus-dbl_bl.svg) no-repeat center;  background-size: 45px auto; width: 10%; height: 115%;}
span.icon.sky_trolley{background: url(https://www.gbis.go.kr/gbis2014/resources/media/i_bus-tro_bl.svg) no-repeat center;  background-size: 45px auto; width: 10%; height: 115%;}
span.icon.sky_jeonse{background: url(https://www.gbis.go.kr/gbis2014/resources/media/i_bus-jeonse_bl.svg) no-repeat center;  background-size: 45px auto; width: 10%; height: 115%;}
span.icon.sky{background: url(https://www.gbis.go.kr/gbis2014/resources/media/i_bus-gen_bl.svg) no-repeat center;  background-size: 45px auto; width: 10%; height: 115%;}
 
span.icon.yellow_double{background: url(https://www.gbis.go.kr/gbis2014/resources/media/i_bus-gen_yl_dup.svg) no-repeat center;  background-size: 45px auto; width: 10%; height: 115%;}
span.icon.yellow_low{background: url(https://www.gbis.go.kr/gbis2014/resources/media/i_bus-low_yl.svg) no-repeat center;  background-size: 45px auto; width: 10%; height: 115%;}
span.icon.yellow_second{background: url(https://www.gbis.go.kr/gbis2014/resources/media/i_bus-dbl_yl.svg) no-repeat center;  background-size: 45px auto; width: 10%; height: 115%;}
span.icon.yellow_trolley{background: url(https://www.gbis.go.kr/gbis2014/resources/media/i_bus-tro_yl.svg) no-repeat center;  background-size: 45px auto; width: 10%; height: 115%;}
span.icon.yellow_jeonse{background: url(https://www.gbis.go.kr/gbis2014/resources/media/i_bus-jeonse_yl.svg) no-repeat center;  background-size: 45px auto; width: 10%; height: 115%;}
span.icon.yellow{background: url(https://www.gbis.go.kr/gbis2014/resources/media/i_bus-gen_yl.svg) no-repeat center;  background-size: 45px auto; width: 10%; height: 115%;}

span.icon.purple_double{background: url(https://www.gbis.go.kr/gbis2014/resources/media/i_bus-gen_pp_dup.svg) no-repeat center;  background-size: 45px auto; width: 10%; height: 115%;}
span.icon.purple_low{background: url(https://www.gbis.go.kr/gbis2014/resources/media/i_bus-low_pp.svg) no-repeat center;  background-size: 45px auto; width: 10%; height: 115%;}
span.icon.purple_second{background: url(https://www.gbis.go.kr/gbis2014/resources/media/i_bus-dbl_pp.svg) no-repeat center;  background-size: 45px auto; width: 10%; height: 115%;}
span.icon.purple_trolley{background: url(https://www.gbis.go.kr/gbis2014/resources/media/i_bus-tro_pp.svg) no-repeat center;  background-size: 45px auto; width: 10%; height: 115%;}
span.icon.purple_jeonse{background: url(https://www.gbis.go.kr/gbis2014/resources/media/i_bus-jeonse_pp.svg) no-repeat center;  background-size: 45px auto; width: 10%; height: 115%;}
span.icon.purple{background: url(https://www.gbis.go.kr/gbis2014/resources/media/i_bus-gen_pp.svg) no-repeat center;  background-size: 45px auto; width: 10%; height: 115%;}

span.icon.gray_double{background: url(https://www.gbis.go.kr/gbis2014/resources/media/i_bus-gen_gy_dup.svg) no-repeat center;  background-size: 45px auto; width: 10%; height: 115%;}
span.icon.gray_low{background: url(https://www.gbis.go.kr/gbis2014/resources/media/i_bus-low_gy.svg) no-repeat center;  background-size: 45px auto; width: 10%; height: 115%;}
span.icon.gray_second{background: url(https://www.gbis.go.kr/gbis2014/resources/media/i_bus-dbl_gy.svg) no-repeat center;  background-size: 45px auto; width: 10%; height: 115%;}
span.icon.gray_trolley{background: url(https://www.gbis.go.kr/gbis2014/resources/media/i_bus-tro_gy.svg) no-repeat center;  background-size: 45px auto; width: 10%; height: 115%;}
span.icon.gray_jeonse{background: url(https://www.gbis.go.kr/gbis2014/resources/media/i_bus-jeonse_gy.svg) no-repeat center;  background-size: 45px auto; width: 10%; height: 115%;}
span.icon.gray{background: url(https://www.gbis.go.kr/gbis2014/resources/media/i_bus-gen_gy.svg) no-repeat center;  background-size: 45px auto; width: 10%; height: 115%;}

span.icon.navy{background: url(https://www.gbis.go.kr/gbis2014/resources/media/i_bus-gen_navy.svg) no-repeat center;  background-size: 45px auto; width: 10%; height: 115%;}



/* 정류소 3개,4개 */
.stops-container-3 .stop .bus-info span.icon.green_double, .stops-container-4 .stop .bus-info span.icon.green_double {width: 10% !important; height: 158% !important;}
.stops-container-3 .stop .bus-info span.icon.green_low, .stops-container-4 .stop .bus-info span.icon.green_low {width: 10% !important; height: 158% !important;}
.stops-container-3 .stop .bus-info span.icon.green_second, .stops-container-4 .stop .bus-info span.icon.green_second {width: 10% !important; height: 158% !important;}
.stops-container-3 .stop .bus-info span.icon.green_trolley, .stops-container-4 .stop .bus-info span.icon.green_trolley {width: 10% !important; height: 158% !important;}
.stops-container-3 .stop .bus-info span.icon.green_jeonse, .stops-container-4 .stop .bus-info span.icon.green_jeonse {width: 10% !important; height: 158% !important;}
.stops-container-3 .stop .bus-info span.icon.green, .stops-container-4 .stop .bus-info span.icon.green {width: 10% !important; height: 158% !important;}


.stops-container-3 .stop .bus-info  span.icon.red_double,.stops-container-4 .stop .bus-info  span.icon.red_double {width: 10% !important; height: 158% !important;}
.stops-container-3 .stop .bus-info span.icon.red_low,.stops-container-4 .stop .bus-info span.icon.red_low {width: 10% !important; height: 158% !important;}
.stops-container-3 .stop .bus-info span.icon.red_second, .stops-container-4 .stop .bus-info span.icon.red_second {width: 10% !important; height: 158% !important;}
.stops-container-3 .stop .bus-info span.icon.red_trolley, .stops-container-4 .stop .bus-info span.icon.red_trolley {width: 10% !important; height: 158% !important;}
.stops-container-3 .stop .bus-info span.icon.red_jeonse, .stops-container-4 .stop .bus-info span.icon.red_jeonse {width: 10% !important; height: 158% !important;}
.stops-container-3 .stop .bus-info span.icon.red, .stops-container-4 .stop .bus-info span.icon.red {width: 10% !important; height: 158% !important;}


.stops-container-3 .stop .bus-info  span.icon.sky_double,.stops-container-4 .stop .bus-info  span.icon.sky_double {width: 10% !important; height: 158% !important;}
.stops-container-3 .stop .bus-info span.icon.sky_low,.stops-container-4 .stop .bus-info span.icon.sky_low {width: 10% !important; height: 158% !important;}
.stops-container-3 .stop .bus-info span.icon.sky_second, .stops-container-4 .stop .bus-info span.icon.sky_second {width: 10% !important; height: 158% !important;}
.stops-container-3 .stop .bus-info span.icon.sky_trolley, .stops-container-4 .stop .bus-info span.icon.sky_trolley {width: 10% !important; height: 158% !important;}
.stops-container-3 .stop .bus-info span.icon.sky_jeonse, .stops-container-4 .stop .bus-info span.icon.sky_jeonse {width: 10% !important; height: 158% !important;}
.stops-container-3 .stop .bus-info span.icon.sky, .stops-container-4 .stop .bus-info span.icon.sky {width: 10% !important; height: 158% !important;}


.stops-container-3 .stop .bus-info  span.icon.yellow_double,.stops-container-4 .stop .bus-info  span.icon.yellow_double {width: 10% !important; height: 158% !important;}
.stops-container-3 .stop .bus-info span.icon.yellow_low,.stops-container-4 .stop .bus-info span.icon.yellow_low {width: 10% !important; height: 158% !important;}
.stops-container-3 .stop .bus-info span.icon.yellow_second, .stops-container-4 .stop .bus-info span.icon.yellow_second {width: 10% !important; height: 158% !important;}
.stops-container-3 .stop .bus-info span.icon.yellow_trolley, .stops-container-4 .stop .bus-info span.icon.yellow_trolley {width: 10% !important; height: 158% !important;}
.stops-container-3 .stop .bus-info span.icon.yellow_jeonse, .stops-container-4 .stop .bus-info span.icon.yellow_jeonse {width: 10% !important; height: 158% !important;}
.stops-container-3 .stop .bus-info span.icon.yellow, .stops-container-4 .stop .bus-info span.icon.yellow {width: 10% !important; height: 158% !important;}


.stops-container-3 .stop .bus-info  span.icon.purple_double,.stops-container-4 .stop .bus-info  span.icon.purple_double {width: 10% !important; height: 158% !important;}
.stops-container-3 .stop .bus-info span.icon.purple_low,.stops-container-4 .stop .bus-info span.icon.purple_low {width: 10% !important; height: 158% !important;}
.stops-container-3 .stop .bus-info span.icon.purple_second, .stops-container-4 .stop .bus-info span.icon.purple_second {width: 10% !important; height: 158% !important;}
.stops-container-3 .stop .bus-info span.icon.purple_trolley, .stops-container-4 .stop .bus-info span.icon.purple_trolley {width: 10% !important; height: 158% !important;}
.stops-container-3 .stop .bus-info span.icon.purple_jeonse, .stops-container-4 .stop .bus-info span.icon.purple_jeonse {width: 10% !important; height: 158% !important;}
.stops-container-3 .stop .bus-info span.icon.purple, .stops-container-4 .stop .bus-info span.icon.purple {width: 10% !important; height: 158% !important;}


.stops-container-3 .stop .bus-info  span.icon.gray_double,.stops-container-4 .stop .bus-info  span.icon.gray_double {width: 10% !important; height: 158% !important;}
.stops-container-3 .stop .bus-info span.icon.gray_low,.stops-container-4 .stop .bus-info span.icon.gray_low {width: 10% !important; height: 158% !important;}
.stops-container-3 .stop .bus-info span.icon.gray_second, .stops-container-4 .stop .bus-info span.icon.gray_second {width: 10% !important; height: 158% !important;}
.stops-container-3 .stop .bus-info span.icon.gray_trolley, .stops-container-4 .stop .bus-info span.icon.gray_trolley {width: 10% !important; height: 158% !important;}
.stops-container-3 .stop .bus-info span.icon.gray_jeonse, .stops-container-4 .stop .bus-info span.icon.gray_jeonse {width: 10% !important; height: 158% !important;}
.stops-container-3 .stop .bus-info span.icon.gray, .stops-container-4 .stop .bus-info span.icon.gray {width: 10% !important; height: 158% !important;}

.stops-container-3 .stop .bus-info span.icon.navy, .stops-container-4 .stop .bus-info span.icon.navy {width: 10% !important; height: 158% !important;}



/* 정류소 3개,4개 */
/* .stops-container-3 .stop .bus-info div, .stops-container-4 .stop .bus-info div {
    height: 12% !important;
} */


/*혼잡도 컬러*/
.seat-density-0 { font-weight: 600; color: #190ea8; }
.seat-density-1 { font-weight: 600; color: #388B3C; }
.seat-density-2 { font-weight: 600; color: #0066ff; }
.seat-density-3 { font-weight: 600; color: #f93; }
.seat-density-4 { font-weight: 600; color: #f00; }



/* 설정화면 */
.input-with-history {
    display: flex;
    width: 80%;
}
#title-setting label {
    margin-right: 10px;
    width: 145px;
    display: flex;
    align-items: center;
}
#history-title {
    width: 100%;
}


input[type="checkbox"] {
    display: inline-block;
    width: 20px;
    height: 20px;
    border:2px solid #535dee;
    position: relative;
  }

.map-button {
    background: rgb(243, 235, 235) ; 
    border:none; 
    box-shadow:none; 
    border-radius: 10px; 
    padding: 0.3rem; 
    overflow:visible; 
    cursor:pointer;
    margin-left: 2%;
}  
.map-button:hover,
.map-button:focus {
    background: rgb(165, 164, 164) ; 
    color: #fff;
    text-decoration: none;
    cursor: pointer;
}


#font-size-settings {
    display: flex;
    background-color: #eff1f3;
    margin-top: 2%;
    padding-bottom: 2%;
    padding-left: 2%;
    padding-top: 0;
    border-radius: 10px;
}
#font-size-settings-left {
    width: 40%;
    margin-right: 1%;
}
#font-size-settings-right {
    padding-top: 2rem;
    color: rgb(105, 105, 105);
    font-size: 1rem;
}
.font-size-setting {
    margin-top: 1rem;
}