


body #popup,
body #popup-tour {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.8);
  z-index: 99999;
}
body #popup .box,
body #popup-tour .box {
  margin: auto;
  width: 750px;
  max-width: 100%;
  height: 100%;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url("../img/popup.png");
  text-align: center;
  display: table;
  -webkit-transition: .2s;
  -moz-transition: .2s;
  -o-transition: .2s;
  transition: .2s;
}
body #popup .box img,
body #popup-tour .box img {
  max-width: 90%;
}
body #popup .box .center,
body #popup-tour .box .center {
  display: table-cell;
  vertical-align: middle;
  max-width: 100%;
}
body #popup .box .center .ico,
body #popup-tour .box .center .ico {
  display: inline-block;
  width: 15px;
  height: 15px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  position: relative;
  top: 1px;
  margin-right: 10px;
}
body #popup .box .center .ico.day,
body #popup-tour .box .center .ico.day {
  background-image: url("../img/day.png");
}
body #popup .box .center .ico.night,
body #popup-tour .box .center .ico.night {
  background-image: url("../img/night.png");
}
body #popup .box .center .leave,
body #popup-tour .box .center .leave {
  display: none;
}
body #popup .box .center .choose img,
body #popup-tour .box .center .choose img {
  cursor: pointer;
  -webkit-transition: .2s;
  -moz-transition: .2s;
  -o-transition: .2s;
  transition: .2s;
}
body #popup .box .center .choose img:hover,
body #popup-tour .box .center .choose img:hover {
  opacity: .7;
}

