.popup_container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9000;
  display: none;
}

.popup {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 325px;
  padding: 20px;
  background-color: #fff;
  border: 1px solid #ccc;
  border-radius: 5px;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
  z-index: 9999;
  display: none;
}

.popup p {
  margin-top: 0;
  margin-bottom: 0;
  padding: 0 !important;
}

.popup button {
  display: block;
  margin: 10px auto 0;
  padding: 10px 20px;
  border-radius: 5px;
  background-color: #4194C3;
  color: #fff;
  border: none;
  cursor: pointer;
}

div#drawer {
  margin: 0px;
  background: #4194C3;
  height: 100%;
  width: 0px;
  position: fixed;
  transition: 0.3s;
  overflow-x: hidden;
  box-shadow: 0px 40px 50px 0px rgba(0, 0, 0, 0.4);
  z-index: 3;
}

div#drawer>div {
  margin: 0px;
  padding: 30px 0px;
}

div.body {
  padding: 20px 20px 20px 20px;
}

line, polyline, polygon {
  stroke-width: 12px;
  stroke-linejoin: round;
  stroke-linecap: round;
}

circle {
  fill: white;
  stroke: black;
  stroke-width: 2;
}

text {
  fill: white;
  font-size: 30px;
}

text.right {
  text-anchor: end;
}

.category {
  padding: 10px;
  font-weight: bold;
  cursor: pointer;
}

.svg_text {
  fill: black !important;
  font-size: 15px !important;
  font-weight: bolder;
}

.pc_button_container {
  display:flex; 
  justify-content: center; 
  padding: 10px !important;
}

.pc_button {
  margin: 5px;
  border-radius: 5px;
  background-color: #424242;
  color: white;
  border: 1px solid;
  cursor: pointer;
}

.pc_button:hover {
  background-color: #212121;
}

.pc_menu_container {
  padding: 0px 15px 15px 15px !important;
}

table {
  width: 100%;
  color: #ffffff;
  border-collapse: collapse;
  font-size: 15px;
  border-left: 0px;
  border-right: 0px;
}

tr {
  border-bottom: 1px solid #ffffff;
}

th.line_title {
  border-top: 1px solid #ffffff;
  background-color: #4194C3;
  font-size: 20px;
  font-weight: bold;
}

td {
  padding: 7px;
  text-align: center;
  border: 0px;
  border-top: 1px solid #ffffff;
}

td.train_no {
  color: #000000;
  border-top: 1px solid #424242;
}

td.line_btn, .material-icons, .menu_text {
  cursor: pointer;
}

b.blue {
  color: #4194C3;
}

b.red {
  color: #ff5252;
}

.legend {
  width: 12px;
  padding-left: 12px;
}


/* MOBILE */
@media (max-width: 768px) {

  .mdl-layout__title, .mdl-layout-title {
    font-size: 15px !important;
    font-weight: bold !important;
  }

  .mdl-layout__header-row {
    height: 56px;
    padding: 0 16px 0 51px;
  }

  div.only_pc_contents {
    display: none;
  }

  p {
    padding-top: 10px;
  }

}

/* MOBILE 가로모드 */
@media (max-height: 885px) {

    div.only_pc_contents {
      position : absolute !important;
    }

}

/* PC */
@media screen and (min-width: 768px) {

  .mdl-layout__drawer {
    width: 300px !important;
    left: -60px !important;
  }

  .is-visible {
    left: 0 !important;
  }

  p {
    padding-top: 17px;
  }

  div.pc_contents {
    max-width: 1080px;
    margin: auto;
  }

  div.mobile_contents {
    max-width: 540px;
    float: right;
    width: 50%;
  }

  div.body {
    padding: 52px 20px 20px 20px;
  }

  div.only_pc_contents {
    position: fixed;
    display: block;
    max-width: 540px;
    float: right;
    width: 50%;
    font-size: 18px;
    z-index: 1000;
  }

  div.only_pc_contents>div {
    padding: 30px 15px 15px 15px;
  }

  table.line_list {
    padding: 20px;
    font-size: 17px;
  }

}