/*popup*/
.hidden{
  display: none;
}

.offcanvas {
  position: fixed;
}
.popup-mask {
  background-color: rgba(0, 0, 0, 0.5);
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  opacity: 0;
  z-index: 10000;
  transition: opacity .3s;
}
.popup-mask.active {
  opacity: 1;
}
.popup-mask-box {
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 10001;
}
.popup-mask-box .popup-content {
  position: absolute;
  top: 50%;
  transition: all .3s;
  opacity: 0;
  transform: translate(0, -20%);
  max-width: 6.9rem;
  left: 50%;
  margin-left: -3.45rem;
  width: 100%;
}
.popup-mask-box .popup-content.active {
  transform: translate(0,-50%);
  opacity: 1;
}

.popup-mask-box .popup-content .popup-info{
  background-color: #fff;
  padding: 20px;
  border-radius: 10px;
}
.popup-mask-box .popup-content .popup-info h2.popup-title{
  font-size: 16px;
  color: #00d4d7;
  border-bottom: 1px solid #ccc;
  margin-bottom: 15px;
}

.popup-mask-box .popup-content .popup-info h2.popup-title span{
  display: inline-block;
  padding-bottom: 10px;
  border-bottom: 2px solid #00d4d7;
  margin-bottom: -1px;
  font-weight: bold;
  font-size: .26rem;
}

.popup-mask-box .popup-content .popup-info .popup-wrapper{
	overflow-y: auto;
	max-height: 6rem;
  font-size: .26rem;
}

.popup-mask-box .popup-content .popup-close{
  margin: .4rem auto 0;
  text-align: center
}

.popup-mask-box .popup-content .popup-close .icon-close-mask{
  display: inline-block;
  width: .58rem;
  height: .58rem;
  background: url('../img/close.png') no-repeat center;
  background-size: contain;
}

.popup-mask-box .limit-height{
  max-height: 5rem;
  overflow-y: auto;
}
