:root {
  --theme-myaccount-primary: #672AA9; 
  --theme-myaccount-secondary: rgba(51, 13, 78, 255);

  --mobile-header-height: 160px;
  --mobile-footer-height: 44px ;

  --header-height: 120px;
  --footer-height: 53px;
  --custom-font-family:MHeiHK, Helvetica Neue, Helvetica, Arial, Microsoft JhengHei, 微軟正黑體, sans-serif;

}


/* Custom font: Noto Sans CJK TC */
@font-face {
  font-family: "Noto Sans CJK TC";
  src: url("../font/Noto_Sans_TC/NotoSansTC-Medium.otf") format("opentype");
}

@font-face {
  font-family: "Noto Sans CJK TC Bold";
  src: url("../font/Noto_Sans_TC/NotoSansTC-Bold.otf") format("opentype");
}

@font-face {
  font-family: "Noto Sans CJK TC Black";
  src: url("../font/Noto_Sans_TC/NotoSansTC-Black.otf") format("opentype");
}

@font-face {
  font-family: "Noto Sans CJK TC Light";
  src: url("../font/Noto_Sans_TC/NotoSansTC-Light.otf") format("opentype");
}

@font-face {
  font-family: "Noto Sans CJK TC Regular";
  src: url("../font/Noto_Sans_TC/NotoSansTC-Regular.otf") format("opentype");
}

@font-face {
  font-family: "Noto Sans CJK TC Thin";
  src: url("../font/Noto_Sans_TC/NotoSansTC-Thin.otf") format("opentype");
}
/* Custom font: Noto Sans CJK TC */

/* Custom font: Outfit */
@font-face {
  font-family: "Outfit";
  src: url("../font/Outfit/Outfit-Medium.ttf") format("truetype");
}

@font-face {
  font-family: "Outfit Thin";
  src: url("../font/Outfit/Outfit-Thin.ttf") format("truetype");
}

@font-face {
  font-family: "Outfit Black";
  src: url("../font/Outfit/Outfit-Black.ttf") format("truetype");
}

@font-face {
  font-family: "Outfit Light";
  src: url("../font/Outfit/Outfit-Light.ttf") format("truetype");
}

@font-face {
  font-family: "Outfit Regular";
  src: url("../font/Outfit/Outfit-Regular.ttf") format("truetype");
}

@font-face {
  font-family: "Outfit Thin";
  src: url("../font/Outfit/Outfit-Thin.ttf") format("truetype");
}

@font-face {
  font-family: "Outfit ExtraLight";
  src: url("../font/Outfit/Outfit-ExtraLight.ttf") format("truetype");
}

@font-face {
  font-family: "Outfit ExtraBold";
  src: url("../font/Outfit/Outfit-ExtraBold.ttf") format("truetype");
}

@font-face {
  font-family: "Outfit Bold";
  src: url("../font/Outfit/Outfit-Bold.ttf") format("truetype");
}

@font-face {
  font-family: "Outfit SemiBold";
  src: url("../font/Outfit/Outfit-SemiBold.ttf") format("truetype");
}
/* Custom font: Outfit */

body {
  background-color: #fff;
  color: #000;
  font-family: var(--custom-font-family);
  font-style: normal;
  align-items: center;
  /* display: flex; */
  justify-content: center;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--custom-font-family);
  font-style: normal;
  color: var(--theme-myaccount-primary);
}

/* h1 {
  font-weight: 400;
  font-size: 53.9px;
  line-height: 49px;
}

h3 {
  font-weight: 500;
  font-size: 22.4194px;
  line-height: 33px;
} */

hr {
  height: 1px;
  opacity: 1;
  background-color: #9a9a9a;
}

ol {
  /* list-style: inside decimal; */
  /* padding-left: 0; */
  padding-left: 1em;
}

main{
  margin-bottom: calc(250px + 2%);
  min-height: calc(100vh - var(--header-height) - var(--footer-height));
}


a {
  color: var(--theme-myaccount-primary);
}

a:hover {
  color: var(--theme-myaccount-secondary);
  text-decoration: underline;
}

.outline-0{
  outline: 0;
}

@media (max-width: 767.98px) {
  body{
    background-color: #000000;
  }
  
  main{
    margin-bottom: calc(150px + 1%);
    min-height: calc(100vh - var(--mobile-header-height) - var(--mobile-footer-height));
  }
}