@charset "UTF-8";
/*------------------------------------*\
  必要CSS檔
  ---
  如果SASS編譯出現子資料夾的檔案，請檢查設定
  "savePath": "~/../../css" //輸出資料夾
\*------------------------------------*/
/*------------------------------------*\
  font face
\*------------------------------------*/
/* Roboto - 400 700 */
/* noto-sans-tc -  300 400 500 700 */
@import url("https://fonts.googleapis.com/css2?family=Lexend:wght@300;600&family=Noto+Sans+TC:wght@400;500;700&display=swap");
/*------------------------------------*\
  reset
\*------------------------------------*/
body, div, ul, ol, li, h1, h2, h3, h4, h5, h6, form, input, select, textarea, label, p, blockquote, th, td, iframe, button, a, header, footer {
  margin: 0;
  padding: 0;
  border: 0;
  box-sizing: border-box;
  font: inherit;
  color: inherit;
  word-wrap: break-word;
  word-break: break-all;
}

body {
  font: 18px/150% "Noto Sans TC", "Helvetica Neue", Helvetica, sans-serif;
  font-weight: 400;
  letter-spacing: 0.2px;
  background: #fafafa;
  color: #282523;
  overflow-x: hidden;
}

html {
  /*safari內網頁的字體不會無緣無故變大*/
  -webkit-text-size-adjust: 100%;
  /*safari內網頁滑動起來不會卡卡的*/
  -webkit-overflow-scrolling: touch;
  overflow-scrolling: touch;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  color: inherit;
  background: none;
  outline: none;
  cursor: pointer;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

input, button, textarea, select, optgroup, option {
  font-family: inherit;
  font-size: inherit;
  font-style: inherit;
  font-weight: inherit;
  outline: none;
}

img {
  /*防止chrome將圖片縮放時平滑化處理*/
  image-rendering: -webkit-optimize-contrast;
  width: 100%;
  height: auto;
}

/*------------------------------------*\
  font-family
\*------------------------------------*/
.font-eng {
  font-family: "Lexend", "Helvetica Neue", Helvetica, sans-serif;
}

:hover {
  transition-duration: 0.3s;
}

/*------------------------------------*\
  _common.scss
  基礎全站變數
\*------------------------------------*/
/*------------------------------------*\
  RWD尺寸標準
\*------------------------------------*/
/*------------------------------------*\
  頁面寬度
\*------------------------------------*/
/*------------------------------------*\
  大小網
\*------------------------------------*/
.web {
  display: block;
}

.pad {
  display: block;
}

.mobile {
  display: none;
}

@media screen and (max-width: 1000px) {
  .pad {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .web {
    display: none;
  }
  .mobile {
    display: block;
  }
}
/*------------------------------------*\
  color
\*------------------------------------*/
/*------------------------------------*\
  使用顏色設定_主要
\*------------------------------------*/
/*------------------------------------*\
  天地
\*------------------------------------*/
/* --------------------------------------- */
/* --------------------------------------- */
.pageMenu-btn .line, #pageMenu .hasSub button, #pageMenu, .page {
  transition: 0.2s;
}

/*------------------------------------*\
  天地框架及popup
\*------------------------------------*/
.wrapper {
  width: 100%;
  min-height: 100vh;
  position: relative;
  box-sizing: border-box;
  background: #fafafa;
}

.container {
  width: 100%;
  position: relative;
}

.pagesize {
  margin: 0 auto;
  max-width: 1320px;
  padding: 0 20px;
  position: relative;
  box-sizing: border-box;
}
@media all and (max-width: 1280px) {
  .pagesize {
    padding: 0 10px;
  }
}
/*------------------------------------*\
  header
\*------------------------------------*/
header ul {
  list-style: none;
}
@media all and (max-width: 1000px) {
  header .pagesize {
    padding: 0;
  }
}

/* --------------------------------------- */
/* page */
/* --------------------------------------- */
.page {
  width: 100%;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  position: relative;
  z-index: 2;
}

/*------------------------------------*\
  側邊選單
\*------------------------------------*/
.overflow-container {
  padding-top: 80px;
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  width: 80px;
  background-color: rgba(150, 150, 150, 0.1);
  z-index: 999;
}
.overflow-container .page-title {
  display: none;
}
.overflow-container .func-btn {
  display: none;
}
@media all and (max-width: 1000px) {
  .overflow-container {
    width: 100%;
    bottom: initial;
    height: 60px;
    padding: 10px 10px 10px 60px;
    display: flex;
    justify-content: space-between;
    position: fixed;
    background-color: #fafafa;
  }
  .overflow-container .page-title {
    display: block;
    border-radius: 100%;
    overflow: hidden;
  }
  .overflow-container .page-title img {
    width: 40px;
    height: 40px;
  }
  .overflow-container .func-btn {
    display: flex;
    align-items: center;
    font-size: 14px;
  }
  .overflow-container .func-btn a {
    width: 40px;
    height: 40px;
    display: block;
    background: url(../images/ic-more.svg) center center no-repeat;
    background-size: auto 24px;
  }
  .overflow-container .pageMenu-btn {
    top: 16px;
    left: 16px;
  }
}

/*小網底部功能選單*/
.func-bottom {
  display: none;
  width: 100%;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: -1;
  background-color: #ececec;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
  padding: 10px;
}
.func-bottom.open {
  display: block;
  z-index: 9999;
}
.func-bottom .func-tool {
  background-color: #ececec;
}
.func-bottom .func-tool a {
  color: #000;
  border-radius: 40px;
}
.func-bottom .func-tool a::before {
  filter: brightness(0%);
}
.func-bottom .func-tool a:hover {
  background-color: transparent;
  color: #000;
}
.func-bottom .func-tool a:hover::before {
  filter: brightness(0%);
}
.func-bottom .func-tool a:focus {
  background-color: rgba(150, 150, 150, 0.15);
  color: #000;
}
.func-bottom .func-tool a:focus::before {
  filter: brightness(0%);
}

.page_cover {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
}

.openmenu {
  position: fixed;
}

.page.openmenu .page_cover {
  z-index: 1001;
}

/* --------------------------------------- */
/* menu */
/* --------------------------------------- */
#pageMenu {
  position: absolute;
  z-index: 99;
  width: 300px;
  min-height: 100vh;
  /* height: 100vh;*/
  background-color: #e6e6e6;
  padding: 84px 10px 0;
  box-sizing: border-box;
}

.openmenu ~ #pageMenu .hasSub {
  display: block;
}

/*
.openmenu {
&::after{ content: ''; width: 300px; height: 100vh; position: fixed; left: -100px; top: 0; bottom: 0;background-color: #e6e6e6; z-index: 999;}
  & > .pageMenu-btn{ display: none;}

   @include screen-width($width-mobile) {
      padding: 10px 10px 10px 20px; display: flex; z-index: 999;
&::after{  left: 0; }
       & > .pageMenu-btn{ display: none;}
      }

  }
*/
.menuframe {
  position: relative;
  padding-bottom: 100px;
}

.menu-tit {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 0 0 20px;
  margin-bottom: 10px;
}

button.more {
  width: 40px;
  height: 40px;
  background: url(../images/ic-more.svg) center center no-repeat;
  background-size: auto 24px;
  display: block;
}

/* menu_清單 */
#pageMenu ul {
  list-style: none;
  font-size: 14px;
}

#pageMenu > ul > li {
  margin-bottom: 10px;
}

.d-line {
  height: 1px;
  margin: 20px;
  background-color: #ccc;
}

#pageMenu ul a.sub-tit {
  display: block;
  min-height: 40px;
  position: relative;
  line-height: 40px;
  color: inherit;
  font-size: 16px;
  width: 100%;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  padding: 0 50px 0 20px;
  border-radius: 30px;
}
#pageMenu ul a.sub-tit.ic-new {
  padding-left: 50px;
}
#pageMenu ul a.sub-tit.ic-new::before {
  content: "";
  width: 40px;
  height: 40px;
  background: url(../images/ic-addNew.svg) 20px center no-repeat;
  background-size: 18px;
  position: absolute;
  top: 0;
  left: 0;
}
#pageMenu ul a.sub-tit:hover, #pageMenu ul a.sub-tit.open, #pageMenu ul a.sub-tit:focus {
  background-color: #ddd;
}

/* --------------------------------------- */
/* --------------------------------------- */
#pageMenu .hasSub {
  position: relative;
  display: none;
  border-radius: 30px;
}
#pageMenu .hasSub:hover, #pageMenu .hasSub.open, #pageMenu .hasSub.focus {
  background-color: #ddd;
}
#pageMenu .hasSub:hover button, #pageMenu .hasSub.open button, #pageMenu .hasSub.focus button {
  display: block;
}
#pageMenu .hasSub.txt {
  padding: 0 20px;
  line-height: 40px;
}
#pageMenu .hasSub.txt:hover, #pageMenu .hasSub.txt.open {
  background: transparent;
}
#pageMenu .hasSub button {
  display: none;
  position: absolute;
  top: 0;
  right: 0;
  width: 50px;
  height: 40px;
  background: url(../images/ic-more.svg) center center no-repeat;
  background-size: auto 24px;
  cursor: pointer;
  outline: none;
  border: none;
}
@media all and (max-width: 1000px) {
  #pageMenu .hasSub button {
    display: none;
    background: transparent;
    z-index: -1;
  }
}
#pageMenu .hasSub .func-tool {
  position: absolute;
  right: -130px;
  top: 0;
  width: 120px;
}
@media all and (max-width: 1000px) {
  #pageMenu .hasSub .func-tool {
    display: none;
    background: transparent;
    z-index: -1;
  }
}

.func-tool {
  background-color: #ececec;
}
.func-tool a {
  color: #000;
  display: block;
  line-height: 40px;
  padding: 0 10px;
  font-size: 16px;
  position: relative;
}
.func-tool a::before {
  content: "";
  width: 40px;
  height: 40px;
  position: absolute;
  top: 0;
  left: 0;
  filter: brightness(0%);
}
.func-tool a.add-ic {
  padding-left: 40px;
}
.func-tool a.rename::before {
  background: url(../images/ic-rename.svg) center no-repeat;
  background-size: 16px;
}
.func-tool a.del::before {
  background: url(../images/ic-del.svg) center no-repeat;
  background-size: 16px;
}
.func-tool a:hover {
  background-color: #3d3722;
  color: #fff;
}
.func-tool a:hover::before {
  filter: brightness(100%);
}

/* menu_按鈕 */
.pageMenu-btn {
  display: block;
  position: absolute;
  left: 24px;
  top: 24px;
  width: 30px;
  height: 30px;
  background-size: 24px;
  outline: none;
  border: none;
  cursor: pointer;
}

.pageMenu-btn .line {
  display: block;
  position: absolute;
  left: 4px;
  width: 20px;
  height: 2px;
  background-color: #666;
  border-radius: 2px;
}

.pageMenu-btn .line01 {
  top: 7px;
}

.pageMenu-btn .line02 {
  top: 14px;
}

.pageMenu-btn .line03 {
  top: 21px;
}

/* menu_按鈕_展開 */
.openmenu .pageMenu-btn .line01 {
  width: 24px;
  top: 14px;
  left: 2px;
  transform: rotate(-45deg);
}

.openmenu .pageMenu-btn .line02 {
  display: none;
}

.openmenu .pageMenu-btn .line03 {
  width: 24px;
  top: 14px;
  left: 2px;
  transform: rotate(45deg);
}

/* menu_按鈕_展開 */
#pageMenu .pageMenu-btn .line01 {
  width: 24px;
  top: 14px;
  left: 2px;
  transform: rotate(-45deg);
}

#pageMenu .pageMenu-btn .line02 {
  display: none;
}

#pageMenu .pageMenu-btn .line03 {
  width: 24px;
  top: 14px;
  left: 2px;
  transform: rotate(45deg);
}

/* --------------------------------------- */
.show-left.openmenu {
  /* transform: translateX($pagemenu_width);*/
  transform: translateX(100px);
}
@media all and (max-width: 1000px) {
  .show-left.openmenu {
    transform: initial;
  }
}

.show-left ~ #pageMenu {
  top: 0;
  left: -300px;
}

.show-left.openmenu ~ #pageMenu {
  left: 0;
}

.show-right.openmenu {
  transform: translateX(-300px);
}

.show-right ~ #pageMenu {
  left: auto;
  right: -300px;
}

.show-right.openmenu ~ #pageMenu {
  right: 0;
}

.show-up ~ #pageMenu {
  top: -100%;
  left: 0;
  width: 100%;
  height: auto;
  max-height: calc(100vh - 40px);
  overflow-y: auto;
}

.show-up.openmenu ~ #pageMenu {
  top: 0;
}

.show-up.openmenu {
  transform: translateX(0);
}

/*------------------------------------*\
  input & btn樣式 放置於parts/
\*------------------------------------*/
/*------------------------------------*\
  input
\*------------------------------------*/
.inputbox input,
.inputbox select,
.inputbox textarea {
  width: 100%;
  min-width: 0;
  height: 40px;
  line-height: 40px;
  font-weight: 500;
  padding: 0 16px;
  background-color: #fff;
  color: #464646;
  box-sizing: border-box;
  border-radius: 20px;
}
.inputbox input:disabled,
.inputbox select:disabled,
.inputbox textarea:disabled {
  background-color: #d4d4d4;
}
.inputbox input::placeholder {
  color: #999;
}
.inputbox input::-webkit-input-placeholder {
  color: #999;
}
.inputbox input::-moz-placeholder {
  color: #999;
}
.inputbox input:-ms-input-placeholder {
  color: #999;
}
.inputbox input:-moz-placeholder {
  color: #999;
}

select {
  padding-right: 35px;
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  background-image: url(../images/arrow.svg);
  background-size: 24px auto;
  background-repeat: no-repeat;
  background-position: right 6px center;
}

select::-ms-expand {
  display: none;
}

option:not(first-child) {
  color: #4c4c4c;
}

/*------------------------------------*\
  此頁樣式
\*------------------------------------*/
/*------------------------------------*\
index頁-個別樣式
\*------------------------------------*/
body {
  background-color: #fff;
}

.wrapper {
  background-color: #f5f5f5;
}
.wrapper.welcome {
  background: url(../images/bg.jpg) center 0 no-repeat;
  background-size: cover;
  background-attachment: fixed;
}
@media all and (max-width: 768px) {
  .wrapper.welcome {
    background-image: url(../images/m-bg.jpg);
  }
}

.keywords-link .link-li a, .btn-more a {
  background: linear-gradient(to right, #ff843c 0%, #fe9f54 100%);
  color: #fff;
}

/*------------------------------------*\
介紹頁
\*------------------------------------*/
/*------------------------------------*\
 介紹頁
\*------------------------------------*/
.intro {
  gap: 10px;
}
.intro .intro-level {
  /*大一生*/
  /*大二生*/
  /*大三生*/
  /*大四生*/
  /*研究生*/
}
.intro .intro-level p a {
  display: inline-block;
}
.intro .intro-level p a:hover {
  opacity: 0.8;
}
.intro .intro-level .level {
  font-size: 1rem;
  line-height: 20px;
  font-weight: 700;
  border-radius: 20px;
  color: #fff;
  padding: 4px 16px 6px;
  letter-spacing: 2px;
}
.intro .intro-level .level-1 {
  background-color: #39c8d0;
}
.intro .intro-level .level-2 {
  background-color: #ff577b;
}
.intro .intro-level .level-3 {
  background-color: #0a9aff;
}
.intro .intro-level .level-4 {
  background-color: #00bda1;
}
.intro .intro-level .level-5 {
  background-color: #a700f5;
}
.intro .intro-txt {
  padding: 60px 0 50px;
}

.btn-more {
  position: relative;
  bottom: initial;
  right: initial;
  left: initial;
  margin: 0 auto;
  display: flex;
  justify-content: center;
}
.btn-more a {
  color: #fff;
  width: 200px;
  border-radius: 10px;
  text-align: center;
}
.btn-more a:hover {
  background: linear-gradient(to right, #fe9f54 0%, #ff843c 100%);
  color: #fff;
}

.intro {
  justify-content: center;
}
.intro .intro-txt {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.intro .doll {
  width: 240px;
  height: auto;
}
.intro .doll img {
  max-width: 100%;
}

/*------------------------------------*\
對話框
\*------------------------------------*/
.dialog .chat-box {
  padding: 0;
}
.dialog .chat-box a {
  color: #ff7800;
}
.dialog .chat-box .txt-link {
  border-bottom: 1px solid #ff7800;
}
.dialog .chat-box .txt-btn {
  background-color: #fe9e53;
  color: #fff;
}
.dialog .chat-box .txt-btn:hover {
  background-color: #ff843c;
  color: #fff;
}
.dialog .chat-box .txt-btn.focus {
  background-color: #ff843c;
  color: #fff;
}
.dialog .chat-box .btn-bar {
  background-color: rgba(250, 250, 250, 0.1);
}
.dialog-box.right .chat-box {
  background-color: #f9dbad;
  margin-right: 0;
}
.dialog-box.right .chat-box p {
  color: #333;
}
.dialog ul.tool-link {
  padding-right: 0;
}
.dialog ul.tool-link li a {
  color: #ff843c;
  background-color: transparent;
  border: 1px solid #ff843c;
}
.dialog ul.tool-link li a:hover {
  background-color: #ff843c;
  color: #fff;
  border: 1px solid #ff843c;
}
.dialog .headshot {
  padding: 0;
  margin: 0 10px 0 0;
}
@media all and (max-width: 768px) {
  .dialog {
    padding: 0 10px;
  }
  .dialog .headshot {
    display: block;
    padding: 0;
  }
}

@media all and (max-width: 768px) {
  .chat-bottom {
    padding-left: 0;
  }
}

.tool-btn .btn-listen {
  background: none;
}
.tool-btn .btn-listen::after {
  content: "";
  width: 40px;
  height: 40px;
  display: block;
  background: url(../images/ic-listen.svg) center no-repeat;
  background-size: 20px;
}
.tool-btn .btn-listen.playing {
  background-color: #f9dbad;
}
.tool-btn .btn-listen.playing::before {
  border: #f9dbad solid 2px;
}
.tool-btn .btn-listen.playing:hover {
  background-color: none;
  border-radius: 100%;
}
.tool-btn a:hover {
  background-color: #f9dbad;
}

.btn-share {
  background: none;
}
.btn-share::before {
  content: "";
  width: 40px;
  height: 40px;
  display: block;
  background: url(../images/ic-share.svg) center no-repeat;
  background-size: 20px;
}

.btn-copy {
  background: none;
}
.btn-copy::before {
  content: "";
  width: 40px;
  height: 40px;
  display: block;
  background: url(../images/ic-copy.svg) center no-repeat;
  background-size: 20px;
}

.btn-ok,
.btn-copy.btn-ok {
  background: none;
}
.btn-ok::before,
.btn-copy.btn-ok::before {
  content: "";
  width: 40px;
  height: 40px;
  display: block;
  background: url(../images/ic-ok.svg) center no-repeat;
  background-size: 20px;
}

.btn-like {
  background: none;
}
.btn-like::before {
  content: "";
  width: 40px;
  height: 40px;
  display: block;
  background: url(../images/ic-like.svg) center no-repeat;
  background-size: 20px;
}

.btn-dislike {
  background: none;
}
.btn-dislike::before {
  content: "";
  width: 40px;
  height: 40px;
  display: block;
  background: url(../images/ic-like.svg) center no-repeat;
  background-size: 20px;
  transform: rotate(180deg);
}

.btn-like.on::before {
  background: url(../images/ic-liked.svg) center no-repeat;
  background-size: 20px;
}

.btn-dislike.on::before {
  background: url(../images/ic-liked.svg) center no-repeat;
  background-size: 20px;
}

.chat-flex {
  display: flex;
  gap: 10px;
  align-items: center;
  position: relative;
}

.chat-flex .dot-font {
  color: #ff7800;
  font-size: 1rem;
}

/*------------------------------------*\
輸入對話/搜尋
\*------------------------------------*/
.bottom {
  padding-bottom: 5px;
}
.bottom::before {
  background: linear-gradient(to bottom, rgba(242, 242, 242, 0) 0%, rgb(242, 242, 242) 100%);
}

.input-field {
  background: #fff;
  padding: 10px;
}
.input-field input {
  background-color: transparent;
  width: 100%;
}

.img-preview {
  display: flex;
  flex-wrap: wrap;
}
.img-preview .img-box {
  width: 80px;
  height: 80px;
  margin-bottom: 10px;
  border-radius: 12px;
  margin-right: 10px;
  overflow: hidden;
  position: relative;
}
.img-preview .img-box img {
  width: 100%;
  height: 100%;
  vertical-align: middle;
  object-fit: cover;
}
.img-preview a.del {
  width: 30px;
  height: 30px;
  background: #333 url(../images/ic-del.svg) center no-repeat;
  background-size: 12px;
  border-radius: 100%;
  position: absolute;
  top: 5px;
  right: 5px;
  display: block;
  opacity: 0;
}
.img-preview .img-box:hover > a {
  opacity: 1;
}

.input-bar {
  background-color: #fe9e53;
  justify-content: start;
  position: relative;
  padding: 8px 60px 8px 10px;
}
.input-bar a {
  width: 40px;
  height: 40px;
  margin-right: 5px;
  border-radius: 100%;
}
.input-bar a.submit {
  position: absolute;
  right: 5px;
  margin-right: 0;
  background-color: #ff7800;
  background-size: 28px;
}
.input-bar a.use-mike {
  position: absolute;
  right: 50px;
  margin-right: 0;
}
.input-bar a.use-mike.playing {
  background-color: #f9dbad;
}
.input-bar a.use-mike.playing::before {
  border: #f9dbad solid 2px;
}

.keywords-link {
  background-color: #ff7800;
}
@media all and (max-width: 1000px) {
  .bottom-flex {
    padding: 0 5px;
  }
}

/*------------------------------------*\
套件autocomplete
\*------------------------------------*/
.cdk-overlay-container {
  color: #333;
}

.mat-option.mat-active,
.mat-option-text:hover {
  color: #c19128;
}

@media all and (max-width: 1000px) {
  .cdk-overlay-pane.mat-width {
    max-width: initial;
    width: calc(100% - 20px);
    margin: 0 10px;
  }
}
/*------------------------------------*\
表格區塊
\*------------------------------------*/
table th {
  background-color: #fde4ce;
}
table tr:nth-of-type(odd) td {
  background-color: #f8eee5;
}

/*小網底部功能選單*/
.func-bottom {
  background-color: #fde4ce;
}
.func-bottom .func-tool {
  background-color: #fde4ce;
}

.func-tool {
  background-color: #fde4ce;
}

/*------------------------------------*\
側邊選單
\*------------------------------------*/
@media all and (max-width: 1000px) {
  .overflow-container {
    background-color: #fde4ce;
  }
  .overflow-container .func-btn a {
    filter: grayscale(100%) brightness(100%);
  }
}
/*menu*/
.pageMenu-btn .line {
  background-color: #ff7800;
}

#pageMenu {
  background-color: #555;
  color: #fff;
}
#pageMenu .pageMenu-btn .line {
  background-color: #fff;
}

#pageMenu .hasSub:hover,
#pageMenu .hasSub.open,
#pageMenu .hasSub.focus {
  background-color: #444;
}

#pageMenu .hasSub button {
  filter: grayscale(100%) brightness(1000%);
}

#pageMenu ul a.sub-tit.ic-new::before {
  filter: grayscale(100%) brightness(1000%);
}
#pageMenu ul a.sub-tit:hover, #pageMenu ul a.sub-tit.open, #pageMenu ul a.sub-tit:focus {
  background-color: #444;
}

/*------------------------------------*\
popup
\*------------------------------------*/
.popTxt-tt {
  color: #333;
}
.popTxt p {
  color: #333;
}

/*------------------------------------*\
loading
\*------------------------------------*/
.snippet {
  position: relative;
  background: #fff;
  padding: 32px 5%;
  margin: 24px 0;
  box-shadow: 0 4px 12px -2px rgba(0, 32, 128, 0.1), 0 0 0 1px rgba(60, 80, 120, 0.1);
  border-radius: 16px;
}

.snippet::before {
  display: inline-block;
  position: absolute;
  top: 6px;
  left: 6px;
  padding: 0 8px;
  content: attr(data-title);
  font-size: 12px;
  font-family: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  color: white;
  background-color: rgb(255, 25, 100);
  border-radius: 10px;
  line-height: 20px;
}

.snippet:hover {
  cursor: pointer;
  outline: 2px solid rgb(255, 25, 100);
}

.stage {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  padding: 32px 0;
  margin: 0 -5%;
  overflow: hidden;
}

/**
 * ==============================================
 * Dot Falling
 * ==============================================
 */
.chat-col {
  position: relative;
  padding-left: 1rem;
  padding-right: 1rem;
}

.dot-falling {
  position: relative;
  left: -9999px;
  width: 10px;
  height: 10px;
  border-radius: 5px;
  background-color: #ff7800;
  color: #ff7800;
  box-shadow: 9999px 0 0 0 #ff7800;
  animation: dot-falling 1s infinite linear;
  animation-delay: 0.1s;
}

.dot-falling::before, .dot-falling::after {
  content: "";
  display: inline-block;
  position: absolute;
  top: 0;
}

.dot-falling::before {
  width: 10px;
  height: 10px;
  border-radius: 5px;
  background-color: #ff7800;
  color: #ff7800;
  animation: dot-falling-before 1s infinite linear;
  animation-delay: 0s;
}

.dot-falling::after {
  width: 10px;
  height: 10px;
  border-radius: 5px;
  background-color: #ff7800;
  color: #ff7800;
  animation: dot-falling-after 1s infinite linear;
  animation-delay: 0.2s;
}

@keyframes dot-falling {
  0% {
    box-shadow: 9999px -15px 0 0 rgba(152, 128, 255, 0);
  }
  25%, 50%, 75% {
    box-shadow: 9999px 0 0 0 #ff7800;
  }
  100% {
    box-shadow: 9999px 15px 0 0 rgba(152, 128, 255, 0);
  }
}
@keyframes dot-falling-before {
  0% {
    box-shadow: 9984px -15px 0 0 rgba(152, 128, 255, 0);
  }
  25%, 50%, 75% {
    box-shadow: 9984px 0 0 0 #ff7800;
  }
  100% {
    box-shadow: 9984px 15px 0 0 rgba(152, 128, 255, 0);
  }
}
@keyframes dot-falling-after {
  0% {
    box-shadow: 10014px -15px 0 0 rgba(152, 128, 255, 0);
  }
  25%, 50%, 75% {
    box-shadow: 10014px 0 0 0 #ff7800;
  }
  100% {
    box-shadow: 10014px 15px 0 0 rgba(152, 128, 255, 0);
  }
}/*# sourceMappingURL=index.css.map */