  #mapwrap {
  width: 100%;
  min-height: 650px;
  position: relative;
  background: rgba(255, 255, 255, .3);
  border: 1px solid rgba(0, 0, 0, .1);
  margin: 20px 0;
}

.cc-tour-itemdetail {
  min-height: 650px;
  height: auto;
  width: 50%;
  position: relative;
  -webkit-transition: .5s left;
          transition: .5s left;
}

#cmap {
  position: absolute;
  top: 0;
  right: 0;
  height: 50%;
  width: 50%;
  box-sizing: border-box;
  -webkit-transition: .5s margin-left;
          transition: .5s margin-left;
  border-bottom: 1px solid rgba(0, 0, 0, .1);
  border-left: 1px solid rgba(0, 0, 0, .1);
}

#tourstops {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 50%;
  height: 50%;
}

#tourstops h2 {
  margin: 30px 0 15px 5px;
}

#tourstops ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
  display: block;
}

#tourstops li {
  line-height: 1.7em;
  padding: 0;
  border-bottom: 1px dotted #999;
  float: left;
  display: inline-block;
  width: 55%;
  margin: 2px 1%;
  color: #960;
  cursor: pointer;
}

#tourstops li:nth-child(even) {
  width: 40%;
}

.notify-icon span {
  display: inline-block;
  border: 1px solid #3a5b0b;
  border-radius: 50%;
  height: 24px;
  width: 24px;
  -webkit-animation: pulse .6s 3 forwards;
          animation: pulse .6s 3 forwards;
  -webkit-transform-origin: center center;
      -ms-transform-origin: center center;
          transform-origin: center center;
}

@-webkit-keyframes pulse {
  0% {
    -webkit-transform: scale(3.5);
            transform: scale(3.5);
    opacity: .2;
  }
  50% {
    opacity: .8;
  }
  100% {
    -webkit-transform: scale(0);
            transform: scale(0);
    opacity: 1;
  }
}

@keyframes pulse {
  0% {
    -webkit-transform: scale(3.5);
            transform: scale(3.5);
    opacity: .2;
  }
  50% {
    opacity: .8;
  }
  100% {
    -webkit-transform: scale(0);
            transform: scale(0);
    opacity: 1;
  }
}

.cc-tour-itemdetail img.detailpic {
  float: right;
  max-width: 220px;
  margin: 5px 5px 15px 20px;
}

.cc-tour-itemdetail img.homepic {
  max-width: 420px;
  margin: 20px 0;
}

.cc-tour-itemdetail h2,
.cc-tour-itemdetail p {
  margin: 0 25px;
}

.cc-tour-itemdetail p {
  margin-bottom: 10px;
}

.cc-tour-itemdetail h2 {
  padding: 25px 0 20px 0;
  font-weight: bold;
}

.tourHomeLink:before {
  font-family: FontAwesome;
  content: "\f015";
  display: inline-block;
  margin-right: 5px;
}

@media (max-width: 860px) {
  #mapwrap>div {
    display: inline-block;
    position: static;
    width: 95%;
    margin: 0 2%;
  }
  .cc-tour-itemdetail {
    min-height: auto;
  }
  .cc-tour-itemdetail img.homepic {
    max-width: 100%;
  }
  #cmap {
    height: 320px;
  }
}

@media (max-width: 460px) {
  #mapwrap{
    background: none;
    border: none;
  }
  #tourstops li {
    width: 100%;
  }
  .cc-tour-itemdetail{
    margin: 0 0 20px 0 !important;
    width: 100% !important;
  }
  .cc-tour-itemdetail img.detailpic {
    max-width: 100%;
  }
}