@font-face {
  font-family: 'LotussSmartHL-Bold';
  src: url('./fonts/LotussSmartHL-Bold.ttf');
}
@font-face {
  font-family: 'LotussSmartHL-Regular';
  src: url('./fonts/LotussSmartHL-Regular.ttf');
}
body {
  padding: 0;
  margin: 0;
}
.bg-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 0;
}
.bg-wrapper img {
  width: 100%;
}
.wrapper {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  font-family: 'LotussSmartHL-Regular';
  color: #00bab4;
  background: #fff;
  margin-top: 70%;
  margin-left: 12px;
  margin-right: 12px;
  margin-bottom: 12px;
  padding: 24px 8px;
  border-radius: 8px;
  max-width: 500px;
}
span {
  font-family: 'LotussSmartHL-Bold';
  font-size: 16px;
}
.text {
  padding-bottom: 4px;
  font-family: 'LotussSmartHL-Bold';
  font-size: 16px;
}
.wrapper input, .wrapper textarea {
  width: 90%;
  font-size: 16px;
  font-family: 'LotussSmartHL-Regular';
  color: #f4be00;
  border: 2px solid #f4be00;
  border-radius: 6px;
  text-align: center;
  padding: 4px 8px;
  margin-bottom: 8px;
}.wrapper input::placeholder, .wrapper textarea::placeholder {
  text-align: center;
}
.remark {
  font-family: 'LotussSmartHL-Regular';
  color: #000;
  font-size: 14px;
  white-space: pre-line;
  width: 90%;
  padding-top: 8px;
}
.green-btn {
  font-family: 'LotussSmartHL-Regular';
  color: #fff;
  font-size: 20px;
  background-color: #00bab4;
  border: 2px solid #f4be00;
  border-radius: 8px;
  text-align: center;
  padding: 8px 36px;
  margin: 10px 0;
}
.green-btn:disabled {
  filter: grayscale(1);
}
.yellow-btn {
  font-family: 'LotussSmartHL-Regular';
  color: #C62127;
  font-size: 20px;
  background-color: #f4be00;
  border: 2px solid #f4be00;
  border-radius: 8px;
  text-align: center;
  padding: 8px 36px;
  margin: 10px 0;
}
.yellow-btn:disabled {
  filter: grayscale(1);
}
.title {
  font-family: 'LotussSmartHL-Bold';
  color: #00bab4;
  font-size: 20px;
}
.detail {
  font-family: 'LotussSmartHL-Regular';
  color: #000;
  font-size: 14px;
}
.box {
  border: 2px solid #f4be00;
  border-radius: 16px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
  width: 90%;
}
.bold {
  font-family: 'LotussSmartHL-Bold';
  color: #000;
  font-size: 16px;
}
.box .bold {
  font-size: 18px;
}
.center {
  text-align: center;
}
.red {
  color: #C62127;
}
.redbar {
  color: #fff;
  background-color: #C62127;
  border-radius: 8px;
  padding: 4px 16px;
  max-width: 80%;
  margin: auto;
}
.mt-16 {
  margin-top: 16px;
}
.mb-16 {
  margin-bottom: 16px;
}
.pt-16 {
  padding-top: 16px;
}
.pb-16 {
  padding-bottom: 16px;
}
.mission-image-wrapper {
  border-radius: 50%;
  border: 5px solid #00bab4;
}
.mission-image {
  width: 200px;
  height: 200px;
  border-radius: 150px;
  border: 5px solid #f4be00;
  display: flex;
  align-items: center;
  justify-content: center;
}
.mission-image img {
  width: 150px;
  height: 150px;
  object-fit: contain;
}
.box .yellow-btn {
  width: fit-content;
  margin: auto;
}
.random-box-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 5px;
  padding: 5px;
  background: #00bab4;
  width: 90%;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 20px;
}
.random-box {
  width: 100%;
  position: relative;
  padding-top: 100%;
  background: #fff;
}
.random-box.active {
  background: #f4be00;
}
img {
  display: none;
}
img[src] {
 display: block;
}
.box.hidden {
  visibility: hidden;
}
.random-box img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80%;
  height: 80%;
  object-fit: contain;
}
.soldout {
  position: absolute;
  top: 45%;
  left: 45%;
  transform: translate(-50%, -50%) rotate(-45deg);
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 130%;
}
.soldout.hidden {
  display: none;
}
.soldout span {
  font-size: 12px;
}
.soldout .title {
  font-family: 'LotussSmartHL-Bold';
  font-size: 24px;
  line-height: 1;
}
/* Hide the browser's default checkbox */
.container {
  position: relative;
  width: 90%;
  margin-top: 8px;
}
.container input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}
.container a {
  text-decoration: none;
  color: #000;
  font-size: 14px;
  padding-left: 40px;
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
}
/* Create a custom checkbox */
.checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 25px;
  width: 25px;
  border-radius: 50%;
  border: 1px solid #f4be00;
  background-color: white;
}
/* On mouse-over, add a grey background color */
.container:hover input ~ .checkmark {
  background-color: #ccc;
}
/* When the checkbox is checked, add a blue background */
.container input:checked ~ .checkmark {
  background-color: #f4be00;
}
/* Create the checkmark/indicator (hidden when not checked) */
.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}
/* Show the checkmark when checked */
.container input:checked ~ .checkmark:after {
  display: block;
}
/* Style the checkmark/indicator */
.container .checkmark:after {
  left: 9px;
  top: 5px;
  width: 5px;
  height: 10px;
  border: solid white;
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}


@media screen and (min-width: 524px) {
  .wrapper {
    margin-top: 450px;
    margin-left: auto;
    margin-right: auto;
  }
  .bg-wrapper {
    display: flex;
    justify-content: center;
    background-color: #00bab4;
  }
  .bg-wrapper img {
    width: 530px;
  }
}