@import url(//fonts.googleapis.com/earlyaccess/notosanstc.css);

* {
  -webkit-box-sizing: border-box;
  font-family: "Noto Sans TC", sans-serif;
  box-sizing: border-box;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}

html,
body {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  margin: 0;
  padding: 0;
  font-family: "Noto Sans TC";
}

button:focus,
input:focus {
  outline: none;
}

.showtxt span {
  display: inline-block;
  line-height: 25px;
}

.container {
  display: flex;
  flex-direction: column;
  width: 100vw;
  align-items: center;
}

.wrapper {
  min-height: 90vh;
  width: 100vw;
  background-color: #ffd375;
}

.warning-message {
  display: none;
  background-color: #f8d7da;
  color: #721c24;
  padding: 10px;
  margin-bottom: 10px;
  border: 1px solid #f5c6cb;
  border-radius: 4px;
  text-align: center;
}

/* index-navbar */
.nav-container {
  display: flex;
  flex-direction: row;
  background-color: #ffffff;
  padding: 10px 30px;
  justify-content: space-between;
  align-items: center;
  position: fixed;
  width: 100vw;
  z-index: 10;
}

.nav-left {
  display: flex;
  align-items: center;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 30px;
}

.nav-logo {
  height: 80px;
}

.nav-item {
  text-decoration: none;
  color: #000000;
  padding: 10px;
  letter-spacing: 5px;
  text-align: center;
  font-size: 20px;
  font-weight: 700;
}

.nav-item:hover {
  transform: scale(1.1);
}

.underline {
  border-bottom: 3px solid #fd373b;
  color: #fd373b;
  padding-bottom: 10px;
}

.login,
.register {
  text-decoration: none;
  color: #000000;
  background-color: #ffbf23;
  padding: 12px 12px 12px 20px;
  border-radius: 30px;
  letter-spacing: 10px;
  text-align: center;
  width: 120px;
  font-size: 20px;
  font-weight: 700;
}

.register:hover {
  transform: scale(1.1);
}

.login:hover {
  transform: scale(1.1);
}

/* index-header */
.header-container {
  margin-top: 100px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  width: 100vw;
  min-height: 750px;
  background-image: url("/img/header-background.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: bottom;
  animation: drop 0.8s linear;
  gap: 30px;
}

@keyframes drop {
  0% {
    background-position: top;
  }

  75% {
    background-position: bottom;
  }

  100% {
    background-position: bottom;
  }
}

.header-ai-sensei {
  max-width: 400px;
}

.header-container-content {
  display: flex;
  flex-direction: column;
}

.header-container-content h1 {
  letter-spacing: 3px;
  line-height: 45px;
  font-size: 35px;
}

.header-container-content h3 {
  line-height: 35px;
  font-size: 20px;
}

.call-to-action {
  text-decoration: none;
  color: #ffffff;
  background-color: #fd373b;
  padding: 18px;
  border-radius: 100px;
  letter-spacing: 10px;
  text-align: center;
  width: 200px;
  font-size: 20px;
  font-weight: 700;
  margin-top: 30px;
}

.call-to-action:hover {
  transform: scale(1.1);
}

@keyframes bounce {

  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0);
  }

  40% {
    transform: translateY(-20px);
  }

  60% {
    transform: translateY(-10px);
  }
}

.fa-solid.fa-chevron-down {
  animation: bounce 2s infinite;
  margin-top: 20px;
}

/* index-section-product-description */
.section-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 50px;
  justify-content: center;
  width: 80vw;
}

.section-title {
  border-bottom: 3px solid #fd373b;
  color: #fd373b;
  padding-bottom: 10px;
  letter-spacing: 7px;
  text-align: center;
  font-size: 25px;
  font-weight: 700;
}

.section-description {
  line-height: 30px;
  font-size: 20px;
  text-align: center;
  margin: 0 0 20px;
  font-weight: 400;
}

.description-picture {
  margin-top: 30px;
}

/* index-section-feature-description */
.feature-description {
  line-height: 30px;
  font-size: 20px;
  text-align: center;
  margin: 0;
  font-weight: 400;
}

.feature-container {
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 30px;
  margin-top: 100px;
}

.feature-box {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 0 30px;
  border: 3px solid #ffbf23;
  flex: 1;
  border-radius: 50px;
  box-shadow: 8px 8px 0px 2px #ffbf23;
  background-color: #ffffff;
  position: relative;
}

.feature-box-header {
  line-height: 30px;
  font-size: 25px;
  text-align: center;
  font-weight: 700;
  background-color: #ffbf23;
  padding: 20px 30px;
  border-radius: 50px;
  flex: 1;
  position: absolute;
  top: -60px;
  width: 80%;
}

.feature-box-content {
  line-height: 30px;
  font-size: 20px;
  text-align: center;
  font-weight: 400;
  text-align: left;
  flex: 4;
  margin: 0;
  padding: 50px 20px 50px;
}

.feature-box i {
  font-size: 25px;
}

/* index-section-media-report */
.media-report-section-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 50px;
  justify-content: center;
  width: 100vw;
  background-image: url("/img/index-background-1.png");
  background-repeat: no-repeat;
  background-size: cover;
}

.media-report-section-container2 {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 50px;
  justify-content: center;
  width: 100vw;
  background-color: #ffd375;
}

.news-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin-top: 50px;
  width: 80vw;
}

.extra-news-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 30px;
  width: 80vw;
}

.more-news-button {
  text-decoration: none;
  color: #000000;
  background-color: transparent;
  text-align: center;
  font-size: 25px;
  font-weight: 700;
  margin-top: 30px;
  border: none;
  cursor: pointer;
}

.more-news-button i {
  padding-right: 20px;
}

.more-news-button:hover {
  transform: scale(1.1);
}

.news-box {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  justify-content: flex-start;
  gap: 30px;
  padding: 20px 30px;
  border: 3px solid #ffbf23;
  border-radius: 50px;
  box-shadow: 8px 8px 0px 2px #ffbf23;
  background-color: #ffffff;
  margin-bottom: 30px;
}

@keyframes slideInFromLeft {
  0% {
    transform: translateX(-100%);
    opacity: 0;
  }

  100% {
    transform: translateX(0);
    opacity: 1;
  }
}

.animate {
  animation: slideInFromLeft 1s ease-out;
}

.news-box-picture1,
news-box-picture2 {}

.news-box-content {
  display: flex;
  flex-direction: column;
  height: 100%;
  gap: 15px;
  width: 100%;
}

.news-box-content :last-child {
  align-self: flex-end;
}

.news-box-header {
  line-height: 30px;
  font-size: 20px;
  font-weight: 700;
  margin: 0;
  text-align: left;
}

.news-box-detail {
  line-height: 30px;
  font-size: 18px;
  font-weight: 400;
  text-align: left;
  margin: 0;
}

.news-box-link {
  text-decoration: none;
  color: #ffffff;
  background-color: #fd373b;
  padding: 10px 15px;
  border-radius: 100px;
  text-align: center;
  width: 150px;
  font-size: 18px;
  font-weight: 700;
}

.news-box-link:hover {
  transform: scale(1.1);
}

/* index-section-potential-user */
.potential-user-section-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 50px;
  justify-content: center;
  width: 100vw;
  background-color: #ffd375;
}

.ta-container {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  margin-top: 50px;
  width: 80vw;
}

.ta-box {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  justify-content: flex-start;
  padding: 20px 30px;
  border: 3px solid #ffbf23;
  border-radius: 50px;
  box-shadow: 8px 8px 0px 2px #ffbf23;
  background-color: #ffffff;
  width: 400px;
}

.ta-box i {
  font-size: 60px;
  margin: 10px;
}

.ta-box-header {
  line-height: 30px;
  font-size: 20px;
  text-align: center;
  font-weight: 700;
  background-color: #fd373b;
  color: #ffffff;
  padding: 10px 15px;
  border-radius: 50px;
  flex: 1;
  margin: 10px;
}

.ta-box-content {
  line-height: 30px;
  font-size: 20px;
  text-align: center;
  font-weight: 400;
  margin: 0px;
}

/* index-section-share-user */
.share-user-section-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 50px;
  justify-content: center;
  width: 100vw;
  background-color: #ffd375;
}

.share-container {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
  margin-top: 50px;
}

.share-box {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  justify-content: flex-start;
  padding: 20px 35px;
  border: 3px solid #ffbf23;
  border-radius: 40px;
  box-shadow: 8px 8px 0px 2px #ffbf23;
  background-color: #ffffff;
  gap: 20px;
  width: 600px;
}

.share-box-img1,
share-box-img2,
share-box-img3,
share-box-img4 {}

.share-box-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 10px;
  width: 500px;
}

.share-box-header {
  line-height: 30px;
  font-size: 20px;
  text-align: left;
  font-weight: 700;
  background-color: #fd373b;
  color: #ffffff;
  padding: 10px 20px;
  border-radius: 50px;
  flex: 1;
  width: fit-content;
  margin: 0;
}

.share-box-detail {
  line-height: 30px;
  font-size: 18px;
  text-align: left;
  font-weight: 400;
  margin: 0;
}

/* index-section-plan */
.plan-section-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 50px;
  justify-content: center;
  width: 100vw;
  background-image: url("/img/index-background-2.png");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: top;
}

.plan-section-title {
  border-bottom: 3px solid #fd373b;
  color: #fd373b;
  padding-bottom: 10px;
  letter-spacing: 7px;
  text-align: center;
  font-size: 25px;
  font-weight: 700;
  margin-top: 400px;
}

.plan-container {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-evenly;
  gap: 50px;
  padding: 50px 0;
  width: 45vw;
}

.plan-container-personal,
.plan-container-company {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  flex: 1;
  padding: 30px;
  border: 3px solid #ffbf23;
  border-radius: 40px;
  box-shadow: 5px 5px 0px 2px #ffbf23;
  background-color: #ffffff;
  gap: 20px;
  width: 400px;
  height: 300px;
  cursor: pointer;
}

.plan-container-personal:hover,
.plan-container-company:hover {
  transform: scale(1.1);
}

.plan-container-content {
  text-align: center;
  font-size: 18px;
  line-height: 25px;
  margin: 0;
}

.plan-container-content1 {
  text-align: center;
  font-size: 18px;
  line-height: 25px;
  margin-top: 15px;
}

.plan-container-content i {
  font-size: 25px;
  color: #fd373b;
  margin-right: 10px;
}

.price-table {
  border-collapse: collapse;
  width: 100%;
  margin-bottom: 20px;
}

.price-table th,
.price-table td {
  padding: 10px;
  text-align: center;
  font-size: 18px;
}

.price-table th {
  border-bottom: #ffbf23 2px solid;
}

.price-table-price {
  color: #fd373b;
  font-weight: 600;
}

.plan-container-call-to-action {
  text-decoration: none;
  color: #ffffff;
  background-color: #fd373b;
  padding: 18px;
  border-radius: 100px;
  letter-spacing: 10px;
  text-align: center;
  width: 200px;
  font-size: 20px;
  font-weight: 700;
  margin-top: 30px;
}

/* nav-to-top-arrow  */
#return-to-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: rgb(0, 0, 0);
  background: rgba(0, 0, 0, 0.7);
  width: 50px;
  height: 50px;
  display: block;
  text-decoration: none;
  -webkit-border-radius: 35px;
  -moz-border-radius: 35px;
  border-radius: 35px;
  display: none;
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

#return-to-top i {
  color: #fff;
  margin: 0;
  position: relative;
  left: 15px;
  top: 13px;
  font-size: 21px;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

#return-to-top:hover {
  background: rgba(0, 0, 0, 0.9);
}

#return-to-top:hover i {
  color: #fff;
  top: 5px;
}

/* index-section-footer */
.footer-container {
  position: relative;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  width: 100vw;
  min-height: 350px;
  animation: drop 0.8s linear;
  margin-top: 250px;
}

.footer-container::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-image: url("/img/header-background.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: bottom;
  transform: rotate(180deg);
  z-index: -1;
}

.footer-ai-sensei {
  height: 300px;
  position: absolute;
  top: -240px;
  z-index: -2;
  padding-left: 40px;
  animation: popup 0.8s ease-out;
}

@keyframes popup {
  0% {
    transform: scale(0);
    opacity: 0;
  }

  80% {
    transform: scale(1.1);
    opacity: 0.7;
  }

  100% {
    transform: scale(1);
    opacity: 1;
  }
}

.footer-logo {
  width: 100px;
  margin-top: 30px;
}

.footer-company-name {
  font-size: 20px;
  letter-spacing: 5px;
  margin: 0;
}

.copy-right {
  font-size: 18px;
}

/* faq */
.faq-container {
  margin-top: 100px;
  padding-top: 50px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100vw;
  background-color: #ffd375;
}

.faq-box {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 30px;
  justify-content: center;
  width: 80vw;
  gap: 20px;
}

.faq-question {
  color: #000000;
  padding-bottom: 10px;
  text-align: left;
  font-size: 20px;
  font-weight: 700;
  cursor: pointer;
  padding: 35px;
  border: 3px solid #ffbf23;
  border-radius: 30px;
  box-shadow: 8px 8px 0px 2px #ffbf23;
  background-color: #ffffff;
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}

.faq-question i {
  cursor: pointer;
}

.fa.fa-solid.fa-plus:hover {
  transform: scale(1.1);
}

.faq-detail-description {
  line-height: 30px;
  font-size: 18px;
  text-align: left;
  margin: 0 0 20px;
  font-weight: 400;
  padding: 35px;
  border: 3px solid #ffbf23;
  border-radius: 30px;
  box-shadow: 8px 8px 0px 2px #ffbf23;
  background-color: #ffffff;
  width: 100%;
}

.simple-footer-container {
  position: relative;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  width: 100vw;
  height: 100px;
  animation: drop 0.8s linear;
  gap: 30px;
  background-color: #ffd375;
}

.simple-copy-right {
  font-size: 20px;
}

/* aboutus */
.aboutus-section-container {
  line-height: 30px;
  font-size: 20px;
  font-weight: 400;
  padding: 40px 50px;
  border: 3px solid #ffbf23;
  border-radius: 30px;
  box-shadow: 8px 8px 0px 2px #ffbf23;
  background-color: #ffffff;
  width: 80vw;
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 30px;
  text-align: center;
  margin: 150px auto 30px;
}

.aboutus-section-title {
  color: #000000;
  padding-bottom: 10px;
  letter-spacing: 7px;
  text-align: center;
  font-size: 25px;
  font-weight: 700;
  margin: 0;
  padding: 0;
}

.aboutus-section-description {
  line-height: 35px;
  font-size: 20px;
  text-align: left;
  margin: 0 0 20px;
  font-weight: 400;
}

.company-logo {
  height: 150px;
}

.aboutus-product-container {
  padding-top: 50px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100vw;
  background-color: #ffd375;
  position: relative;
}

.aboutus-product-title {
  line-height: 30px;
  font-size: 20px;
  text-align: center;
  font-weight: 700;
  background-color: #fd373b;
  color: #ffffff;
  padding: 10px 30px;
  border-radius: 50px;
  margin: 10px;
  position: absolute;
  top: 17px;
}

.aboutus-product-box {
  line-height: 30px;
  font-size: 20px;
  text-align: left;
  margin: 0 0 20px;
  font-weight: 400;
  padding: 50px 35px;
  border: 3px solid #ffbf23;
  border-radius: 30px;
  box-shadow: 8px 8px 0px 2px #ffbf23;
  background-color: #ffffff;
  width: 80vw;
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 50px;
}

.product-logo:hover {
  transform: scale(1.1);
}

.aboutus-contact-container {
  padding-top: 50px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100vw;
  background-color: #ffd375;
  position: relative;
}

.aboutus-contact-title {
  line-height: 30px;
  font-size: 20px;
  text-align: center;
  font-weight: 700;
  background-color: #fd373b;
  color: #ffffff;
  padding: 10px 30px;
  border-radius: 50px;
  margin: 10px;
  position: absolute;
  top: 17px;
  z-index: 3;
}

.aboutus-contact-box {
  line-height: 30px;
  font-size: 20px;
  text-align: left;
  margin: 0 0 20px;
  font-weight: 400;
  padding: 80px 150px;
  border: 3px solid #ffbf23;
  border-radius: 30px;
  box-shadow: 8px 8px 0px 2px #ffbf23;
  background-color: #ffffff;
  width: 80vw;
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 50px;
  text-align: center;
}

.aboutus-contact-header {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  flex: 1;
  gap: 10px;
}

.aboutus-contact-header:hover {
  transform: scale(1.1);
}

.aboutus-contact-header i {
  font-size: 35px;
  color: #fd373b;
  margin-right: 10px;
}

/* login & register */
.login-container {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  width: 80vw;
  gap: 70px;
  margin: 180px auto 0;
}

.register-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  flex-direction: row-reverse;
  width: 80vw;
  gap: 70px;
  margin: 180px auto 0;
}

.login-container-title,
.register-container-title {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 30%;
}

.login-container-title h2,
.register-container-title h2 {
  letter-spacing: 3px;
  line-height: 45px;
  font-size: 30px;
  text-align: center;
}

.login-container-title h3,
.register-container-title h3 {
  line-height: 35px;
  font-size: 20px;
  text-align: center;
}

.login-container-form {
  line-height: 30px;
  font-size: 20px;
  font-weight: 400;
  padding: 40px 80px 0px 80px;
  border: 3px solid #ffbf23;
  border-radius: 30px;
  box-shadow: 8px 8px 0px 2px #ffbf23;
  background-color: #ffffff;
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 20px;
  text-align: center;
  align-items: center;
}

.register-container-form {
  line-height: 30px;
  font-size: 20px;
  font-weight: 400;
  padding: 40px 80px 0px 80px;
  border: 3px solid #ffbf23;
  border-radius: 30px;
  box-shadow: 8px 8px 0px 2px #ffbf23;
  background-color: #ffffff;
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 20px;
  text-align: center;
  align-items: center;
}

.resetpw-container-form {
  line-height: 30px;
  font-size: 20px;
  font-weight: 400;
  padding: 40px 80px 30px 80px;
  border: 3px solid #ffbf23;
  border-radius: 30px;
  box-shadow: 8px 8px 0px 2px #ffbf23;
  background-color: #ffffff;
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 30px;
  text-align: center;
  align-items: center;
}

.login-container-form label,
.register-container-form label,
.resetpw-container-form label {
  font-size: 25px;
  white-space: nowrap;
}

.login-container-form input,
.register-container-form input,
.resetpw-container-form input {
  outline: none;
  border: none;
  background: none;
  box-shadow: none;
  border-radius: 0;
  font-size: 20px;
}

.name-container,
.username-container,
.password-container {
  display: flex;
  flex-direction: row;
  gap: 40px;
  width: 100%;
  border-bottom: #ffbf23 solid 2px;
  padding-bottom: 40px;
  width: 500px;
}

.button-container {
  display: flex;
  flex-direction: row;
  gap: 80px;
  width: 100%;
  justify-content: center;
  margin-top: 50px;
}

.native-login-button,
.native-register-button {
  text-decoration: none;
  border: none;
  color: #ffffff;
  background-color: #fd373b;
  padding: 16px;
  border-radius: 100px;
  text-align: center;
  width: 200px;
  font-size: 20px;
  font-weight: 700;
  cursor: pointer;
}

.reset-pw-button {
  text-decoration: none;
  border: none;
  color: #ffffff;
  background-color: #fd373b;
  padding: 20px;
  border-radius: 100px;
  text-align: center;
  width: 200px;
  font-size: 20px;
  font-weight: 700;
  cursor: pointer;
}

.google-login-button,
.google-register-button {
  text-decoration: none;
  border: #fd373b 5px solid;
  color: #fd373b;
  background-color: #ffffff;
  padding: 12px;
  border-radius: 100px;
  text-align: center;
  width: 200px;
  font-size: 20px;
  font-weight: 700;
  cursor: pointer;
}

.native-login-button:hover {
  transform: scale(1.1);
}

.google-login-button:hover {
  transform: scale(1.1);
}

.native-register-button:hover {
  transform: scale(1.1);
}

.google-register-button:hover {
  transform: scale(1.1);
}

.login-warn-text:hover {
  transform: scale(1.1);
}

.login-warn-text a {
  text-decoration: none;
  outline: none;
  color: #fd373b;
  cursor: pointer;
  font-weight: 700;
  margin: 0;
}

.login-warn-text a:hover {
  text-decoration: none;
  transform: scale(1.1);
}

.login-warn-text a:active {
  text-decoration: none;
}

.warntext {
  color: #fd373b;
  font-weight: 700;
  font-size: 20px;
}

/* verify*/
.profile {
  font-size: 25px;
  color: #ffffff;
  background-color: #ffbf23;
  border-radius: 100px;
  padding: 15px 20px;
  cursor: pointer;
}

.profile:hover {
  transform: scale(1.1);
}

.logout {
  font-size: 25px;
  color: #ffffff;
  background-color: #ffbf23;
  border-radius: 100px;
  padding: 15px 18px;
  cursor: pointer;
}

.logout:hover {
  transform: scale(1.1);
}

.verify-container {
  margin-top: 150px;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100vw;
}

.verify-form {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  align-items: center;
  width: 80vw;
  gap: 30px;
}

.verify-title-container {
  position: relative;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.verify-title-container h2 {
  font-size: 25px;
  font-weight: 700;
  text-align: center;
}

.verify-title-container p {
  font-size: 20px;
  font-weight: 700;
  text-align: right;
  position: absolute;
  right: 0;
}

.verify-title-container strong {
  color: #fd373b;
}

.verify-title-container i {
  font-size: 35px;
  padding-right: 20px;
}

.verify-input-container {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.author-title-input-container {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  width: 80vw;
  gap: 20px;
}

.author-input-container {
  position: relative;
  border: 3px solid #ffbf23;
  border-radius: 100px;
  box-shadow: 5px 5px 0px 1px #ffbf23;
  background-color: #ffffff;
  width: 49%;
  height: 90px;
  flex: 1;
}

.title-input-container {
  position: relative;
  border: 3px solid #ffbf23;
  border-radius: 100px;
  box-shadow: 5px 5px 0px 1px #ffbf23;
  background-color: #ffffff;
  width: 49%;
  height: 90px;
  flex: 2;
}

.content-input-container {
  display: flex;
  flex-direction: row;
  align-items: center;
  position: relative;
  border: 3px solid #ffbf23;
  border-radius: 30px;
  box-shadow: 5px 5px 0px 1px #ffbf23;
  background-color: #ffffff;
  width: 80vw;
  min-height: 450px;
}

.author-title-input-container label {
  position: absolute;
  top: 26px;
  left: 36px;
  font-size: 25px;
}

.content-input-container label {
  position: absolute;
  top: 22px;
  left: 36px;
  font-size: 25px;
}

.author-title-input-container input {
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  border: none;
  background: none;
  box-shadow: none;
  padding-left: 120px;
  width: 100%;
  height: 90px;
  font-size: 20px;
  padding-bottom: 9px;
}

.content-input-container textarea {
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  border: none;
  background: none;
  box-shadow: none;
  padding-top: 25px;
  padding-left: 180px;
  width: 100%;
  height: 450px;
  font-size: 20px;
  resize: vertical;
}

.author-title-input-container ::placeholder {
  font-size: 20px;
}

.content-input-container ::placeholder {
  font-size: 20px;
}

.verify-button {
  text-decoration: none;
  color: #ffffff;
  background-color: #fd373b;
  padding: 20px;
  border-radius: 100px;
  letter-spacing: 10px;
  text-align: center;
  width: 200px;
  font-size: 20px;
  font-weight: 700;
  margin-top: 15px;
  border: none;
  cursor: pointer;
}

.verify-button:hover {
  transform: scale(1.1);
}

/* verify-report*/
.verify-report-container {
  margin-top: 150px;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100vw;
  gap: 30px;
}

.verify-report-header {
  display: flex;
  flex-direction: row;
  width: 80vw;
  justify-content: space-between;
  align-items: flex-end;
  position: relative;
}

.verify-report-title-container {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.verify-report-title-container h2 {
  font-size: 25px;
  font-weight: 700;
  text-align: center;
}

.verify-report-title-container i {
  font-size: 35px;
  padding-right: 20px;
}

.verify-report-button-container {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 20px;
  text-align: right;
  position: absolute;
  right: 0px;
}

.verify-report-download {
  text-decoration: none;
  color: #fd373b;
  background-color: #ffffff;
  border: #fd373b 3px solid;
  padding: 18px;
  border-radius: 100px;
  letter-spacing: 5px;
  text-align: center;
  width: 200px;
  font-size: 18px;
  font-weight: 700;
  margin-top: 30px;
  cursor: pointer;
}

.verify-report-download:hover {
  transform: scale(1.1);
}

.verify-report-button {
  text-decoration: none;
  color: #ffffff;
  background-color: #fd373b;
  padding: 20px;
  border-radius: 100px;
  letter-spacing: 5px;
  text-align: center;
  width: 200px;
  font-size: 18px;
  font-weight: 700;
  margin-top: 30px;
  border: none;
  cursor: pointer;
}

.verify-report-button:hover {
  transform: scale(1.1);
}

.verify-report-overview {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  border: 3px solid #ffbf23;
  border-radius: 30px;
  box-shadow: 5px 5px 0px 1px #ffbf23;
  background-color: #ffffff;
  width: 80vw;
  min-height: 300px;
  padding: 20px 30px;
}

.verify-report-overview-header {
  padding-bottom: 20px;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 5px;
  text-align: center;
  border-bottom: #ffbf23 1px solid;
  width: 100%;
}

.verify-report-overview-content {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  padding: 20px 30px;
  width: 80vw;
  justify-content: space-between;
}

.verify-report-info {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  gap: 10px;
  white-space: nowrap;
}

.verify-report-info li {
  font-size: 20px;
  font-weight: 400;
}

.verify-report-level {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 30px;
}

.verify-report-level-number p {
  font-size: 35px;
  font-weight: 700;
  margin: 0;
  text-align: center;
  color: #ff914d;
}

.verify-report-level-graph {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.verify-report-level-bar {
  position: relative;
  width: 100%;
  margin-top: 15px;
}

.bar-point {
  position: absolute;
  left: 70%;
  width: 0;
  height: 0;
  border-left: 18px solid transparent;
  border-right: 18px solid transparent;
  border-top: 30px solid #000000;
  transform: translate(-50%, -50%);
}

.bar-level-block {
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 3px;
}

.bar-level-block div {
  width: 90px;
  height: 30px;
}

.bar-level-1 {
  background-color: #0b9f58;
}

.bar-level-2 {
  background-color: #6ecb66;
}

.bar-level-3 {
  background-color: #ffde59;
}

.bar-level-4 {
  background-color: #f69f6a;
}

.bar-level-5 {
  background-color: #fd373b;
}

.bar-text {
  display: flex;
  flex-direction: row;
  justify-content: center;
  justify-content: space-between;
}

.bar-text-left {
  font-size: 20px;
  font-weight: 600;
  color: #0b9f58;
}

.bar-text-right {
  font-size: 20px;
  font-weight: 600;
  color: #fd373b;
}

.verify-report-detail {}

.verify-report-data {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  gap: 10px;
  background-color: rgb(240, 240, 240);
  border-radius: 40px;
  padding: 30px 45px;
  text-align: left;
}

.verify-report-data li {
  font-size: 20px;
  font-weight: 400;
}

.verify-report-suggestion {
  display: flex;
  flex-direction: column;
}

.verify-report-suggestion button {
  background: none;
  color: inherit;
  border: none;
  padding: 0;
  font: inherit;
  cursor: pointer;
  outline: inherit;
  font-size: 18px;
  font-weight: 700;
  color: #fd373b;
  padding-top: 10px;
}

.verify-report-suggestion button:hover {
  transform: scale(1.1);
}

.verify-report-original {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  border: 3px solid #ffbf23;
  border-radius: 30px;
  box-shadow: 5px 5px 0px 1px #ffbf23;
  background-color: #ffffff;
  width: 80vw;
  padding: 20px 30px;
  min-height: 450px;
  gap: 30px;
  align-items: flex-end;
  z-index: 19;
}

.verify-report-original-header {
  padding-bottom: 20px;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 5px;
  text-align: center;
  border-bottom: #ffbf23 1px solid;
  width: 100%;
}

.verify-report-original-mark {
  display: flex;
  flex-direction: row;
  gap: 10px;
}

.verify-report-original-mark-low-ai {
  font-size: 18px;
  font-weight: 600;
  background-color: #ffde59;
  padding: 10px;
  border-radius: 40px;
}

.verify-report-original-mark-high-ai {
  font-size: 18px;
  font-weight: 600;
  background-color: #f4b9ba;
  padding: 10px;
  border-radius: 40px;
}

.verify-report-original-content {
  font-size: 18px;
  line-height: 25px;
}

.verify-report-original-content-low-ai {
  font-size: 18px;
  background-color: #ffde59;
  padding: 10px;
  border-radius: 20px;
  line-height: 25px;
}

.verify-report-original-content-high-ai {
  font-size: 18px;
  background-color: #f4b9ba;
  padding: 10px;
  border-radius: 20px;
  line-height: 25px;
}

.modal-overlay,
.modal-overlay-2,
.modal-overlay-3 {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 20;
}

.modal {
  padding: 60px 100px;
  ;
  border-radius: 33px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 10px;
  background-color: #ffffff;
  align-items: center;
  margin: 200px auto;
}

.modal-2 {
  padding: 50px;
  border-radius: 33px;
  position: relative;
  display: flex;
  flex-direction: column;
  background-color: #ffffff;
  align-items: center;
  width: 50vw;
}

.modal-3 {
  padding: 30px 50px;
  border-radius: 33px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 10px;
  background-color: #ffffff;
  align-items: center;
  width: 300px;
  margin: 200px auto;
}

.close-modal,
.close-modal-2,
.close-modal-3 {
  position: absolute;
  top: 20px;
  right: 20px;
  cursor: pointer;
  width: 40px;
  height: 40px;
  background-color: #fd373b;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.close-modal:hover,
.close-modal-2:hover,
.close-modal-3:hover {
  transform: scale(1.1);
}

.close-modal::before,
.close-modal::after,
.close-modal-2::before,
.close-modal-2::after,
.close-modal-3::before,
.close-modal-3::after {
  content: "";
  position: absolute;
  width: 15px;
  height: 2px;
  background-color: #fff;
  font-weight: bold;
}

.close-modal::before,
.close-modal-2::before,
.close-modal-3::before {
  transform: rotate(45deg);
}

.close-modal::after,
.close-modal-2::after,
.close-modal-3::after {
  transform: rotate(-45deg);
}

.modal-text,
.modal-text-2 {
  font-size: 20px;
  font-weight: 600;
  padding: 20px 30px;
  z-index: 3;
  border-radius: 100px;
  color: #ffffff;
  background-color: #fd373b;
  position: relative;
  width: fit-content;
  margin: 0;
}

.modal-level-chart {
  max-width: 40vw;
  max-height: 40vw;
}

.modal-alert-text {
  font-size: 20px;
  font-weight: 500;
  z-index: 3;
  color: #000000;
  position: relative;
  margin: 0 auto;
  text-align: center;
}

.modal-ai-sensei {
  height: 150px;
  margin-bottom: 30px;
  animation: popup 0.8s ease-out;
}

.modal-text-2-container {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  text-align: left;
  padding: 20px 30px;
  gap: 50px;
}

.modal-text-2-container i {
  font-size: 50px;
}

.modal-detail-text-2 {
  font-size: 20px;
  color: #000000;
  margin: 0;
}

/* profile */
.profile-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 80vw;
  gap: 30px;
  margin: 150px auto 0;
}

.profile-header {
  display: flex;
  flex-direction: row;
  width: 50vw;
  justify-content: space-between;
  align-items: flex-end;
}

.profile-title-container {
  position: relative;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.profile-title-container h2 {
  font-size: 25px;
  font-weight: 700;
  text-align: center;
}

.profile-title-container i {
  font-size: 35px;
  padding-right: 20px;
}

.profile-content-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  border: 3px solid #ffbf23;
  border-radius: 30px;
  box-shadow: 5px 5px 0px 1px #ffbf23;
  background-color: #ffffff;
  width: 40vw;
  padding: 40px 40px;
  min-height: 600px;
  gap: 30px;
  justify-content: center;
}

.profile-content {
  display: flex;
  flex-direction: row;
  align-items: center;
  border-bottom: #ffbf23 solid 2px;
  width: 70%;
  gap: 20px;
}

.profile-content h2 {
  padding-bottom: 20px;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 5px;
  white-space: nowrap;
}

.profile-content p {
  padding-bottom: 20px;
  font-size: 20px;
  font-weight: 700;
  width: 100%;
  color: #000000;
  margin: 0;
}

.profile-content i {
  font-size: 25px;
  cursor: pointer;
  text-align: right;
  color: #fd373b;
}

.profile-content i:hover {
  transform: scale(1.1);
}

.profile-content-container-confirm-btn {
  text-decoration: none;
  color: #ffffff;
  background-color: #fd373b;
  padding: 20px;
  border-radius: 100px;
  letter-spacing: 10px;
  text-align: center;
  width: 200px;
  font-size: 20px;
  font-weight: 700;
  border: none;
  cursor: pointer;
  margin-top: 10px;
}

.profile-content-container-confirm-btn:hover {
  transform: scale(1.1);
}

p[contenteditable="true"]:focus {
  outline: none;
}

/* verify-history */
.verify-history-container {
  margin-top: 150px;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100vw;
  gap: 30px;
}

.verify-history-header {
  display: flex;
  flex-direction: row;
  width: 80vw;
  justify-content: space-between;
  align-items: flex-end;
  position: relative;
}

.verify-history-title-container {
  position: relative;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.verify-history-title-container h2 {
  font-size: 25px;
  font-weight: 700;
  text-align: center;
}

.verify-history-title-container i {
  font-size: 35px;
  padding-right: 20px;
}

.verify-history-header input {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  text-align: left;
  position: absolute;
  right: 0;
  border: 3px solid #ffbf23;
  border-radius: 30px;
  box-shadow: 5px 5px 0px 1px #ffbf23;
  background-color: #ffffff;
  width: 350px;
  padding: 20px 30px;
  font-size: 20px;
}

.verify-history-table {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  border: 3px solid #ffbf23;
  border-radius: 30px;
  box-shadow: 5px 5px 0px 1px #ffbf23;
  background-color: #ffffff;
  width: 80vw;
  padding: 50px 60px;
  min-height: 600px;
  gap: 30px;
}

.verify-history-table-title {
  padding-bottom: 20px;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 5px;
  border-bottom: #ffbf23 1px solid;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 2fr 1fr;
  text-align: center;
  width: 100%;
}

.verify-history-table-content {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 2fr 1fr;
  text-align: center;
  width: 100%;
  font-size: 20px;
  align-items: center;
}

.verify-history-report-id,
.verify-history-report-time,
.verify-history-report-level,
.verify-history-report-title,
.verify-history-report-download {
  width: 100%;
}

.verify-history-report-title {
  word-wrap: break-word;
  overflow-wrap: break-word;
  text-align: left;
  color: #000000;
}

.verify-history-report-level {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
  padding-right: 30px;
}

.verify-history-report-level p {
  font-size: 20px;
  font-weight: 600;
  color: #f69f6a;
  white-space: nowrap;
}

.verify-history-report-level-bar {
  width: 30%;
  height: 30px;
  background-color: #f69f6a;
}

.verify-history-report-download {
  text-decoration: none;
  color: #fd373b;
  background-color: #ffffff;
  border: #fd373b 3px solid;
  padding: 15px 30px;
  border-radius: 100px;
  letter-spacing: 10px;
  text-align: center;
  font-size: 18px;
  font-weight: 700;
  cursor: pointer;
  margin: 0 auto;
  width: 150px;
}

.verify-history-report-download:hover {
  transform: scale(1.1);
}

/* reportfile-page1 */
.report-file-html {
  display: flex;
  flex-direction: column;
  width: 794px;
  height: 1123px;
  align-items: center;
  padding: 50px;
  margin: 0 auto;
  background-image: url("/img/report-paper-background.png");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: bottom;
}

.report-file-body {}

.report-file-container {
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
}

.report-file-header {
  display: flex;
  flex-direction: column;
  width: 794px;
  justify-content: space-between;
  align-items: flex-start;
  position: relative;
}

.report-file-header img {
  height: 60px;
}

.report-file-header h2 {
  margin: 0 auto;
  font-size: 25px;
  font-weight: 700;
  letter-spacing: 7px;
}

.report-file-overview {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  border: 1px solid #000000;
}

.report-file-overview-header {
  padding: 8px;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 5px;
  text-align: center;
  width: 100%;
  background-color: #000000;
  color: #ffffff;
}

.report-file-content {
  display: flex;
  flex-direction: row;
  width: 100%;
  justify-content: space-around;
  align-items: center;
  padding: 30px 20px;
}

.report-file-overview-content {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  padding: 20px 30px;
  justify-content: space-between;
}

.report-file-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  padding: 0;
}

.report-file-info li {
  font-size: 16px;
  font-weight: 400;
  list-style-type: none;
}

.report-file-level {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
}

.report-file-level-number p {
  font-size: 25px;
  font-weight: 700;
  margin: 0;
  text-align: center;
  color: #ff914d;
}

.report-file-level-graph {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.report-file-level-bar {
  position: relative;
  width: 100%;
  margin-top: 15px;
}

.report-file-bar-point {
  position: absolute;
  left: 70%;
  width: 0;
  height: 0;
  border-left: 18px solid transparent;
  border-right: 18px solid transparent;
  border-top: 30px solid #000000;
  transform: translate(-50%, -50%);
}

.report-file-bar-level-block {
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 3px;
}

.report-file-bar-level-block div {
  width: 55px;
  height: 16px;
}

.report-file-bar-level-1 {
  background-color: #0b9f58;
}

.report-file-bar-level-2 {
  background-color: #6ecb66;
}

.report-file-bar-level-3 {
  background-color: #ffde59;
}

.report-file-bar-level-4 {
  background-color: #f69f6a;
}

.report-file-bar-level-5 {
  background-color: #fd373b;
}

.report-file-bar-text {
  display: flex;
  flex-direction: row;
  justify-content: center;
  justify-content: space-between;
}

.report-file-bar-text-left {
  font-size: 12px;
  font-weight: 600;
  color: #0b9f58;
}

.report-file-bar-text-right {
  font-size: 12px;
  font-weight: 600;
  color: #fd373b;
}

.report-file-detail {}

.report-file-data {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  gap: 10px;
  text-align: left;
  width: 100%;
  padding: 0;
}

.report-file-data li {
  font-size: 16px;
  font-weight: 400;
  list-style-type: none;
}

.report-file-data li:first-child {
  padding-bottom: 10px;
  text-align: center;
  border-bottom: #000000 1px solid;
  letter-spacing: 5;
}

.report-table-overview {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}

.report-table-content {
  display: flex;
  flex-direction: row;
  width: 100%;
  justify-content: space-around;
  align-items: center;
}

.report-table {
  border-collapse: collapse;
  width: 100%;
}

.report-table-rate {
  white-space: nowrap;
  font-size: 16px;
  font-weight: 700;
}

.report-table-rate:first-child {
  background-color: #fd373b;
}

.report-table td,
.report-table th {
  border: 1px solid #000000;
  padding: 10px;
  text-align: left;
  line-height: 23px;
  font-size: 16px;
}

.report-table th {
  background-color: #f2f2f2;
  text-align: center;
}

.report-table-title {
  display: block;
  font-size: 16px;
}

.footer-page {
  font-size: 14px;
  position: absolute;
  bottom: -50px;
  left: 350px;
}

/* reportfile-page2 */
.report-suggestion-content {
  display: flex;
  flex-direction: column;
  width: 100%;
  justify-content: space-around;
  align-items: center;
  padding: 30px 20px;
  align-items: flex-start;
}

.report-suggestion-overview {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  border: 1px solid #000000;
}

.report-file-overview1 {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  border: 1px solid #000000;
  height: 600px;
}

.report-suggestion-original-mark {
  display: flex;
  flex-direction: row;
  gap: 10px;
  justify-content: flex-end;
}

.report-suggestion-original-mark-low-ai {
  font-size: 14px;
  font-weight: 600;
  background-color: #ffde59;
  padding: 8px;
  border-radius: 40px;
}

.report-suggestion-original-mark-high-ai {
  font-size: 14px;
  font-weight: 600;
  background-color: #f4b9ba;
  padding: 8px;
  border-radius: 40px;
}

.report-suggestion-original-content {
  font-size: 14px;
  line-height: 25px;
}

.report-suggestion-original-content-low-ai {
  font-size: 14px;
  background-color: #ffde59;
  padding: 8px;
  border-radius: 20px;
  line-height: 25px;
}

.report-suggestion-original-content-high-ai {
  font-size: 14px;
  background-color: #f4b9ba;
  padding: 8px;
  border-radius: 20px;
  line-height: 25px;
}

.report-suggestion {
  font-size: 14px;
  line-height: 25px;
  margin: 0;
}

.report-copy-right {
  font-size: 16px;
  text-align: center;
  line-height: 20px;
}

/* mobile */
@media screen and (max-width: 1280px) {}