﻿* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  height: 100%;
}
html {
  height: 100%;
  font-size: 18px;
}
.vessel {
  min-height: 100vh;
  max-width: 768px;
  margin: 0 auto;
  text-align: center;
}
.robotBox {
  display: flex;
  justify-content: center;
  height: 12rem;
}
.robotBox .robot {
  align-self: flex-end;
  width: 100%;
  height: auto;
  display: block;
}
.container {
  padding: 1rem 2rem;
}

.dot-card {
  position: relative;
  width: 100%;
  padding: 1.2rem 2rem;
  background-color: #000;
  color: #f5f5f5;
  border-radius: 10px;
}

.dot-card p {
  font-weight: bold;
  font-size: 1.1rem;
  color: #bfe6ff;
}

.dot-card::before,
.dot-card::after,
.dot-card .dot-bottom-left,
.dot-card .dot-bottom-right {
  content: "";
  position: absolute;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background-color: #bfe6ff;
}

.dot-card::before {
  top: 8px;
  left: 8px;
}

.dot-card .dot-bottom-left {
  bottom: 8px;
  left: 8px;
}

.dot-card::after {
  top: 8px;
  right: 8px;
}

.dot-card .dot-bottom-right {
  bottom: 8px;
  right: 8px;
}

.inputBtn {
  width: 100%;
}
input:focus {
  outline: none;
}
.input {
  width: 100%;
  color: #000000;
  padding: 1rem;
  font-size: 1.1rem;
  border-radius: 0.7rem;
  border: 2px solid #6fadf7;
}
.btn {
  width: 100%;
}
.icon {
  width: 2rem;
  height: 2rem;
  object-fit: contain;
}

.footer {
  width: 100%;
  max-width: 768px;
  /* position: fixed; */
  margin-top: 50px;
  bottom: 0;
  padding: 1rem;
}

.analyzing {
  margin-top: 5rem;
  width: 100%;
  color: #fff;
}
.analysis-title {
  font-size: 1.2rem;
}
.analysis-item {
  margin: 1rem 0;
}
.analysis-text {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.progress-container {
  width: 100%;
  background-color: #d9e0ed;
  border-radius: 5px;
}

.progress-bar {
  height: 0.7rem;
  background-color: #5388ee;
  text-align: center;
  line-height: 0.5rem;
  border-radius: 5px;
  width: 0;
  animation: fillProgress 0.5s ease-in-out forwards;
}

@keyframes fillProgress {
  to {
    width: 100%;
  }
}

.progress-container2 {
  width: 100%;
  background-color: #d9e0ed;
  border-radius: 5px;
}

.progress-bar2 {
  height: 0.7rem;
  background-color: #5388ee;
  text-align: center;
  line-height: 0.5rem;
  border-radius: 5px;
  width: 0;
  animation: fillProgress2 0.8s ease-in-out forwards;
}

@keyframes fillProgress2 {
  to {
    width: 100%;
  }
}

.progress-container3 {
  width: 100%;
  background-color: #d9e0ed;
  border-radius: 5px;
}

.progress-bar3 {
  height: 0.7rem;
  background-color: #5388ee;
  text-align: center;
  line-height: 0.5rem;
  border-radius: 5px;
  width: 0;
  animation: fillProgress3 1s ease-in-out forwards;
}

@keyframes fillProgress3 {
  to {
    width: 100%;
  }
}

.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 1000;
  padding: 1.2rem;
}

.modal-content {
  background: white;
  border-radius: 12px;
  max-width: 768px;
  width: 100%;
  padding: 3rem 2rem;
  animation: modalSlideIn 0.3s ease;
  position: relative;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

@keyframes modalSlideIn {
  from {
    opacity: 0;
    transform: translateY(-20px) scale(0.95);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.modal-close {
  position: absolute;
  top: 1rem;
  right: 1.2rem;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background 0.2s;
}

.close-icon {
  width: 2rem;
  height: 2rem;
}

.results-img {
  width: 100%;
  display: block;
}

.m2 {
  margin: 2rem;
}
.robot {
  width: 100%;
}
a {
  text-decoration: none;
}
.fs15 {
  font-size: 1.5rem;
}
.c-primary {
  color: #fd7400;
}
.c-red {
  color: red;
}
.c-blue {
  color: #5388ee;
}
.c-desc {
  color: #000;
}
.br-03 {
  border-radius: 0.3rem;
}
.ti-05em {
  padding-left: 0.5em;
  text-indent: -0.5em;
}
.fw-b {
  font-weight: bold;
}
.fw-500 {
  font-weight: 500;
}
.ta-r {
  text-align: right;
}
.ta-c {
  text-align: center;
}
.fs-i {
  font-style: italic;
}
.mt1 {
  margin-top: 1rem;
}
.mt2 {
  margin-top: 2rem;
}
.mb2 {
  margin-bottom: 2rem;
}
.mb-05 {
  margin-bottom: 0.5rem;
}
.p1 {
  padding: 1rem;
}
.fs09 {
  font-size: 0.9rem;
}
.fs1 {
  font-size: 1rem;
}
.fs11 {
  font-size: 1.1rem;
}
.fs12 {
  font-size: 1.2rem;
}
.fs13 {
  font-size: 1.3rem;
}
.flex-jac {
  display: flex;
  justify-content: center;
  align-items: center;
}
.fix-a {
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: bold;
  background: #5388ee !important;
  border: none !important;
  color: #ffffff;
  font-size: 1.5rem;
  padding: 1rem 0;
  border-radius: 0.5rem;
  animation: zoom1 1.5s ease-out infinite;
}
.fix-a span {
  height: 2rem;
  margin: 0 1rem;
}
.line-a {
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: bold;
  background: #05c754 !important;
  border: none !important;
  color: #ffffff;
  font-size: 1.1rem;
  padding: 1rem 0;
  border-radius: 0.5rem;
  animation: zoom2 1.5s ease-out infinite;
}
.pl1 {
  padding-left: 1rem;
}
.mlr1 {
  margin: 0 1rem;
}
.ml-03 {
  margin-left: 0.3rem;
}
.mt-05 {
  margin-top: 0.5rem;
}
.mb1 {
  margin-bottom: 1rem;
}

@keyframes zoom1 {
  0% {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  50% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
  }
  100% {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
@keyframes zoom2 {
  0% {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  50% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
  }
  100% {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
@media (min-width: 768px) {
  .robot {
    max-width: 150px;
  }
}
@media (max-width: 768px) {
  .robot {
    max-width: 150px;
  }
}
@media (max-width: 240px) {
  html {
    font-size: 12px;
  }
}
@media (min-width: 241px) and (max-width: 320px) {
  html {
    font-size: 13px;
  }
  .robot {
    max-width: 100px;
  }
  .robotBox {
    height: 130px;
  }
}
@media (min-width: 321px) and (max-width: 375px) {
  html {
    font-size: 14px;
  }
  .robot {
    max-width: 120px;
  }
  .robotBox {
    height: 150px;
  }
}
