html,
body {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-family: "Pretendard", sans-serif;
  background-color: black;
}
html h2,
html ul,
html p,
body h2,
body ul,
body p {
  padding: 0;
  margin: 0;
}
html li,
body li {
  outline: none;
  list-style: none;
}
html a,
body a {
  text-decoration: none;
}

/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
input:focus {
  outline: none;
}

textarea:focus {
  outline: none;
}

button,
a,
label {
  padding: unset;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-appearance: none;
  border: none;
  cursor: pointer;
  background-color: unset;
  color: black;
  text-decoration: none;
}
button:focus,
a:focus,
label:focus {
  outline: none;
}
button:hover,
a:hover,
label:hover {
  opacity: 0.7;
  -webkit-transition: 0.2s ease-in-out;
  transition: 0.2s ease-in-out;
}

@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
    -webkit-transform: translateY(50px);
            transform: translateY(50px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
    -webkit-transform: translateY(50px);
            transform: translateY(50px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
.modal-wrapper {
  width: 100%;
  padding: 24px 24px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-animation: fadeIn 0.2s ease-in-out;
          animation: fadeIn 0.2s ease-in-out;
}
.modal-wrapper .top-section {
  width: 100%;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.modal-wrapper .top-section .top-title {
  font-weight: 700;
  color: #0095FF;
  line-height: 140%;
}
.modal-wrapper .modal-title-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  color: white;
  row-gap: 10px;
  margin-top: 4px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.modal-wrapper .modal-title-box .modal-title {
  font-size: 30px;
  font-weight: 700;
}
.modal-wrapper .modal-title-box .modal-sub-title {
  font-weight: 400;
  line-height: 140%;
}
.modal-wrapper .modal-info-card {
  margin-top: 24px;
  border-radius: 8px;
  background-color: #1A1B23;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 24px 24px;
  color: white;
  row-gap: 7px;
}
.modal-wrapper .modal-info-card .info-text-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 21px;
     -moz-column-gap: 21px;
          column-gap: 21px;
}
.modal-wrapper .modal-info-card .info-text-box p {
  font-size: 13px;
  margin-bottom: auto;
  line-height: 150%;
}
.modal-wrapper .modal-info-card .info-text-box .info-text-title {
  width: 48px;
  font-weight: 700;
}
.modal-wrapper .modal-content-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-top: 24px;
}
.modal-wrapper .modal-content-box .content-title-box {
  border-bottom: 1px solid #44464F;
  padding-bottom: 8px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.modal-wrapper .modal-content-box .content-title-box .content-title {
  color: white;
  font-weight: 700;
}
.modal-wrapper .modal-content-box .content-box {
  margin-top: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 21px;
     -moz-column-gap: 21px;
          column-gap: 21px;
}
.modal-wrapper .modal-content-box .content-box p {
  color: white;
  font-size: 13px;
}
.modal-wrapper .modal-content-box .content-box .bold-text {
  width: 64px;
  margin-bottom: auto;
  font-weight: 700;
}
.modal-wrapper .modal-content-box .content-box .text {
  line-height: 150%;
}
.modal-wrapper .modal-description-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  color: white;
}
.modal-wrapper .modal-description-box .description-title {
  font-weight: 700;
  padding-bottom: 8px;
  border-bottom: 1px solid white;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.modal-wrapper .modal-description-box .description-text {
  font-size: 13px;
  padding-top: 8px;
  font-weight: 400;
  line-height: 150%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  white-space: pre-line;
}
.modal-wrapper .img-box {
  width: 100%;
  height: auto;
  margin-top: 39px;
}
.modal-wrapper .img-box img {
  width: 100%;
  height: 250px;
}

@media screen and (max-width: 767px) {
  .modal-wrapper {
    padding: 16px 16px;
  }
  .modal-wrapper .top-section .top-title {
    font-size: 13px;
  }
  .modal-wrapper .modal-title-box .modal-title {
    font-size: 24px;
  }
  .modal-wrapper .modal-title-box .modal-sub-title {
    font-size: 13px;
  }
  .modal-wrapper .modal-info-card {
    padding: 16px 16px;
  }
  .modal-wrapper .modal-info-card .info-text-box .info-text-title {
    width: 45px;
    -ms-flex-negative: 0;
        flex-shrink: 0;
  }
  .modal-wrapper .modal-content-box .content-box {
    -webkit-column-gap: 8px;
       -moz-column-gap: 8px;
            column-gap: 8px;
  }
  .modal-wrapper .modal-content-box .content-box .bold-text {
    width: 68px;
    -ms-flex-negative: 0;
        flex-shrink: 0;
  }
  .modal-wrapper .modal-description-box {
    margin-top: 32px;
  }
  .modal-wrapper .img-box img {
    height: 118px;
  }
}