:root {
  --theme-color: #ff0096;
  --top-bar-height: 78px;
}

* {
  outline: none;
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
}
a {
  cursor: pointer;
  text-decoration: none;
  color: #222;
}

.clear {
  clear: both;
}

html {
  padding: 0;
  margin: 0;
  position: relative;
  overflow-x: hidden;
}

body {
  padding: 0;
  margin: 0;
  position: relative;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 16px;
  width: 100%;
  min-width: 375px;
  background-color: #fff;
  color: #4a4a4a;
  position: relative;
  text-align: center;
}

html[lang="tc"] body {
  font-family: "Noto Sans TC", "Microsoft JhengHei", "HanHei TC", "PingFang HK",
    "STHeitiTC-Light", "LiHei Pro", Helvetica, Arial;
}

html[lang="sc"] body {
  font-family: "Noto Sans SC", "Microsoft YaHei", "微软雅黑", Helvetica, Arial;
}

.outerBounding {
  width: 100%;
  padding: 0 60px;
}

.innerBounding {
  width: 100%;
  max-width: 1332px;
  margin: auto;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  margin-block-start: 0;
  margin-block-end: 0;
}

h2 {
  color: var(--theme-color);
}

a {
  cursor: pointer;
}

.rectButton {
  background-color: var(--theme-color);
  color: #fff;
  width: 400px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.rectButton.disabled {
  background-color: #ccc;
  cursor: default;
}

@media screen and (max-width: 767px) {
  .outerBounding {
    padding: 0 20px;
  }
  .rectButton {
    width: auto;
    max-width: 90%;
  }
  iframe.youtube {
    width: 90%;
    height: auto;
    min-height: 220px;
  }
}


.chocolat-overlay {
  background-color: rgba(0,0,0.8) !important;
}
.chocolat-close {
  transform-origin: top right;
  transform: scale(2)
}