html {
  font-size: 80%; /* ルート要素のフォントサイズを10pxに設定 */
  

}



body {
      overflow: hidden;
  position: fixed;
  width: 100%;
  height: 100%;
      margin: 0;
      padding: 0;
      font-family: Arial, sans-serif;
      background-color: #000;
      color: #fff;
      -webkit-user-select: none;
      -moz-user-select: none;
      -ms-user-select: none;
      user-select: none;
      
    }
.live-container {
	margin:0 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative; /* 追加 */
	z-index: 500;


}
.live-screen {
  width: 100%;
  max-width: 400px;
  height: 700px;
  background-color: #000;
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  transition: transform 0.3s ease-in-out;
  
    z-index: 400;
  
}

    .live-video {
      width: 100%;
      height: 100%;
      object-fit: cover;
       pointer-events: none; /* 追加 */
    }
    .reaction-container {
      position: absolute;
      bottom: 100%;
      left: 50%;
      transform: translateX(-50%);
      pointer-events: none;
    }
    .live-header {
      position: absolute;
      top: 10px;
      left: 0;
      width: 100%;
      padding: 10px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      box-sizing: border-box;
      z-index: 800; /* 前面に表示 */
    }

.reaction-button {
  font-size: 16px;
  cursor: pointer;
  padding: 3px 5px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.1);
  transition: background 0.2s, transform 0.1s;
  white-space: nowrap;
  display: inline-block;
}


.reaction-button:hover {
  background: rgba(255, 255, 255, 0.25);
}

.reaction-button:active {
  transform: scale(0.9);
  background: rgba(255, 255, 255, 0.35);
}

/* 半角カタカナ用のスタイル */
.live-reaction[data-reaction="ｼｺ"] .reaction-button,
.live-reaction[data-reaction="ｱｧ"] .reaction-button,
.live-reaction[data-reaction="ｷﾓﾁｰ"] .reaction-button,
.live-reaction[data-reaction="ｲｸ"] .reaction-button,
.live-reaction[data-reaction="ﾄｺ"] .reaction-button,
.live-reaction[data-reaction="ﾐﾃ"] .reaction-button,
.live-reaction[data-reaction="ﾃﾞﾀ"] .reaction-button,
.live-reaction[data-reaction="ﾊｧ"] .reaction-button,
.live-reaction[data-reaction="ｶﾜｲｲ"] .reaction-button {
  font-family: 'MS Gothic', 'Osaka-Mono', 'Noto Sans Mono CJK JP', monospace;
  font-size: 18px;
  letter-spacing: -1px;
}


.live-title {
  font-weight: bold;
  position: relative;
  color:#b4b4b4;
   font-size: 14px; 
}


.channel-dropdown {

  position: absolute;
  width:500px;
    top: 100%;
    left: -10px;
  background-color: rgba(0, 0, 0, 0.8);
  padding: 10px;
  display: none;
}


.chselectp{
   font-size: 12px !important;
	color:#ccc;
	margin:10px 0;
	
}


/* スマホ用の調整 */
@media screen and (max-width: 400px) {
  .reaction-button {
    font-size: 18px;
    padding: 2px 3px;
  }
  
  .live-reaction[data-reaction="ｼｺ"] .reaction-button,
  .live-reaction[data-reaction="ｱｧ"] .reaction-button,
  .live-reaction[data-reaction="ｷﾓﾁｰ"] .reaction-button,
  .live-reaction[data-reaction="ｲｸ"] .reaction-button,
  .live-reaction[data-reaction="ﾄｺ"] .reaction-button,
  .live-reaction[data-reaction="ﾐﾃ"] .reaction-button,
  .live-reaction[data-reaction="ﾃﾞﾀ"] .reaction-button,
  .live-reaction[data-reaction="ﾊｧ"] .reaction-button,
  .live-reaction[data-reaction="ｶﾜｲｲ"] .reaction-button {
    font-size: 18px;
  }
  
  .live-reaction {
    margin: 0 1px;
  }
}


@media screen and (max-width: 480px) and (-webkit-min-device-pixel-ratio: 2) {
  /* iPhone用のスタイル */
  .chselectp {
    font-size: 0.7rem !important;
    color: #ccc;
    margin: 1rem 0; /* 10px相当 */
  }
  
  
  
.channel-dropdown {

    font-size: 0.9rem !important; /* 12px相当 */
}
}





.channel-dropdown a {
  display: block;
  color: #fff;
  text-decoration: none;
  padding: 5px 0;

}

    
    .live-viewers {
      font-size: 14px;
    }
    
    

.live-reactions {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  gap: 4px;
}

.reactions-row {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  flex-wrap: nowrap;
}


    
        .live-reaction ,.toolbar-btn,#playPauseBtn,.visualizer-button{
         -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
    touch-action: manipulation;
    }
    
    
.live-reaction {
  position: relative;
  display: inline-block;
  margin: 0 2px;
}



    .live-comments {
      font-size: 14px;
      color: #ccc;
    }
    .reaction-animation {
      position: absolute;
      font-size: 16px;
      animation: float 3s ease-in-out forwards;
      opacity: 0;
      white-space: nowrap;
    }
    @keyframes float {
      0% {
        transform: translateY(0) scale(1);
        opacity: 0;
      }
      20% {
        transform: translateY(-10px) scale(1.2);
        opacity: 1;
      }
      100% {
        transform: translateY(-160px) scale(1);
        opacity: 0;
      }
    }
.brain-button-container {
  position: absolute;
  right: 10px;
  top: 70px; /* 変更 */
  z-index: 900;
  transition: transform 0.3s ease-in-out;
}


  .brain-button {
    font-size: 24px;
    border: 2px solid #fff;
    border-radius: 50%;
    background-color: rgba(255, 255, 255);
    color: #fff;
    cursor: pointer;
    padding: 10px;
    position: relative;
  }

  .brain-button::before,
  .brain-button::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    border-radius: 50%;
    opacity: 0;
    pointer-events: none;
    animation: brain-button-pulse 2s infinite;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.3) 70%, rgba(255, 255, 255, 0) 100%);
  }

  .brain-button::after {
    animation-delay: 1s;
  }

  @keyframes brain-button-pulse {
    0% {
      opacity: 0;
      transform: translate(-50%, -50%) scale(1);
    }
    50% {
      opacity: 1;
    }
    100% {
      opacity: 0;
      transform: translate(-50%, -50%) scale(1.3);
    }
  }



 .modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease-in-out;
}
    .modal.active {
      opacity: 1;
      pointer-events: auto;
    }
.modal-content {
  background-color: #222;
  padding: 20px;
  border-radius: 10px;
  max-width: 320px; /* live-headerと同じ最大幅を設定 */
  width: 100%; /* 幅を100%に設定 */
  height: 70vh; /* 画面の高さに対する最大の高さを設定 */
  overflow-y: auto;
  position: relative;
  display: flex;
  flex-direction: column;
  
  
}
    .modal-content pre {
    
    
    margin:30px 0;
      white-space: pre-wrap;
      word-wrap: break-word;
      flex-grow: 1; /* 追加 */
      overflow-y: auto; /* 追加 */
      font-size: 14px;
      padding-right: 10px
      
    }

.modal-content pre::-webkit-scrollbar,
.advice-room::-webkit-scrollbar {
  width: 8px;
}

.modal-content pre::-webkit-scrollbar-track,
.advice-room::-webkit-scrollbar-track {
  background-color: #333;
  border-radius: 4px;
}

.modal-content pre::-webkit-scrollbar-thumb,
.advice-room::-webkit-scrollbar-thumb {
  background-color: #888;
  border-radius: 4px;
}

.modal-content pre::-webkit-scrollbar-thumb:hover,
.advice-room::-webkit-scrollbar-thumb:hover {
  background-color: #555;
}


    
.modal-close {
      position: absolute;
      top: 10px;
      right: 10px;
      font-size: 24px;
      color: #fff;
      background-color: transparent;
      border: none;
      cursor: pointer;
    }
    
    
.live-footer {
  padding: 10px;
  position: fixed;
  bottom: 0;
  left: 50%;  /* 中央揃えの基点を設定 */
  width: 100%; /* 必要に応じて調整 */
  max-width: 400px; /* live-headerと同じ最大幅を設定 */
  transform: translateX(-50%); /* 左に50%ずらして中央に配置 */
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-sizing: border-box;
  transition: transform 0.3s ease-in-out;
  z-index: 600; /* 必要に応じて調整 */
}


.live-footer.active {
transform: translateX(-50%) translateY(-100px);
}

.visualizer-toggle {
  font-size: 18px;
  background-color: transparent;
  border: none;
  color: #fff;
  cursor: pointer;
  transition: transform 0.3s ease-in-out;
}

.visualizer-toggle.active {
  transform: rotate(180deg);
}

.visualizer-menu {
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 100%;
  padding: 10px;
  background-color: rgba(0, 0, 0, 0.8);
  box-sizing: border-box;
  display: flex;
  justify-content: center;
  align-items: center;
  transform: translateY(100%);
  transition: transform 0.3s ease-in-out;
  z-index: 700;
}

.visualizer-button {
  font-size: 14px;
  background-color: #333;
  border: none;
  color: #fff;
  padding: 8px 16px;
  margin: 0 5px;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.3s ease-in-out;
}

.visualizer-button:hover {
  background-color: #555;
}


#imageContainer {
pointer-events: auto;
  position: absolute;
  width: 100%; /* コンテナの幅を設定 */
  top:50px;
  height: 520px; /* 適切な高さを設定 */
  overflow-y: auto; /* 垂直方向にスクロール可能にする */
  
  /* スクロールバーを非表示にするスタイル */
  -ms-overflow-style: none; /* IE、Edge用 */
  scrollbar-width: none; /* Firefox用 */
  
  
}

#imageContainer img {
  width: 100%; /* 画像の幅をコンテナの幅に合わせる */
  height: auto; /* 高さを自動で調整してアスペクト比を保持 */
  display: block; /* 画像間に余計なマージンが入るのを防ぐ */
}

.image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5); /* 半透明の背景 */
  color: white;
  display: none; /* 最初は非表示 */
  align-items: center;
  justify-content: center;
  flex-direction: column;
  transition: opacity 0.3s, visibility 0s 0.3s;
}

.image-container:hover .image-overlay {
  visibility: visible;
  opacity: 1;
  transition: opacity 0.3s;
}

.comic-info {
  text-align: center;
}

.comic-info a {
  color: white;
  display: block;
  margin: 5px 0;
}

.random-text-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 300;
}

.random-text {
  font-size: 10px;
  color: rgba(255, 255, 255, 0.8);
  text-shadow: 0 0 5px rgba(0, 255, 0, 0.5);
  writing-mode: vertical-rl;
  text-orientation: upright;
  opacity: 0;
  position: absolute;
  top: 0;
  animation: randomThoughts 0.7s linear infinite;
}

@keyframes randomThoughts {
  0% {
    opacity: 0;
    transform: translateY(0);
  }
  10%, 90% {
    opacity: 1;
  }
  50% {
    transform: translateY(50vh);
  }
  100% {
    opacity: 0;
    transform: translateY(100vh);
  }
}


.advice-room {
  display: none;
  padding: 20px;
  background-color: rgba(0, 0, 0, 0.8);
  color: white;
  position: absolute;
  top: 86px;
  left: 0;
  right: 0;
  bottom: 0;
  overflow-y: auto;
  text-align: center; 
}



.ad {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 320px;
  height: 320px;
  margin: 20px auto;
  overflow: hidden;
}

.ad img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}



.advice-room p{

	font-size:14px;


}

.advice-list {
  margin-top: 20px;
  text-align: left;
}

.advice-item {
  margin:40px 0;

}



.advice-question,
.advice-answer {
  display: flex;
  align-items: flex-start;
}




.advice-question img,
.advice-answer img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  margin-right: 10px;
}

.advice-question p,
.advice-answer p {
  margin: 0;
  padding: 10px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  flex-grow: 1;
}

.advice-answer {
  justify-content: flex-end;
  margin-top: 10px;
}

.advice-answer img {
  order: 1;
  margin-right: 0;
  margin-left: 10px;
}

.advice-answer p {
  background-color: rgba(237, 113, 125, 0.2);
}

.submit-advice  {
    background-color: #ee707c; /* ボタンの背景色 */
    color: white; /* ボタンのテキスト色 */
    border: none; /* 枠線なし */
    padding: 15px 32px; /* 内側の余白 */
    text-align: center; /* テキストを中央揃え */
    display: inline-block; /* インラインブロックとして表示 */
    font-size: 16px; /* フォントサイズ */
    margin: 4px 2px; /* 外側の余白 */
    cursor: pointer; /* カーソルをポインターに */
    transition: background-color 0.3s, box-shadow 0.3s; /* 背景色と影のトランジション設定 */
}

.submit-advice a{
	color:#fff;
    text-decoration: none; /* テキストの下線を消す */
        display: inline-block; /* インラインブロックとして表示 */

}

/* ホバー時のスタイル */
.submit-advice:hover {
    background-color: #ee707c; /* ホバー時の背景色を少し暗く */
    box-shadow: 0 12px 16px 0 rgba(0,0,0,0.24), 0 17px 50px 0 rgba(0,0,0,0.19); /* 影を追加 */
}


.divider {
  width: 100%;
  height: 30px;
  
	margin:30px 0;
  background: repeating-linear-gradient(
    -45deg,
    #FFFFFF,
    #FFFFFF 10px,
    transparent 10px,
    transparent 20px
  );
}


.post-time {

  font-size: 0.8em;
  color: #666;
  margin-top: 5px;
}


.advice-form {
  background-color: #222; /* 背景色を暗めに設定 */
  color: #fff; /* テキストを白色に */
  padding:10px 20px;
  border-radius: 10px;
  margin-bottom:180px;
}

.advice-form h3 {
  color: #FFD700; /* タイトルの色を金色に */
  margin-bottom: 10px;
}

.advice-form p {
  color: #ccc; /* 説明テキストの色を薄いグレーに */
}

.form-group {
  margin-bottom: 15px;
}

.form-group label {
  display: block;
  margin-bottom: 5px;
}

.form-group input[type="text"],
.form-group select,
.form-group textarea {
  width: 94%;
  padding: 10px;
  border-radius: 5px;
  border: none;
  background-color: #333;
  color: #fff;
}

.form-group textarea {
  height: 100px; /* テキストエリアの高さを設定 */
    width: 94%;

}

#responder{
	  height: 40px; 
    width: 100%;
}

.submit-button {
  background-color: #ee707c;
  color: #fff;
  padding: 10px 15px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s;
    width: 100%;
}

.submit-button:hover {
  background-color: #ee707c; /* ホバー時に色を少し変える */
}


.audio-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 10px;
}

#playPauseBtn {
  font-size: 24px;
  background-color: #fff;
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  outline: none;
  font-size:20px;
  
}


#p5Canvas {
  position: absolute;
  top: 0;
  left: 0;
 z-index: 100;
}



.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 20px;
}

.pagination-link {
  display: inline-block;
  padding: 8px 8px;
  margin: 0 5px;
  font-size: 16px;
  text-decoration: none;
  color: #333;
  background-color: #f5f5f5;
  border-radius: 5px;
  transition: background-color 0.3s ease;
}

.pagination-link:hover {
  background-color: #e0e0e0;
}

.pagination-link.active {
  background-color: #333;
  color: #fff;
  cursor: default;
}


#drawingContainer {
  position: block;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 200;
}

#drawingCanvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}




.toolbar {
  position: fixed;
  bottom: 80px;
  left: 50%;
  transform: translateX(-50%);
  background-color: rgba(255, 255, 255, 0.8);
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px;
  border-radius: 30px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  z-index: 210;
  }

.toolbar-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 36px;
  height: 34px;
  margin: 0 5px;
  background-color: #fff;
  border: none;
  border-radius: 50%;
  color: #333;  
  cursor: pointer;
  outline: none;
  transition: background-color 0.3s;
}

.toolbar-btn:hover {
  background-color: #f0f0f0;
}

.toolbar-btn i {
}

.toolbar-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.toolbar-btn span {
  display: inline-block;
  font-size: 10px;
  margin-top: 5px;
}

.toolbar {
  display: none;
}


.toolbar-btn.current {
  border: 1px solid #454545;
}



 html::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(rgba(18, 16, 16, 0) 50%, rgba(0, 0, 0, 0.25) 50%), linear-gradient(90deg, rgba(255, 0, 0, 0.06), rgba(0, 255, 0, 0.02), rgba(0, 0, 255, 0.06));
  z-index: 2;
  background-size: 100% 2px, 3px 100%;
  pointer-events: none;
}

html::after {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(18, 16, 16, 0.1);
  opacity: 0;
  z-index: 2;
  pointer-events: none;
  animation: flicker 0.5s infinite;
}

    @keyframes flicker {
      0% {
        opacity: 0.1;
      }
      50% {
        opacity: 0.2;
      }
      100% {
        opacity: 0.1;
      }
    }
    
    
    
.channel-message {
  position: absolute;
  top: 100px;
  left: 0;
  right: 0;
  margin: 0 auto;
  max-width: 80%;
  color: white;
  padding: 10px;
  border-radius: 5px;
  opacity: 0;
  transition: opacity 1.5s;
  text-align: center;
  z-index:210;
}

.channel-message a{
	color:white;
}

.channel-message.show {
  opacity: 1;
}



.htv {
  width: 320px;
  height: 320px;
  background-color: #222;
  border: 15px solid #333;
  border-radius: 20px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.7);
  top: 47%;
  left: 50%;
  transform: translate(-50%, -50%);
  overflow: hidden;
  padding-top: 10px;
  z-index: 202;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
  display: none;
  position: absolute;
}

.htv.show {
  opacity: 1;
}

.htv-turn-off {
  position: absolute;
  bottom: 180px;
  left: 37%;
  width: 80px;
  text-align: center;
  background-color: rgba(0, 0, 0, 0.7);
  color: white;
  padding: 5px 10px;
  border-radius: 5px;
  cursor: pointer;
  opacity: 0;
  pointer-events: none; /* 追加: ボタンが表示されるまでクリックできないようにする */
  transition: opacity 0.5s ease-in-out, pointer-events 0.5s ease-in-out; /* 追加: アニメーションのためのトランジション */
  z-index: 203;
}

.htv-turn-off.show {
  opacity: 1;
  pointer-events: auto; /* 追加: ボタンが表示された後クリックできるようにする */
}


.htv-logo {
  color: #ff69b4;
  font-size: 15px;
  font-weight: bold;
  font-family: 'Kosugi Maru', sans-serif;
  position: absolute;
  bottom: 18px;
  left: 50%;
  transform: translateX(-50%);
  text-shadow: 0 0 5px #ff1493, 0 0 10px #ff1493, 0 0 15px #ff1493;
  z-index: 202;
  animation: pulse 1.0s infinite;
}

@keyframes pulse {
  0% {
    transform: translateX(-50%) scale(1);
    text-shadow: 0 0 5px #ff1493, 0 0 10px #ff1493, 0 0 15px #ff1493;
  }
  50% {
    transform: translateX(-50%) scale(1.2);
    text-shadow: 0 0 10px #ff1493, 0 0 20px #ff1493, 0 0 30px #ff1493;
  }
  100% {
    transform: translateX(-50%) scale(1);
    text-shadow: 0 0 5px #ff1493, 0 0 10px #ff1493, 0 0 15px #ff1493;
  }
}

.htv::before {
  content: '';
  width: 60px;
  height: 5px;
  background-color: #333;
  border-radius: 2.5px;
  position: absolute;
  top: -10px;
  left: calc(50% - 30px);
}

.htv-screen {
  width: 90%;
  height: 85%;
  background-color: black;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin: auto;
  overflow: hidden;
}

.had {
  display: none;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.had img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.hcolor-bar {
  display: none;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right,
    #ffffff 0%, #ffffff 12.5%,
    #ffff00 12.5%, #ffff00 25%,
    #00ffff 25%, #00ffff 37.5%,
    #00ff00 37.5%, #00ff00 50%,
    #ff00ff 50%, #ff00ff 62.5%,
    #ff0000 62.5%, #ff0000 75%,
    #0000ff 75%, #0000ff 87.5%,
    #000000 87.5%, #000000 100%
  );
  position: relative;
}

.hcolor-bar::after {
  content: '';
  width: 100%;
  height: 20%;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.5));
  position: absolute;
  bottom: 0;
  left: 0;
}

.htv-button {
  width: 10px;
  height: 10px;
  background-color: #666;
  border-radius: 50%;
  position: absolute;
  bottom: 10px;
  left: 10px;
  cursor: pointer;
}

.htv-button:active {
  background-color: #888;
}

.htv-speaker {
  width: 50px;
  height: 5px;
  background-color: #444;
  position: absolute;
  bottom: 10px;
  right: 10px;
  border-radius: 2.5px;
}


.htv-message {
  position: absolute;
  top: 120px;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: rgba(0, 0, 0, 0.7);
  color: white;
  padding: 10px;
  opacity: 0;
  border-radius: 5px;
  pointer-events: none;
  transition: opacity 1.5s;
  z-index: 210;
}

.htv-message.show {
  opacity: 1;
}


.announcement-modal {
  display: none;
  position: absolute;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
height
  background-color: rgba(0,0,0,0.4);
}

.announcement-modal-content {
  background-color: #fefefe;
  margin: 15% auto;
  padding: 20px;
  border: 1px solid #888;
  width: 80%;
  height:60vh;
  border-radius: 10px;
  position: relative;
  overflow-y: auto; 
}

.announcement-modal-close {
  color: #aaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
}

.announcement-modal-close:hover,
.announcement-modal-close:focus {
  color: #000;
  text-decoration: none;
  cursor: pointer;
}

#announcement-title {
  margin-top: 0;
  color: #333;
}

#announcement-text {
  color: #666;
}


.advice-answer a{


	  color: red;

}