@charset "UTF-8";
/**** VARIABLES ****/
.mb-150 {
  margin-bottom: 150px;
}

.mb-70 {
  margin-bottom: 70px;
}

.mb-50 {
  margin-bottom: 50px;
}

.mb-30 {
  margin-bottom: 30px;
}

.mb-8 {
  margin-bottom: 8px;
}

/* popup基本預設設定 不用動 */
.popup-wrap {
  width: 100%;
  height: 100%;
  display: none;
  position: fixed;
  top: 0px;
  left: 0px;
  content: "";
  background: rgba(0, 0, 0, 0.7);
  z-index: 100;
}
.popup-wrap .popup-box {
  width: 100%;
  -webkit-transform: translate(-50%, -50%) scale(1);
          transform: translate(-50%, -50%) scale(1);
  position: absolute;
  top: 50%;
  left: 50%;
}
.popup-wrap .popup-box .popup-content {
  position: absolute;
  z-index: 3;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  /* 關閉按鈕樣式 */
}
.popup-wrap .popup-box .popup-content .close-btn {
  width: 3.13rem;
  height: 0.66rem;
  display: inline-block;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  margin-bottom: 5rem;
}
.popup-wrap .popup-box .popup-content .close-btn:hover {
  scale: 1.1;
}