/*** Define font faces ***/

@font-face {
  font-family: 'Noto Sans';
  font-weight: 300;
  src: url('../assets/fonts/NotoSans-Light.woff2') format('woff2');
}
@font-face {
  font-family: 'Noto Sans';
  font-weight: 400;
  src: url('../assets/fonts/NotoSans-Regular.woff2') format('woff2');
}
@font-face {
  font-family: 'Noto Sans';
  font-weight: 500;
  src: url('../assets/fonts/NotoSans-Medium.woff2') format('woff2');
}

@font-face {
  font-family: 'Kanit';
  font-weight: 300;
  src: url('../assets/fonts/Kanit-ExtraLight.woff2') format('woff2');
}
@font-face {
  font-family: 'Kanit';
  font-weight: 400;
  src: url('../assets/fonts/Kanit-Light.woff2') format('woff2');
}
@font-face {
  font-family: 'Kanit';
  font-weight: 500;
  src: url('../assets/fonts/Kanit-Regular.woff2') format('woff2');
}


/*** Define default font-family and style ***/
html, body {
  font-family: 'Noto Sans', 'Kanit' !important;
  font-weight: 300 !important;
  margin: 0;
}
ol {
  padding-inline-start: 32px;
  margin-top: 4px;
  margin-bottom: 0px;
}
ul {
  padding-inline-start: 16px;
  margin: 0px;
}
table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 8px;
}
th {
  width: 50%;
  font: 300 12.5px 'Noto Sans', 'Kanit';
  border: 1px solid #E0E0E0;
  text-align: center;
  padding: 4px 16px;
}
td {
  width: 50%;
  font: 300 15px 'Noto Sans', 'Kanit';
  border: 1px solid #E0E0E0;
  padding: 4px 16px;
}


.pz-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: linear-gradient(to bottom right, rgba(251, 177, 16, 0.5), rgba(110, 236, 189, 0.5) 25%, #FFFFFF 60%, rgba(188, 190, 192, 0.25));
  background-size: cover;
  z-index: -10;
}
.pz-canvas {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-flow: column;
}
.pz-tool-bar {
  position: relative;
  height: 76px;
  display: flex;
  flex-flow: row;
  background-image: linear-gradient(to bottom right, #6eebbd, #0dc9cc);
}
.pz-logo {
  position: absolute;
  height: 90px;
  top: -6px;
  left: 4px;
}
.pz-content {
  position: absolute;
  top: 76px;
  right: 0px;
  bottom: 0px;
  left: 0px;
  display: flex;
  flex-flow: column;
  padding: 0px 24px 16px 24px;
}
.pz-title {
  font: 500 28px 'Noto Sans', 'Kanit';
  color: #005B76;
  padding: 16px 0px 8px 0px;
}
.pz-privacy-policy {
  position: relative;
  flex: 1;
  background-color: white;
  border-radius: 12px;
}
.pz-scroll-area {
  position: absolute;
  top: 12px;
  bottom: 12px;
  left: 0px;
  right: 0px;
  padding: 0px 16px;
  overflow-y: auto;
}
.pz-header-1 {
  font: 400 20px 'Noto Sans', 'Kanit';
  color: #1A99AA;
  margin-top: 12px;
}
.pz-paragraph {
  font: 300 15px 'Noto Sans', 'Kanit';
  color: #282826;
  margin-top: 8px;
}


::-webkit-scrollbar {
  width: 5px;
}
::-webkit-scrollbar-track {
  background: transparent;
}
::-webkit-scrollbar-thumb {
  background: rgba(13, 201, 204, 0.3);
  border-radius: 3px;
}
::-webkit-scrollbar-thumb:hover {
  background: #0DC9CC;
  border-radius: 3px;
}