.schedule-popup {
  position: absolute;
  width: 600px;
  height: auto;
  padding: 30px;
  background: #fff;
  top: 100px;
  left: 50%;
  margin-left: -300px;
  color: #000;
  font-size: 14px;
  box-shadow: 0 10px 30px rgba(0,0,0,.2);
  z-index: 1000;
}
.schedule-popup-content {
  position: relative;
}
.schedule-popup-title {
  font-size: 18px;
  color: #005e95;
  font-weight: bold;
  padding-bottom: 20px;
  text-align: center;
}
.schedule-popup li {
  list-style: none;
  margin-bottom: 5px;
}
.schedule-popup-close {
  position: absolute;
  font-size: 20px;
  right: -20px;
  top: -25px;
  cursor: pointer;
  font-weight: bold;
}
@media (max-width: 600px) {
  .schedule-popup {
    width: 90%;
    margin-left: -45%;
  }
}